From b9cb06b5a6d2a0cf0956ca65218f195bc75d71f5 Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Sun, 6 Dec 1998 15:19:37 +0000 Subject: [PATCH] Makefile didn't define .cxx extension... git-svn-id: file:///fltk/svn/fltk/trunk@133 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Makefile | 6 ++++-- 1 file 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 $". #