]> matita.cs.unibo.it Git - helm.git/blob - helm/papers/use_case/stats/parse/Makefile
added parse test for
[helm.git] / helm / papers / use_case / stats / parse / Makefile
1 CC = gcc
2 LIBXML_FLAGS = `pkg-config --cflags --libs libxml-2.0`
3 EXPAT_FLAGS = -lexpat
4 BIN = parse_expat parse_xmlreader parse_xmlsax
5 all: $(BIN)
6 clean:
7         rm -f $(BIN)
8 parse_expat: parse_expat.c
9         $(CC) $(EXPAT_FLAGS) -o $@ $<
10 parse_xmlreader: parse_xmlreader.c
11         $(CC) $(LIBXML_FLAGS) -o $@ $<
12 parse_xmlsax: parse_xmlsax.c
13         $(CC) $(LIBXML_FLAGS) -o $@ $<