summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-12-06 15:19:37 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-12-06 15:19:37 +0000
commitb9cb06b5a6d2a0cf0956ca65218f195bc75d71f5 (patch)
treede92d370f9dcd2423e6523943e3a2b8789155316
parent80bbaf21aa1e6922f48765a71dcd96dbe3f6a7b5 (diff)
Makefile didn't define .cxx extension...
git-svn-id: file:///fltk/svn/fltk/trunk@133 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--src/Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Makefile b/src/Makefile
index a79bd1d78..81824fdb0 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,5 +1,5 @@
#
-# "$Id: Makefile,v 1.7 1998/12/06 14:59:14 mike Exp $"
+# "$Id: Makefile,v 1.8 1998/12/06 15:19:37 mike Exp $"
#
# Library makefile for the Fast Light Tool Kit (FLTK).
#
@@ -154,6 +154,8 @@ $(LIBRARY) : $(OBJECTS)
@$(LIBCOMMAND) $(LIBRARY) $(OBJECTS)
@$(RANLIB) $(LIBRARY)
+.SUFFIXES: .cxx .h .o
+
.cxx.o :
@echo $<:
@$(CXX) -I.. $(CXXFLAGS) -c $<
@@ -182,5 +184,5 @@ install: ../lib/$(LIBNAME)
@chmod -R a+r,u+w,g-w,o-w $(includedir)/FL
#
-# End of "$Id: Makefile,v 1.7 1998/12/06 14:59:14 mike Exp $".
+# End of "$Id: Makefile,v 1.8 1998/12/06 15:19:37 mike Exp $".
#