diff options
author | James Laird <jlaird@hdfgroup.org> | 2005-04-06 18:25:22 (GMT) |
---|---|---|
committer | James Laird <jlaird@hdfgroup.org> | 2005-04-06 18:25:22 (GMT) |
commit | 686e4f35010249e0489b49431836e4d34cfd24bc (patch) | |
tree | 8abd0103acfebfd0fc1e678da594fda48690b7c3 /Makefile.in | |
parent | 5c7a236baaa2c82e30dd52a6949dee7064e2a001 (diff) | |
download | hdf5-686e4f35010249e0489b49431836e4d34cfd24bc.zip hdf5-686e4f35010249e0489b49431836e4d34cfd24bc.tar.gz hdf5-686e4f35010249e0489b49431836e4d34cfd24bc.tar.bz2 |
[svn-r10560] Purpose:
Feature: make install now installs h5perf
Description:
h5perf is now installed in hdf5/bin during 'make install.'
Same change as in the 1.6 branch.
Platforms tested:
mir
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/Makefile.in b/Makefile.in index 65b548d..582efab 100644 --- a/Makefile.in +++ b/Makefile.in @@ -714,7 +714,7 @@ info-am: install-data-am: -install-exec-am: +install-exec-am: install-exec-local install-info: install-info-recursive @@ -741,7 +741,7 @@ ps: ps-recursive ps-am: -uninstall-am: uninstall-info-am +uninstall-am: uninstall-info-am uninstall-local uninstall-info: uninstall-info-recursive @@ -753,13 +753,14 @@ uninstall-info: uninstall-info-recursive distclean-recursive distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-exec \ - install-exec-am install-info install-info-am install-man \ - install-strip installcheck installcheck-am installcheck-local \ - installdirs installdirs-am maintainer-clean \ - maintainer-clean-generic maintainer-clean-recursive \ - mostlyclean mostlyclean-generic mostlyclean-libtool \ - mostlyclean-local mostlyclean-recursive pdf pdf-am ps ps-am \ - tags tags-recursive uninstall uninstall-am uninstall-info-am + install-exec-am install-exec-local install-info \ + install-info-am install-man install-strip installcheck \ + installcheck-am installcheck-local installdirs installdirs-am \ + maintainer-clean maintainer-clean-generic \ + maintainer-clean-recursive mostlyclean mostlyclean-generic \ + mostlyclean-libtool mostlyclean-local mostlyclean-recursive \ + pdf pdf-am ps ps-am tags tags-recursive uninstall uninstall-am \ + uninstall-info-am uninstall-local # Define rules for lib, progs, check, and tests. @@ -773,7 +774,7 @@ lib progs: fi; \ done -# Make all and make tests also create tests in perform directory +# Make all, tests, and (un)install also recurse into perform directory all-local: cd perform && $(MAKE) $(AM_MAKEFLAGS) all tests: @@ -783,6 +784,11 @@ tests: fi; \ done +install-exec-local: + cd perform && $(MAKE) $(AM_MAKEFLAGS) install +uninstall-local: + cd perform && $(MAKE) $(AM_MAKEFLAGS) uninstall + # Clean and mostlyclean need to recurse into docs, examples, and perform # directories unless they've already been distcleaned. clean-local: |