Makefile didn't define .cxx extension...

git-svn-id: file:///fltk/svn/fltk/trunk@133 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 1998-12-06 15:19:37 +00:00
parent 80bbaf21aa
commit b9cb06b5a6

View File

@ -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 $".
#