osoy 0.5.1

Command-line git repository manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
build:
	@cargo build --release
	@rm -f osoy
	@mv target/release/osoy osoy

test:
	@cargo test

clean:
	@cargo clean

.PHONY: build test clean