subsurface/Makefile
Linus Torvalds 4b3bd4b739 Fix stupid mis-initialization of current sample
.. nice compiler warning hidden by the crazy gcc pointer sign warnings
that nobody wants to see (yes, we really do want to do 'strlen()' even
on unsigned strings, don't complain, crazy bitch compiler).

So this also makes our CFLAGS set -Wno-pointer-sign.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30 14:36:34 -07:00

5 lines
135 B
Makefile

CC=gcc
CFLAGS=-Wall -Wno-pointer-sign -g
parse: parse.c
$(CC) $(CFLAGS) -o parse `xml2-config --cflags` parse.c `xml2-config --libs`