summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 21:33:55 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 21:33:55 +0000
commit636b6de26ddcb58c4e5bf317bad104115c0465b3 (patch)
treefe1158c20f7abfaba0abd0e0260ed69df095207d /test/Makefile
parentdf01cba1240932472b939564f1854268a6b0b06f (diff)
Added CubeView source files.
Added CubeView to the makefile and demo.menu. git-svn-id: file:///fltk/svn/fltk/trunk@321 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/test/Makefile b/test/Makefile
index 5fad8ffd3..7a7be305b 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.16 1999/01/31 07:43:16 bill Exp $"
+# "$Id: Makefile,v 1.17 1999/02/22 21:33:54 mike Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@@ -24,6 +24,7 @@
#
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 \
@@ -35,7 +36,7 @@ CPPFILES =\
subwindow.cxx symbols.cxx tabs.cxx tile.cxx valuators.cxx fast_slow.cxx \
resize.cxx pack.cxx inactive.cxx
-ALL = adjuster arc ask bitmap boxtype browser button buttons checkers \
+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 \
@@ -49,7 +50,7 @@ include ../makeinclude
$(ALL): ../lib/$(LIBNAME)
-.SUFFIXES: .cxx .c .o .fl .H
+.SUFFIXES: .cxx .c .o .fl .h
.cxx:
$(CXX) -I.. $(CXXFLAGS) $< -L../lib -lfltk $(LDLIBS) -o $@
@@ -62,6 +63,9 @@ $(ALL): ../lib/$(LIBNAME)
$(CXX) -I.. $(CXXFLAGS) $@.cxx -L../lib -lfltk $(LDLIBS) -o $@
# Other programs needing special "help"...
+CubeView: CubeMain.o CubeView.o CubeViewUI.o
+ $(CXX) -I.. $(CXXFLAGS) CubeMain.o CubeView.o CubeViewUI.o \
+ -L../lib -lfltk $(LDLIBS) -o $@
shiny: shiny.cxx shiny_panel.cxx
$(CXX) -I.. $(CXXFLAGS) shiny.cxx -L../lib -lfltk $(LDLIBS) -o $@
keyboard: keyboard.cxx keyboard_ui.cxx
@@ -84,5 +88,5 @@ install:
@echo Nothing to install in test directory.
#
-# End of "$Id: Makefile,v 1.16 1999/01/31 07:43:16 bill Exp $".
+# End of "$Id: Makefile,v 1.17 1999/02/22 21:33:54 mike Exp $".
#