properly implemented text and comment omission flag
[wikiq] / Makefile
1 CXX = g++
2 CFLAGS = -O3
3
4 all: wikiq
5
6 wikiq: wikiq.c
7         $(CXX) $(CFLAGS) wikiq.c -o wikiq -lexpat
8
9 clean:
10         rm -f wikiq
11
12 .PHONY: all

Benjamin Mako Hill || Want to submit a patch?