subsurface/Makefile
Linus Torvalds f3a338a9af Split up dive data structure declarations into 'dive.h'
The dive parser should eventually be just a part of the program, not the
whole thing. So start preparing for that.

Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2011-08-30 18:23:59 -07:00

5 lines
142 B
Makefile

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