mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 14:25:27 +00:00
a11dbbdb18
It should have depth, time, place etc information, but right now it only has a fake depth that doesn't even get updated. Just to show the idea of the table usage. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
23 lines
655 B
Makefile
23 lines
655 B
Makefile
CC=gcc
|
|
CFLAGS=-Wall -Wno-pointer-sign -g
|
|
|
|
OBJS=main.o profile.o info.o divelist.o parse.o
|
|
|
|
parse: $(OBJS)
|
|
$(CC) $(LDLAGS) -o parse $(OBJS) `xml2-config --libs` \
|
|
`pkg-config --libs gtk+-2.0`
|
|
|
|
parse.o: parse.c dive.h
|
|
$(CC) $(CFLAGS) -c `xml2-config --cflags` parse.c
|
|
|
|
main.o: main.c dive.h display.h
|
|
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c main.c
|
|
|
|
profile.o: profile.c dive.h display.h
|
|
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c profile.c
|
|
|
|
info.o: info.c dive.h display.h
|
|
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c info.c
|
|
|
|
divelist.o: divelist.c dive.h display.h
|
|
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c divelist.c
|