mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Split up divelist scroll window generation into its own file
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
1d69524a78
commit
77cfe07c52
4 changed files with 63 additions and 53 deletions
5
Makefile
5
Makefile
|
@ -1,7 +1,7 @@
|
|||
CC=gcc
|
||||
CFLAGS=-Wall -Wno-pointer-sign -g
|
||||
|
||||
OBJS=main.o profile.o parse.o
|
||||
OBJS=main.o profile.o divelist.o parse.o
|
||||
|
||||
parse: $(OBJS)
|
||||
$(CC) $(LDLAGS) -o parse $(OBJS) `xml2-config --libs` \
|
||||
|
@ -15,3 +15,6 @@ main.o: main.c dive.h
|
|||
|
||||
profile.o: profile.c dive.h
|
||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c profile.c
|
||||
|
||||
divelist.o: divelist.c dive.h
|
||||
$(CC) $(CFLAGS) `pkg-config --cflags gtk+-2.0` -c divelist.c
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue