From: Erik Garrison Date: Thu, 7 Oct 2010 04:52:10 +0000 (-0400) Subject: changed compilation flags to -O3 X-Git-Url: https://projects.mako.cc/source/wikiq/commitdiff_plain/315071f4419c2e34fd367e09d24818807353c91e changed compilation flags to -O3 --- 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