summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 21:52:17 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 21:52:17 +0000
commit6f61d8f2390f5df2d9033b69ed16c6c78bb80c1d (patch)
tree6acea3f777a87549f9514e548a0419d1899f852a
parentfea9a2db450f8ecb0a5a2846b42c3b115821be4f (diff)
Missing dependencies...
git-svn-id: file:///fltk/svn/fltk/trunk@324 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--test/Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index 65f7a1e32..b1d269d4a 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.18 1999/02/22 21:50:16 mike Exp $"
+# "$Id: Makefile,v 1.19 1999/02/22 21:52:17 mike Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@@ -58,7 +58,7 @@ $(ALL): ../lib/$(LIBNAME)
.cxx.o:
$(CXX) -I.. $(CXXFLAGS) $< -c
-.fl.cxx:
+.fl.cxx .fl.h:
../fluid/fluid -c $<
.fl:
@@ -69,6 +69,9 @@ $(ALL): ../lib/$(LIBNAME)
CubeView: CubeMain.o CubeView.o CubeViewUI.o
$(CXX) -I.. $(CXXFLAGS) CubeMain.o CubeView.o CubeViewUI.o \
-L../lib -lfltk $(LDLIBS) -o $@
+CubeMain.o: CubeViewUI.h CubeView.h
+CubeView.o: CubeView.h
+
shiny: shiny.cxx shiny_panel.cxx
$(CXX) -I.. $(CXXFLAGS) shiny.cxx -L../lib -lfltk $(LDLIBS) -o $@
keyboard: keyboard.cxx keyboard_ui.cxx
@@ -91,5 +94,5 @@ install:
@echo Nothing to install in test directory.
#
-# End of "$Id: Makefile,v 1.18 1999/02/22 21:50:16 mike Exp $".
+# End of "$Id: Makefile,v 1.19 1999/02/22 21:52:17 mike Exp $".
#