mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add 'repaint_dive()' prototype, and fix dependencies
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
2044dabc81
commit
6cc122f491
2 changed files with 4 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -10,11 +10,11 @@ parse: $(OBJS)
|
|||
parse.o: parse.c dive.h
|
||||
$(CC) $(CFLAGS) -c `xml2-config --cflags` parse.c
|
||||
|
||||
main.o: main.c dive.h
|
||||
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
|
||||
profile.o: profile.c dive.h display.h
|
||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c profile.c
|
||||
|
||||
divelist.o: divelist.c dive.h
|
||||
divelist.o: divelist.c dive.h display.h
|
||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c divelist.c
|
||||
|
|
|
@ -8,5 +8,6 @@
|
|||
extern int selected_dive;
|
||||
extern GtkWidget *dive_profile_frame(void);
|
||||
extern GtkWidget *create_dive_list(void);
|
||||
extern void repaint_dive(void);
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue