mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
f3a338a9af
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>
5 lines
142 B
Makefile
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`
|