summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-08-02 18:15:44 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-08-02 18:15:44 +0000
commit58b0f306be3f6d5a1161d83d1ac6e0e3b8d8ad19 (patch)
tree0eee998511cb87642fa3c71e6f18fa3b29e40414 /test
parentbff75e491ab2e03e02ff52262c79dbdc1533b88a (diff)
Don't build OpenGL demos if OpenGL is not available or disabled.
Fix depend rule for src directory (wasn't doing OpenGL files) git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1520 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
-rw-r--r--test/Makefile54
1 files changed, 31 insertions, 23 deletions
diff --git a/test/Makefile b/test/Makefile
index f551801b3..b32d59c55 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.19.2.7.2.2 2001/08/02 18:08:36 easysw Exp $"
+# "$Id: Makefile,v 1.19.2.7.2.3 2001/08/02 18:15:44 easysw Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@@ -24,27 +24,35 @@
#
CPPFILES =\
- CubeMain.cxx CubeView.cxx \
- adjuster.cxx arc.cxx ask.cxx bitmap.cxx boxtype.cxx browser.cxx button.cxx \
- buttons.cxx checkers.cxx clock.cxx colbrowser.cxx color_chooser.cxx \
- cube.cxx cursor.cxx curve.cxx demo.cxx doublebuffer.cxx editor.cxx \
- file_chooser.cxx fonts.cxx forms.cxx fractals.cxx fullscreen.cxx \
- gl_overlay.cxx glpuzzle.cxx hello.cxx iconize.cxx image.cxx input.cxx \
- keyboard.cxx label.cxx list_visuals.cxx mandelbrot.cxx menubar.cxx \
- message.cxx minimum.cxx navigation.cxx output.cxx overlay.cxx pixmap.cxx \
- pixmap_browser.cxx radio.cxx resizebox.cxx scroll.cxx shape.cxx shiny.cxx \
- subwindow.cxx symbols.cxx tabs.cxx tile.cxx valuators.cxx fast_slow.cxx \
- resize.cxx pack.cxx inactive.cxx line_style.cxx
-
-ALL = CubeView adjuster arc ask bitmap boxtype browser button buttons checkers \
- clock colbrowser color_chooser cube cursor curve demo doublebuffer \
- editor file_chooser fonts forms fractals fullscreen gl_overlay \
- glpuzzle hello iconize image input keyboard label list_visuals \
- mandelbrot menubar message minimum navigation output overlay pixmap \
- pixmap_browser radio resizebox scroll shape shiny subwindow \
- symbols tabs tile valuators fast_slow resize pack inactive line_style
-
-all: $(ALL)
+ CubeMain.cxx CubeView.cxx adjuster.cxx arc.cxx ask.cxx \
+ bitmap.cxx boxtype.cxx browser.cxx button.cxx \
+ buttons.cxx checkers.cxx clock.cxx colbrowser.cxx \
+ color_chooser.cxx cube.cxx cursor.cxx curve.cxx demo.cxx \
+ doublebuffer.cxx editor.cxx file_chooser.cxx fonts.cxx \
+ forms.cxx fractals.cxx fullscreen.cxx gl_overlay.cxx \
+ glpuzzle.cxx hello.cxx iconize.cxx image.cxx input.cxx \
+ keyboard.cxx label.cxx list_visuals.cxx mandelbrot.cxx \
+ menubar.cxx message.cxx minimum.cxx navigation.cxx \
+ output.cxx overlay.cxx pixmap.cxx pixmap_browser.cxx \
+ radio.cxx resizebox.cxx scroll.cxx shape.cxx shiny.cxx \
+ subwindow.cxx symbols.cxx tabs.cxx tile.cxx \
+ valuators.cxx fast_slow.cxx resize.cxx pack.cxx \
+ inactive.cxx line_style.cxx
+
+ALL = adjuster arc ask bitmap boxtype browser button buttons \
+ checkers clock colbrowser color_chooser cursor curve \
+ demo doublebuffer editor file_chooser fonts forms hello \
+ iconize image input keyboard label list_visuals \
+ mandelbrot menubar message minimum navigation output \
+ overlay pixmap pixmap_browser radio resizebox scroll \
+ subwindow symbols tabs tile valuators fast_slow resize \
+ pack inactive line_style
+
+GLALL = CubeView cube fullscreen fractals gl_overlay glpuzzle shiny shape
+
+all: $(ALL) $(GLDEMOS)
+
+gldemos: $(GLALL)
include ../makeinclude
@@ -116,5 +124,5 @@ install:
@echo Nothing to install in test directory.
#
-# End of "$Id: Makefile,v 1.19.2.7.2.2 2001/08/02 18:08:36 easysw Exp $".
+# End of "$Id: Makefile,v 1.19.2.7.2.3 2001/08/02 18:15:44 easysw Exp $".
#