diff options
author | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2002-10-09 21:25:48 (GMT) |
---|---|---|
committer | Pedro Vicente Nunes <pvn@hdfgroup.org> | 2002-10-09 21:25:48 (GMT) |
commit | 2ac05ce9dc4774f96cc3ed19e0b6ec8afb59fddc (patch) | |
tree | fa1b84ab7897d96c91f6d5913d979433c3633223 | |
parent | d49f76ace993ef06a9dcea24f38d920f8df48858 (diff) | |
download | hdf5-2ac05ce9dc4774f96cc3ed19e0b6ec8afb59fddc.zip hdf5-2ac05ce9dc4774f96cc3ed19e0b6ec8afb59fddc.tar.gz hdf5-2ac05ce9dc4774f96cc3ed19e0b6ec8afb59fddc.tar.bz2 |
[svn-r5973] Purpose:
added h5fiff to configure and makefiles
Platforms tested:
linux 2.4.18
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | tools/Makefile.in | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -30278,7 +30278,7 @@ if test "$HAVE_PABLO" = "yes"; then fi fi -ac_config_files="$ac_config_files src/libhdf5.settings config/depend1 config/depend2 config/depend3 config/depend4 config/dependN config/commence config/conclude Makefile src/Makefile $PABLO_MAKE test/Makefile $PARALLEL_MAKE perform/Makefile tools/Makefile tools/h5dump/Makefile tools/h5ls/Makefile tools/lib/Makefile tools/misc/Makefile tools/misc/h5cc tools/gifconv/Makefile examples/Makefile doc/Makefile doc/html/Makefile doc/html/ADGuide/Makefile doc/html/Graphics/Makefile doc/html/Intro/Makefile doc/html/PSandPDF/Makefile doc/html/TechNotes/Makefile doc/html/Tutor/Makefile doc/html/Tutor/Graphics/Makefile doc/html/Tutor/examples/Makefile doc/html/cpplus/Makefile doc/html/fortran/Makefile" +ac_config_files="$ac_config_files src/libhdf5.settings config/depend1 config/depend2 config/depend3 config/depend4 config/dependN config/commence config/conclude Makefile src/Makefile $PABLO_MAKE test/Makefile $PARALLEL_MAKE perform/Makefile tools/Makefile tools/h5dump/Makefile tools/h5diff/Makefile tools/h5ls/Makefile tools/lib/Makefile tools/misc/Makefile tools/misc/h5cc tools/gifconv/Makefile examples/Makefile doc/Makefile doc/html/Makefile doc/html/ADGuide/Makefile doc/html/Graphics/Makefile doc/html/Intro/Makefile doc/html/PSandPDF/Makefile doc/html/TechNotes/Makefile doc/html/Tutor/Makefile doc/html/Tutor/Graphics/Makefile doc/html/Tutor/examples/Makefile doc/html/cpplus/Makefile doc/html/fortran/Makefile" cat >confcache <<\_ACEOF @@ -30778,6 +30778,7 @@ do "perform/Makefile" ) CONFIG_FILES="$CONFIG_FILES perform/Makefile" ;; "tools/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; "tools/h5dump/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/h5dump/Makefile" ;; + "tools/h5diff/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/h5diff/Makefile" ;; "tools/h5ls/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/h5ls/Makefile" ;; "tools/lib/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/lib/Makefile" ;; "tools/misc/Makefile" ) CONFIG_FILES="$CONFIG_FILES tools/misc/Makefile" ;; diff --git a/configure.in b/configure.in index f261ec1..b41f302 100644 --- a/configure.in +++ b/configure.in @@ -1928,6 +1928,7 @@ AC_CONFIG_FILES([src/libhdf5.settings perform/Makefile tools/Makefile tools/h5dump/Makefile + tools/h5diff/Makefile tools/h5ls/Makefile tools/lib/Makefile tools/misc/Makefile diff --git a/tools/Makefile.in b/tools/Makefile.in index 00a385d..a5bc2c1 100644 --- a/tools/Makefile.in +++ b/tools/Makefile.in @@ -10,7 +10,7 @@ srcdir=@srcdir@ ## All subdirectories except for the ``lib'' subdirectory. ## -SUBDIRS=h5dump h5ls misc gifconv +SUBDIRS=h5dump h5diff h5ls misc gifconv @COMMENCE@ |