[MOAB-dev] r3975 - MOAB/trunk/examples
kraftche at cae.wisc.edu
kraftche at cae.wisc.edu
Fri May 28 10:59:43 CDT 2010
Author: kraftche
Date: 2010-05-28 10:59:43 -0500 (Fri, 28 May 2010)
New Revision: 3975
Modified:
MOAB/trunk/examples/examples.make.in
Log:
pedantic portability fix: historically not all 'make' implementations recognize .cpp as a file extension for C++ source files
Modified: MOAB/trunk/examples/examples.make.in
===================================================================
--- MOAB/trunk/examples/examples.make.in 2010-05-28 15:49:50 UTC (rev 3974)
+++ MOAB/trunk/examples/examples.make.in 2010-05-28 15:59:43 UTC (rev 3975)
@@ -8,3 +8,9 @@
default: all
+.SUFFIXES: .cpp
+
+.cpp.o:
+ $(CXX) -c $< $(CPPFLAGS) $(CXXFLAGS)
+
+
More information about the moab-dev
mailing list