diff options
| author | Holger Dengler <dengler@linutronix.de> | 2012-10-22 17:05:03 +0200 |
|---|---|---|
| committer | Holger Dengler <dengler@linutronix.de> | 2012-10-22 17:09:38 +0200 |
| commit | 494b16d6fbd565225e4f9ddaf2b813b520271753 (patch) | |
| tree | f4fd715a9a99e0b3303cca7b6cb0ac19588a36ac /misc/samples/Makefile | |
| parent | 73b8bf14798e661351a8e51237cac38bdc824d86 (diff) | |
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 <dengler@linutronix.de>
Diffstat (limited to 'misc/samples/Makefile')
| -rw-r--r-- | misc/samples/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
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) |
