summaryrefslogtreecommitdiffstats
path: root/c++/test
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-12-07 03:43:42 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-12-07 03:43:42 (GMT)
commitf271832d0dd5edec8daf3da743ba6909f05d3901 (patch)
treeded0612e2e654e7932d114ae6781463e6f778fbc /c++/test
parent4e615c218880b5d9d9d9e1c5ba300c3cdc260900 (diff)
downloadhdf5-f271832d0dd5edec8daf3da743ba6909f05d3901.zip
hdf5-f271832d0dd5edec8daf3da743ba6909f05d3901.tar.gz
hdf5-f271832d0dd5edec8daf3da743ba6909f05d3901.tar.bz2
[svn-r3090] Purpose:
Fix Description: Windows couldn't handle the .C extension. The filenames had to be changed to *.cpp instead. Solution: Changed in the Makefiles to accomodate said change. Platforms tested: Eyeballed.
Diffstat (limited to 'c++/test')
-rw-r--r--c++/test/Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/test/Makefile.in b/c++/test/Makefile.in
index 230f24d..8683eae 100644
--- a/c++/test/Makefile.in
+++ b/c++/test/Makefile.in
@@ -27,11 +27,11 @@ TEST_PROGS_SRC=
TEST_PROGS=
TEST_SRC=
-TEST_OBJ=$(TEST_SRC:.C=.lo)
+TEST_OBJ=$(TEST_SRC:.cpp=.lo)
TEST_SCRIPTS=testexamples.sh
-DISTCLEAN=$(TEST_PROGS_SRC:.C=.lo) $(TEST_PROGS_SRC:.C=.o) *.h5
+DISTCLEAN=$(TEST_PROGS_SRC:.cpp=.lo) $(TEST_PROGS_SRC:.cpp=.o) *.h5
$(TEST_PROGS): $(LIB)
@echo No C++ test as of yet.