From 494b16d6fbd565225e4f9ddaf2b813b520271753 Mon Sep 17 00:00:00 2001 From: Holger Dengler Date: Mon, 22 Oct 2012 17:05:03 +0200 Subject: Misc/xml: Add new XML fasttrack Add new miscellaneous section with an XML fasttrack. Coding samples are located in misc/samples/. Signed-off-by: Holger Dengler --- misc/samples/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 misc/samples/Makefile (limited to 'misc/samples/Makefile') diff --git a/misc/samples/Makefile b/misc/samples/Makefile new file mode 100644 index 0000000..cd411f2 --- /dev/null +++ b/misc/samples/Makefile @@ -0,0 +1,10 @@ +XML_TARGETS=xml_dom xml_sax +XML_CFLAGS=$(shell xml2-config --cflags) + +all: $(XML_TARGETS) + +%: %.c + $(CC) $(XML_CFLAGS) -g -O0 -l xml2 -o $@ $^ + +clean: + rm -r $(XML_TARGETS) -- cgit v1.2.3