summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 16:53:14 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 16:53:14 +0000
commitf09acb16fffc5690a4ded20e7231cbc585d00a58 (patch)
treed891def3286b26c9394bdd8d1f44fba0ee34a64d
parent7486258e5d2deaa4416aa64b1bf060a1bbafac46 (diff)
Updated depend command to use demo source files only.
git-svn-id: file:///fltk/svn/fltk/trunk@35 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--test/Makefile18
1 files changed, 15 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index a6c530a50..aa38d501e 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.5 1998/10/21 16:46:07 mike Exp $"
+# "$Id: Makefile,v 1.6 1998/10/21 16:53:14 mike Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@@ -23,6 +23,18 @@
# Please report all bugs and problems to "fltk-bugs@easysw.com".
#
+CPPFILES =\
+ adjuster.C arc.C ask.C bitmap.C boxtype.C browser.C button.C \
+ buttons.C checkers.C clock.C colbrowser.C color_chooser.C \
+ cube.C cursor.C curve.C demo.C doublebuffer.C file_chooser.C \
+ fonts.C forms.C fractals.C fullscreen.C gl_overlay.C \
+ glpuzzle.C hello.C iconize.C image.C input.C keyboard.C \
+ label.C list_visuals.C mandelbrot.C menubar.C message.C \
+ minimum.C navigation.C output.C overlay.C pixmap.C \
+ pixmap_browser.C radio.C resizebox.C scroll.C shape.C shiny.C \
+ subwindow.C symbols.C tabs.C tile.C valuators.C fast_slow.C \
+ resize.C pack.C inactive.C style.C
+
ALL = adjuster arc ask bitmap boxtype browser button buttons checkers \
clock colbrowser color_chooser cube cursor curve demo doublebuffer \
file_chooser fonts forms fractals fullscreen gl_overlay glpuzzle \
@@ -73,11 +85,11 @@ jpeg_image: jpeg_image.C
@${CXX} -I.. ${CXXFLAGS} -I../../../local/jpeg-6b -L../../../local/jpeg-6b jpeg_image.C -L../lib -lfltk ${LDLIBS} -ljpeg -lXext -o $@
depend:
- $(MAKEDEPEND) -I.. $(CXXFLAGS) *.c *.C > makedepend
+ $(MAKEDEPEND) -I.. $(CXXFLAGS) $(CPPFILES) > makedepend
clean:
-@ rm -f ${ALL} jpeg_image *.o core *~
#
-# End of "$Id: Makefile,v 1.5 1998/10/21 16:46:07 mike Exp $".
+# End of "$Id: Makefile,v 1.6 1998/10/21 16:53:14 mike Exp $".
#