X-Git-Url: https://projects.mako.cc/source/wikiq/blobdiff_plain/dd62dbb1c7db0544532a2a006a3e712aa28fd35e..49f60e893acb91ef164f6051e9f2316c84931e00:/Makefile diff --git a/Makefile b/Makefile index eec9e75..41d75ca 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,12 @@ +CXX = g++ +CFLAGS = -O3 + all: wikiq wikiq: wikiq.c - gcc wikiq.c -o wikiq -lexpat + $(CXX) $(CFLAGS) wikiq.c -o wikiq -lexpat + +clean: + rm -f wikiq .PHONY: all