diff --git a/Makefile b/Makefile deleted file mode 100644 index 16a0690..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -.PHONY: build release run dev debug - -dev: debug - -debug: target/debug/phetch -release: target/release/phetch -install: release - cp phetch ~/bin - -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