[svn-r3094] Purpose:

Fix
Description:
	Hopefully the last fix in the .C -> .cpp suffix change saga.
	Forgot to tell the commence/conclude files that the suffix has
	changed
This commit is contained in:
Bill Wendling 2000-12-07 16:41:53 -05:00
parent 812bfdae01
commit 82c9848b2d
2 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@
## Things that Make needs
.SUFFIXES:
.SUFFIXES: .C .o .lo
.SUFFIXES: .cpp .o .lo
@SET_MAKE@
## Directories to search

View File

@ -168,10 +168,10 @@ maintainer-clean: distclean
-$(RM) *~ core core.* *.core *.bak *.contrib gmon.out
## Implicit rules
.C.o:
.cpp.o:
$(CXX) $(CXXFLAGS) $(CPPFLAGS) -c $<
.C.lo:
.cpp.lo:
@$(LT_COMPILE) $(CXXFLAGS) $(CPPFLAGS) -c $<
##-----------------------------------------------------------------------------