diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 18:25:12 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-08-08 18:25:12 (GMT) |
commit | a77654829b92305550b5147a27d5a7650acadd34 (patch) | |
tree | e94364abfe07fe5b3776bb41800a7f535559b0cd /Makefile.in | |
parent | 0415baafcef64716ebfc19bd15809506b6a3ecb2 (diff) | |
download | hdf5-a77654829b92305550b5147a27d5a7650acadd34.zip hdf5-a77654829b92305550b5147a27d5a7650acadd34.tar.gz hdf5-a77654829b92305550b5147a27d5a7650acadd34.tar.bz2 |
[svn-r7289] Purpose:
Code cleanup
Description:
Simplify installation for examples.
Platforms tested:
h5committestted
Misc. update:
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/Makefile.in b/Makefile.in index a8f2867..0fd8745 100644 --- a/Makefile.in +++ b/Makefile.in @@ -98,20 +98,14 @@ install: @$(LT) --mode=finish $(libdir) install-examples: - @@SETX@; for d in dummy @HDF5_INTERFACES@; do \ - if test $$d != "dummy"; then \ + @@SETX@; for d in examples @HDF5_INTERFACES@; do \ (cd $$d && $(MAKE) $@) || exit 1; \ - fi; \ done - (cd examples && $(MAKE) $@) || exit 1; uninstall-examples: - @@SETX@; for d in dummy @HDF5_INTERFACES@; do \ - if test $$d != "dummy"; then \ + @@SETX@; for d in examples @HDF5_INTERFACES@; do \ (cd $$d && $(MAKE) $@) || exit 1; \ - fi; \ done - (cd examples && $(MAKE) $@) || exit 1; install-doc: @$(MAKE) install-examples @@ -124,11 +118,8 @@ uninstall-doc: ## Check if installation is correct by checking if examples can be built. ## This requires a proper "make install" has been done. check-install: - (cd examples && $(MAKE) check) || exit 1 - @@SETX@; for d in dummy @HDF5_INTERFACES@; do \ - if test $$d != "dummy"; then \ + @@SETX@; for d in examples @HDF5_INTERFACES@; do \ (cd $$d && $(MAKE) $@) || exit 1; \ - fi; \ done ## Number format detection |