diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-06-13 20:40:40 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-06-13 20:40:40 (GMT) |
commit | 9807a150186b769eb302f1f7a5473fd57230d3c0 (patch) | |
tree | 66f7bf3a02fe6b27f95646e1b7dacbb113036bc5 /c++ | |
parent | 300e769567785a222f90ea3d0b1db95d7d0b5903 (diff) | |
download | hdf5-9807a150186b769eb302f1f7a5473fd57230d3c0.zip hdf5-9807a150186b769eb302f1f7a5473fd57230d3c0.tar.gz hdf5-9807a150186b769eb302f1f7a5473fd57230d3c0.tar.bz2 |
[svn-r7039]
Purpose:
Bug Fix
Description:
There was another GNU-make-ism in the C++ examples Makefile.in
that I didn't clean up.
Solution:
Changed the "$<" to the name of the file to compile.
Platforms tested:
Copper (Small fix...problem was on Copper).
Misc. update:
Diffstat (limited to 'c++')
-rw-r--r-- | c++/examples/Makefile.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/c++/examples/Makefile.in b/c++/examples/Makefile.in index a3e8de1..43bb0a5 100644 --- a/c++/examples/Makefile.in +++ b/c++/examples/Makefile.in @@ -53,24 +53,24 @@ CLEAN= $(TEST_PROGS): $(LIB) $(LIBHDF5) compound: $(srcdir)/compound.cpp - $(CXX) $(CPPFLAGS) -o $@ $< + $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/compound.cpp h5group: $(srcdir)/h5group.cpp - $(CXX) $(CPPFLAGS) -o $@ $< + $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/h5group.cpp create: $(srcdir)/create.cpp - $(CXX) $(CPPFLAGS) -o $@ $< + $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/create.cpp readdata: $(srcdir)/readdata.cpp - $(CXX) $(CPPFLAGS) -o $@ $< + $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/readdata.cpp chunks: $(srcdir)/chunks.cpp - $(CXX) $(CPPFLAGS) -o $@ $< + $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/chunks.cpp extend_ds: $(srcdir)/extend_ds.cpp - $(CXX) $(CPPFLAGS) -o $@ $< + $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/extend_ds.cpp writedata: $(srcdir)/writedata.cpp - $(CXX) $(CPPFLAGS) -o $@ $< + $(CXX) $(CPPFLAGS) -o $@ $(srcdir)/writedata.cpp @CONCLUDE@ |