diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-30 18:23:59 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-08-30 18:23:59 -0700 |
commit | f3a338a9af53f31f9a72de021950cbe725a6782f (patch) | |
tree | 6ae4bd510a660871c5d13b24f84e89cbe3eb1a17 /Makefile | |
parent | 17fcb3d32d6353bfcbf83a98bd8255727b055259 (diff) | |
download | subsurface-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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` |