2
0
mirror of https://github.com/xvxx/phetch synced 2024-11-05 00:00:58 +00:00
phetch/Makefile
2019-12-16 13:13:00 -08:00

17 lines
205 B
Makefile

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