2019-12-17 20:23:07 +00:00
|
|
|
.PHONY: build release run dev debug
|
2019-12-16 20:26:16 +00:00
|
|
|
|
2019-12-17 20:23:07 +00:00
|
|
|
dev: debug
|
2019-12-16 19:34:49 +00:00
|
|
|
|
2019-12-17 20:23:07 +00:00
|
|
|
debug: target/debug/phetch
|
|
|
|
release: target/release/phetch
|
|
|
|
|
|
|
|
target/debug/phetch: src/*.rs
|
2019-12-16 19:34:49 +00:00
|
|
|
cargo build
|
2019-12-17 20:23:07 +00:00
|
|
|
cp $@ phetch
|
2019-12-16 19:34:49 +00:00
|
|
|
|
2019-12-17 20:23:07 +00:00
|
|
|
target/release/phetch: src/*.rs
|
2019-12-16 19:34:49 +00:00
|
|
|
cargo build --release
|
2019-12-17 20:23:07 +00:00
|
|
|
strip $@
|
|
|
|
cp $@ phetch
|
2019-12-16 19:34:49 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf target
|
2019-12-17 05:41:27 +00:00
|
|
|
rm -f phetch
|