summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-30 18:23:59 -0700
committerGravatar Linus Torvalds <torvalds@linux-foundation.org>2011-08-30 18:23:59 -0700
commitf3a338a9af53f31f9a72de021950cbe725a6782f (patch)
tree6ae4bd510a660871c5d13b24f84e89cbe3eb1a17 /Makefile
parent17fcb3d32d6353bfcbf83a98bd8255727b055259 (diff)
downloadsubsurface-f3a338a9af53f31f9a72de021950cbe725a6782f.tar.gz
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>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1a2163784..648912bd6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
CC=gcc
CFLAGS=-Wall -Wno-pointer-sign -g
-parse: parse.c
+parse: parse.c dive.h
$(CC) $(CFLAGS) -o parse `xml2-config --cflags` parse.c `xml2-config --libs`