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