diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-05-12 15:15:27 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-05-12 15:15:27 (GMT) |
commit | 63e372c5699f197d62731cbd279204b2cc1c45ae (patch) | |
tree | f3f3d2886693fde39e58d499aa18be0ec50c1891 /Makefile.in | |
parent | 6cdadf3db5d57111f80eb45a587af7eb30336dcb (diff) | |
download | hdf5-63e372c5699f197d62731cbd279204b2cc1c45ae.zip hdf5-63e372c5699f197d62731cbd279204b2cc1c45ae.tar.gz hdf5-63e372c5699f197d62731cbd279204b2cc1c45ae.tar.bz2 |
[svn-r14969] Purpose: Bug Fix (Bug 1144)
Description: Tests in perform directory were never getting run, and
h5perf* programs were not being installed.
Solution: Added another build option, 'make check-perform', which runs the
tests in the perform directory. Also modified the Makefiles in the
perform directory to install (with 'make install') h5perf when
parallel is enabled, and h5perf and h5perf_serial when parallel
is disabled.
Tested: kagiso, smirom, linew
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 8209db9..6dc555f 100644 --- a/Makefile.in +++ b/Makefile.in @@ -826,6 +826,13 @@ tests: fi; \ done +check-perform: + @@SETX@; for d in perform; do \ + if test $$d != .; then \ + (cd $$d && $(MAKE) $(AM_MAKEFLAGS) $@) || exit 1; \ + fi; \ + done + install-exec-local: @cd perform && $(MAKE) $(AM_MAKEFLAGS) install uninstall-local: |