summaryrefslogtreecommitdiff
path: root/src/Makefile
blob: c7742b5926ec461c37f7d065c7e04fdbd87ad9d3 (plain)
1
2
3
4
5
6
all:
	gcc -O2 -fPIC -shared http_count.c -o http_count.so
debug:
	gcc -g -fPIC -shared http_count.c -o http_count.so
clean:
	rm *.so *.o -rf