diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-01-07 11:23:14 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-01-07 11:23:14 -0800 |
commit | d3570508b102b238d5c2258e522b4bcea26e44a7 (patch) | |
tree | 11bf324032a47c7a5bf807e3b4a36c2f949f305d /Makefile | |
parent | 989cf37fcf0453b72f3d542f202cf532bf1532db (diff) | |
download | subsurface-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) \ |