aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fdf45bc..a8cd978 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+all: wiki.cgi
+
wiki.cgi: config.h wiki.c
${CC} -std=c11 -Os -o $@ wiki.c -lmarxup
@@ -5,5 +7,6 @@ config.h:
cp config.def.h $@
clean:
- rm wiki.cgi
+ rm -f wiki.cgi
+again: clean all