diff options
| -rw-r--r-- | test/Makefile | 17 |
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 $". # |
