aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2017-04-27 14:42:02 +1200
committerDavid Phillips <david@sighup.nz>2017-04-27 14:42:02 +1200
commita0e5cc83abdaca8c17ca581bcc5259908cde05c7 (patch)
treec0c75ae90bf071599fbfdc6aa1410e01cb31bde7 /Makefile
parent0e06285330309879120d119bc1eeb3e68c391e37 (diff)
downloadsand-leek-a0e5cc83abdaca8c17ca581bcc5259908cde05c7.tar.xz
Add clean recipe, make phony targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index c1c68b1..34621a6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,10 @@
CFLAGS += -O2
LDFLAGS += -lssl -lcrypto -lpthread
-
all: sand-leek
+clean:
+ rm -vf sand-leek
+
+.PHONY: all clean
+