summaryrefslogtreecommitdiffstats
path: root/c++/examples/Makefile.in
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++/examples/Makefile.in
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++/examples/Makefile.in')
-rw-r--r--c++/examples/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in
index ac6233d..eb67898 100644
--- a/c++/examples/Makefile.in
+++ b/c++/examples/Makefile.in
@@ -19,15 +19,15 @@ CPPFLAGS=-I. -I../src -I$(srcdir)/../src -I$(hdf5_builddir) -I$(hdf5_srcdir) @CP
LIBHDF5=$(hdf5_builddir)/libhdf5.la
## List all source files here. The list of object files will be
-## created by replacing the `.C' with a `.lo'. This list is necessary
+## created by replacing the `.cpp' with a `.lo'. This list is necessary
## for building automatic dependencies.
-TEST_SRC=compound.C h5group.C create.C readdata.C chunks.C extend_ds.C \
- writedata.C
-TEST_OBJ=$(TEST_SRC:.C=.lo)
+TEST_SRC=compound.cpp h5group.cpp create.cpp readdata.cpp chunks.cpp \
+ extend_ds.cpp writedata.cpp
+TEST_OBJ=$(TEST_SRC:.cpp=.lo)
## These are the programs that `make all' or `make tests' will build and which
## `make check' will run. List them in the order they should be run.
-TEST_PROGS=$(TEST_SRC:.C=)
+TEST_PROGS=$(TEST_SRC:.cpp=)
## These are the files that `make clean' (and derivatives) will remove from
## this directory.