From: Erik Garrison Date: Thu, 7 Oct 2010 04:55:57 +0000 (-0400) Subject: Revert "changed compilation flags to -O3" X-Git-Url: https://projects.mako.cc/source/wikiq/commitdiff_plain/dd62dbb1c7db0544532a2a006a3e712aa28fd35e Revert "changed compilation flags to -O3" This reverts commit 315071f4419c2e34fd367e09d24818807353c91e. --- diff --git a/Makefile b/Makefile index 9419777..eec9e75 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,6 @@ all: wikiq wikiq: wikiq.c - gcc -O3 wikiq.c -o wikiq -lexpat + gcc wikiq.c -o wikiq -lexpat -clean: - rm -f wikiq - -.PHONY: all clean +.PHONY: all