summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2013-01-07 11:23:14 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-01-07 11:23:14 -0800
commitd3570508b102b238d5c2258e522b4bcea26e44a7 (patch)
tree11bf324032a47c7a5bf807e3b4a36c2f949f305d /Makefile
parent989cf37fcf0453b72f3d542f202cf532bf1532db (diff)
downloadsubsurface-d3570508b102b238d5c2258e522b4bcea26e44a7.tar.gz
Move planner UI into planner.c
There should be NO other changes in this commit - just moving the code and adjusting the includes (and adding the entry point to display-gtk.h). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0f6bee13b..900a2c89a 100644
--- a/Makefile
+++ b/Makefile
@@ -247,8 +247,8 @@ print.o: print.c dive.h display.h display-gtk.h
deco.o: deco.c dive.h
$(CC) $(CFLAGS) $(GLIB2CFLAGS) -c deco.c
-planner.o: planner.c dive.h
- $(CC) $(CFLAGS) $(GLIB2CFLAGS) -c planner.c
+planner.o: planner.c dive.h divelist.h display-gtk.h
+ $(CC) $(CFLAGS) $(GTK2CFLAGS) $(GLIB2CFLAGS) -c planner.c
libdivecomputer.o: libdivecomputer.c dive.h display.h display-gtk.h libdivecomputer.h
$(CC) $(CFLAGS) $(GTK2CFLAGS) $(GLIB2CFLAGS) $(XML2CFLAGS) \