mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Open File works. I refactored the code and introduced a new type. I never used it as a pointer (their was no real reason), but I'm not really satisfied.
Signed-off-by: Nathan Samson <nathansamson@gmail.com>
This commit is contained in:
parent
4f5e3a06ab
commit
21204926df
7 changed files with 54 additions and 30 deletions
8
Makefile
8
Makefile
|
@ -17,14 +17,14 @@ save-xml.o: save-xml.c dive.h
|
|||
dive.o: dive.c dive.h
|
||||
$(CC) $(CFLAGS) -c dive.c
|
||||
|
||||
main.o: main.c dive.h display.h
|
||||
main.o: main.c dive.h display.h divelist.h
|
||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c main.c
|
||||
|
||||
profile.o: profile.c dive.h display.h
|
||||
profile.o: profile.c dive.h display.h divelist.h
|
||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c profile.c
|
||||
|
||||
info.o: info.c dive.h display.h
|
||||
info.o: info.c dive.h display.h divelist.h
|
||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c info.c
|
||||
|
||||
divelist.o: divelist.c dive.h display.h
|
||||
divelist.o: divelist.c dive.h display.h divelist.h
|
||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c divelist.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue