diff options
author | Colin Dean <git@cad.cx> | 2018-08-10 01:52:15 +0000 |
---|---|---|
committer | Colin Dean <git@cad.cx> | 2018-08-10 01:52:35 +0000 |
commit | 579402e4f904537c32891317db1af490c93b77fe (patch) | |
tree | ee0f4ac3a217bfd335a2c15e0a4d19cbbb5a636a /Makefile | |
parent | Drops strip and upx from local release build (diff) | |
download | miniserve-579402e4f904537c32891317db1af490c93b77fe.tar.gz miniserve-579402e4f904537c32891317db1af490c93b77fe.zip |
Adds .PHONY to local and run
Diffstat (limited to '')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,8 @@ -.PHONY: all +.PHONY: local local: cargo build --release +.PHONY: run run: ifndef ARGS @echo Run "make run" with ARGS set to pass arguments… |