From 315071f4419c2e34fd367e09d24818807353c91e Mon Sep 17 00:00:00 2001 From: Erik Garrison Date: Thu, 7 Oct 2010 00:52:10 -0400 Subject: [PATCH 1/1] changed compilation flags to -O3 --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 -- 2.30.2