summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-29 17:51:54 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-29 17:51:54 -0700
commit77ce61644b414fc4c6596321764aa586b923178a (patch)
treed0e16128090cc4651ed57f8802420014df801864 /Makefile
parentfb214b2b3918120f0cd5aebe7c48a7482d1c1276 (diff)
downloadsubsurface-77ce61644b414fc4c6596321764aa586b923178a.tar.gz
Turn the XML into something almost parseable.
Of course, now the problem is that the different XML files have different node names, but at least we've turned it into a half-way sane format, and have a nice callback place per value. Soon we could use that to actually fill in useful information. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fea7d03d8..f77a9faa4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,2 @@
parse: parse.c
- gcc -g -o parse `xml2-config --cflags` parse.c `xml2-config --libs`
+ gcc -Wall -g -o parse `xml2-config --cflags` parse.c `xml2-config --libs`