summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 17:15:44 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 17:15:44 +0000
commit23a2b82ace580e60de84c4959d43c6ec9b2d5f1a (patch)
tree809d127c3de007ea91e4d1f4015cf70f5b52023b /test
parentf09acb16fffc5690a4ded20e7231cbc585d00a58 (diff)
Updated makefile to build all fluid files as needed...
git-svn-id: file:///fltk/svn/fltk/trunk@36 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
-rw-r--r--test/Makefile17
1 files changed, 14 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index aa38d501e..2c6449f1c 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.6 1998/10/21 16:53:14 mike Exp $"
+# "$Id: Makefile,v 1.7 1998/10/21 17:15:44 mike Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@@ -74,10 +74,21 @@ glpuzzle: glpuzzle.C
shape: shape.C
@echo $@:
@${CXX} -I.. ${CXXFLAGS} shape.C -L../lib -lfltk ${GLDLIBS} -o $@
-shiny: shiny.C
+shiny: shiny.C shiny_panel.C
@echo $@:
@${CXX} -I.. ${CXXFLAGS} shiny.C -L../lib -lfltk ${GLDLIBS} -o $@
+# Other programs needing special "help"...
+keyboard: keyboard.C keyboard_ui.C
+ @echo $@:
+ @${CXX} -I.. ${CXXFLAGS} keyboard.C -L../lib -lfltk ${LDLIBS} -o $@
+mandelbrot: mandelbrot.C mandelbrot_ui.C
+ @echo $@:
+ @${CXX} -I.. ${CXXFLAGS} mandelbrot.C -L../lib -lfltk ${LDLIBS} -o $@
+style: style.C style_ui.C
+ @echo $@:
+ @${CXX} -I.. ${CXXFLAGS} style.C -L../lib -lfltk ${LDLIBS} -o $@
+
# If you have libjpeg installed, you might want to try this test program:
jpeg_image: jpeg_image.C
@@ -91,5 +102,5 @@ clean:
-@ rm -f ${ALL} jpeg_image *.o core *~
#
-# End of "$Id: Makefile,v 1.6 1998/10/21 16:53:14 mike Exp $".
+# End of "$Id: Makefile,v 1.7 1998/10/21 17:15:44 mike Exp $".
#