summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 21:50:16 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-02-22 21:50:16 +0000
commitfea9a2db450f8ecb0a5a2846b42c3b115821be4f (patch)
tree8697d45a07a7e35b4edcbf77abcf8f1981aa52a0
parent8b5f73c23cec38e81cc3a35bffc86aaf2998a3e9 (diff)
Makefile didn't have a .cxx to .o rule.
git-svn-id: file:///fltk/svn/fltk/trunk@323 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--test/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 7a7be305b..65f7a1e32 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.17 1999/02/22 21:33:54 mike Exp $"
+# "$Id: Makefile,v 1.18 1999/02/22 21:50:16 mike Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@@ -55,6 +55,9 @@ $(ALL): ../lib/$(LIBNAME)
.cxx:
$(CXX) -I.. $(CXXFLAGS) $< -L../lib -lfltk $(LDLIBS) -o $@
+.cxx.o:
+ $(CXX) -I.. $(CXXFLAGS) $< -c
+
.fl.cxx:
../fluid/fluid -c $<
@@ -88,5 +91,5 @@ install:
@echo Nothing to install in test directory.
#
-# End of "$Id: Makefile,v 1.17 1999/02/22 21:33:54 mike Exp $".
+# End of "$Id: Makefile,v 1.18 1999/02/22 21:50:16 mike Exp $".
#