diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2010-05-27 22:46:44 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2010-05-27 22:46:44 (GMT) |
commit | 57e066c7a3deb53867bf893fd7fb2a1cc84c53fe (patch) | |
tree | d4d722f506141ee67a022d5717a9a17b1ea3c157 /fortran/testpar/Makefile.in | |
parent | 0b6531d21fff83531e754e05e17506086e1e70e9 (diff) | |
download | hdf5-57e066c7a3deb53867bf893fd7fb2a1cc84c53fe.zip hdf5-57e066c7a3deb53867bf893fd7fb2a1cc84c53fe.tar.gz hdf5-57e066c7a3deb53867bf893fd7fb2a1cc84c53fe.tar.bz2 |
[svn-r18919] Add $(TEST_PROG) and *.0 to CHECK_CLEANFILES and remove / between ${DESTDIR} and @prefix@ in config/commence.am. This gets propagated to Makefile.in and removes all the program and object files from the examples directories when make check-clean is run.
Tested amani, jam, linew, CYGWIN
Diffstat (limited to 'fortran/testpar/Makefile.in')
-rw-r--r-- | fortran/testpar/Makefile.in | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/fortran/testpar/Makefile.in b/fortran/testpar/Makefile.in index 89887a0..4bbefd0 100644 --- a/fortran/testpar/Makefile.in +++ b/fortran/testpar/Makefile.in @@ -343,11 +343,11 @@ LIBH5CPP_HL = $(top_builddir)/hl/c++/src/libhdf5_hl_cpp.la # Scripts used to build examples # If only shared libraries have been installed, have h5cc build examples with # shared libraries instead of static libraries -H5CC = ${DESTDIR}/$(bindir)/h5cc -H5CC_PP = ${DESTDIR}/$(bindir)/h5pcc -H5FC = ${DESTDIR}/$(bindir)/h5fc -H5FC_PP = ${DESTDIR}/$(bindir)/h5pfc -H5CPP = ${DESTDIR}/$(bindir)/h5c++ +H5CC = ${DESTDIR}$(bindir)/h5cc +H5CC_PP = ${DESTDIR}$(bindir)/h5pcc +H5FC = ${DESTDIR}$(bindir)/h5fc +H5FC_PP = ${DESTDIR}$(bindir)/h5pfc +H5CPP = ${DESTDIR}$(bindir)/h5c++ # The trace script; this is used on source files from the C library to # insert tracing macros. @@ -358,7 +358,8 @@ TRACE = perl $(top_srcdir)/bin/trace # *.clog are from the MPE option. # Temporary files -CHECK_CLEANFILES = *.chkexe *.chklog *.clog parf[12].h5 +CHECK_CLEANFILES = *.chkexe *.chklog *.clog $(TEST_PROG) *.o *.exe \ + parf[12].h5 # These are our main targets TEST_PROG_PARA = parallel_test |