2
0
mirror of https://github.com/xvxx/phetch synced 2024-11-12 13:10:40 +00:00
phetch/Makefile
2019-12-17 12:23:07 -08:00

20 lines
282 B
Makefile

.PHONY: build release run dev debug
dev: debug
debug: target/debug/phetch
release: target/release/phetch
target/debug/phetch: src/*.rs
cargo build
cp $@ phetch
target/release/phetch: src/*.rs
cargo build --release
strip $@
cp $@ phetch
clean:
rm -rf target
rm -f phetch