changed compilation flags to -O3
authorErik Garrison <erik@hypervolu.me>
Thu, 7 Oct 2010 04:52:10 +0000 (00:52 -0400)
committerErik Garrison <erik@hypervolu.me>
Thu, 7 Oct 2010 04:52:10 +0000 (00:52 -0400)
Makefile

index eec9e75f64bba39161410ec220c538e051a715d5..941977743c3728ab9f09a29470cc6d759cb94d2f 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,9 @@
 all: wikiq
 
 wikiq: wikiq.c
 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

Benjamin Mako Hill || Want to submit a patch?