From 3ea5e874b01c7e801043f078bbe2e7ae8138763f Mon Sep 17 00:00:00 2001 From: dvkt Date: Mon, 16 Dec 2019 12:45:45 -0800 Subject: [PATCH] local phetch --- .gitignore | 1 + Makefile | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 53eaa21..d596b32 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target **/*.rs.bk +phetch \ No newline at end of file diff --git a/Makefile b/Makefile index 635c5a3..deea73a 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ .PHONY: build release run -run: - cargo run +run: phetch + ./phetch -build: +phetch: cargo build + cp target/debug/phetch . release: cargo build --release @@ -12,3 +13,4 @@ release: clean: rm -rf target + fm -f phetch