
all: wiki_make_stats

wiki_make_stats: wiki_make_stats.c
	gcc -std=c99 -Wall -o wiki_make_stats wiki_make_stats.c

clean:
	rm -f  *.o
	# TODO: if [ -f ... ] then rm
	rm wiki_make_stats
