summaryrefslogtreecommitdiffstats
path: root/c++/config
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-12-07 21:41:53 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-12-07 21:41:53 (GMT)
commit82c9848b2d25067f7bc2070ac73fc8a7a4935bbf (patch)
tree1eccb85d71a4dc1d5770e5f507b91d2285d5cba8 /c++/config
parent812bfdae019b18c4206e20e9dc6fc584874061c4 (diff)
downloadhdf5-82c9848b2d25067f7bc2070ac73fc8a7a4935bbf.zip
hdf5-82c9848b2d25067f7bc2070ac73fc8a7a4935bbf.tar.gz
hdf5-82c9848b2d25067f7bc2070ac73fc8a7a4935bbf.tar.bz2
[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
Diffstat (limited to 'c++/config')
-rw-r--r--c++/config/commence.in2
-rw-r--r--c++/config/conclude.in4
2 files changed, 3 insertions, 3 deletions
diff --git a/c++/config/commence.in b/c++/config/commence.in
index a5fb266..872fdb0 100644
--- a/c++/config/commence.in
+++ b/c++/config/commence.in
@@ -6,7 +6,7 @@
## Things that Make needs
.SUFFIXES:
-.SUFFIXES: .C .o .lo
+.SUFFIXES: .cpp .o .lo
@SET_MAKE@
## Directories to search
diff --git a/c++/config/conclude.in b/c++/config/conclude.in
index 790da2d..ac6897f 100644
--- a/c++/config/conclude.in
+++ b/c++/config/conclude.in
@@ -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 $<
##-----------------------------------------------------------------------------