mirror of
https://github.com/xvxx/phetch
synced 2024-11-05 00:00:58 +00:00
17 lines
205 B
Makefile
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
|
|
rm -f phetch
|