X-Git-Url: https://projects.mako.cc/source/wikiq/blobdiff_plain/811f321153159f2fcfb093ffc43845a7315a336d..315071f4419c2e34fd367e09d24818807353c91e:/Makefile diff --git a/Makefile b/Makefile index eec9e75..9419777 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,9 @@ all: wikiq wikiq: wikiq.c - gcc wikiq.c -o wikiq -lexpat + gcc -O3 wikiq.c -o wikiq -lexpat -.PHONY: all +clean: + rm -f wikiq + +.PHONY: all clean