]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/papers/use_case/stats/parse/Makefile
removed papers that have been moved to the new "papers" repository
[helm.git] / helm / papers / use_case / stats / parse / Makefile
diff --git a/helm/papers/use_case/stats/parse/Makefile b/helm/papers/use_case/stats/parse/Makefile
deleted file mode 100644 (file)
index c30617a..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-CC = gcc
-LIBXML_FLAGS = `pkg-config --cflags --libs libxml-2.0`
-EXPAT_FLAGS = -lexpat
-BIN = parse_expat parse_xmlreader parse_xmlsax parse_xmltree
-all: $(BIN)
-       $(MAKE) -C SAX2Print/
-clean:
-       rm -f $(BIN)
-       $(MAKE) -C SAX2Print/ clean
-
-parse_expat: parse_expat.c
-       $(CC) $(EXPAT_FLAGS) -o $@ $<
-parse_xmlreader: parse_xmlreader.c
-       $(CC) $(LIBXML_FLAGS) -o $@ $<
-parse_xmlsax: parse_xmlsax.c
-       $(CC) $(LIBXML_FLAGS) -o $@ $<
-parse_xmltree: parse_xmltree.c
-       $(CC) $(LIBXML_FLAGS) -o $@ $<
-