diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-02-22 22:02:01 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-02-22 22:02:01 (GMT) |
commit | 9606aa8802ab596cef2c4fe9a4c6963a9c18cd5f (patch) | |
tree | 0c48a60449292faad8ff72a75cb369976b76b8c9 /configure.in | |
parent | 627a039fdbd3c6d782606f68ecee8e5262808699 (diff) | |
download | hdf5-9606aa8802ab596cef2c4fe9a4c6963a9c18cd5f.zip hdf5-9606aa8802ab596cef2c4fe9a4c6963a9c18cd5f.tar.gz hdf5-9606aa8802ab596cef2c4fe9a4c6963a9c18cd5f.tar.bz2 |
[svn-r3493] Purpose:
Update
Description:
Added generation for the Makefiles in the tools subdirectories.
Platforms tested:
Linux, Kelgia
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 54 |
1 files changed, 45 insertions, 9 deletions
diff --git a/configure.in b/configure.in index 917fea3..58dde41 100644 --- a/configure.in +++ b/configure.in @@ -1550,17 +1550,53 @@ touch ./config/stamp1 # Then the config.status file (but not makefiles) saved_no_create=$no_create no_create=yes -AC_OUTPUT(src/libhdf5.settings config/depend1 config/depend2 config/depend3 - config/depend4 config/dependN config/commence config/conclude - Makefile src/Makefile pablo/Makefile test/Makefile - testpar/Makefile tools/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 + +EXTRA_H4_MAKEFILES= + +if test -n "$H4TOH5"; then + EXTRA_H4_MAKEFILES="$EXTRA_H4_MAKEFILES tools/h4toh5/Makefile" +fi + +if test -n "$H5TOH4"; then + EXTRA_H4_MAKEFILES="$EXTRA_H4_MAKEFILES tools/h5toh4/Makefile" +fi + +AC_OUTPUT(src/libhdf5.settings + config/depend1 + config/depend2 + config/depend3 + config/depend4 + config/dependN + config/commence + config/conclude + Makefile + src/Makefile + pablo/Makefile + test/Makefile + testpar/Makefile + tools/Makefile + tools/h5debug/Makefile + tools/h5dump/Makefile + tools/h5import/Makefile + tools/h5ls/Makefile + tools/h5repart/Makefile + tools/lib/Makefile + tools/misc/Makefile + $EXTRA_H4_MAKEFILES + 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/Tutor/examples/java/Makefile - doc/html/cpplus/Makefile doc/html/fortran/Makefile) + doc/html/cpplus/Makefile + doc/html/fortran/Makefile) no_create=$saved_no_create # Then the stamp2 file for H5config.h |