summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 17:20:18 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 17:20:18 +0000
commit3b8193c002d8fb21be51b5a48ca224eed5fcac23 (patch)
treebf1763be53b73cad97b16936beba1884a1dd9cd7 /test/Makefile
parent23a2b82ace580e60de84c4959d43c6ec9b2d5f1a (diff)
Removed demo source files that are generated via Fluid.
Added fluid build rule to test Makefile. Removed fluid build rules from fluid Makefile. git-svn-id: file:///fltk/svn/fltk/trunk@37 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile
index 2c6449f1c..b0dfb329f 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.7 1998/10/21 17:15:44 mike Exp $"
+# "$Id: Makefile,v 1.8 1998/10/21 17:20:08 mike Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@@ -49,12 +49,16 @@ include ../makeinclude
${ALL} : ../lib/$(LIBNAME)
-.SUFFIXES : .C .c .o .do
+.SUFFIXES : .C .c .o .fl .H
.C:
@echo $@:
@$(CXX) -I.. $(CXXFLAGS) $< -L../lib -lfltk ${LDLIBS} -o $@
+.fl.C .fl.H :
+ @echo $@:
+ @../fluid/fluid -c $<
+
# Programs needing the OpenGL libraries:
cube: cube.C
@echo $@:
@@ -102,5 +106,5 @@ clean:
-@ rm -f ${ALL} jpeg_image *.o core *~
#
-# End of "$Id: Makefile,v 1.7 1998/10/21 17:15:44 mike Exp $".
+# End of "$Id: Makefile,v 1.8 1998/10/21 17:20:08 mike Exp $".
#