diff options
author | Robb Matzke <matzke@llnl.gov> | 1999-03-22 16:21:49 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1999-03-22 16:21:49 (GMT) |
commit | 13c9a30beb9e177acffbb5cc5c1601a7d8b6199b (patch) | |
tree | 3af36050943d5814addaf71e16ddfff12a167d63 /config/commence.in | |
parent | 8473025b4516fe4658271bb20f4b1a92de81c666 (diff) | |
download | hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.zip hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.tar.gz hdf5-13c9a30beb9e177acffbb5cc5c1601a7d8b6199b.tar.bz2 |
[svn-r1154] Changes since 19990322
----------------------
./configure.in
./configure [REGENERATED]
./config/commence.in
A few tweaks to the makefile rules for rebuilding makefiles.
./src/H5detect.c
Fixed a really stupid mistake: resetting the signal handler
after a longjmp(). This should fix Bob's SIGBUS on Solaris.
Diffstat (limited to 'config/commence.in')
-rw-r--r-- | config/commence.in | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/config/commence.in b/config/commence.in index 41103bc..4303cbe 100644 --- a/config/commence.in +++ b/config/commence.in @@ -62,22 +62,25 @@ all: # # Graphically, the dependencies are: # -# configure.in -# | | -# +--------------------+ +-------------------+ -# | | -# stamp1 configure -# | | -# | config.status -# | | | -# | +-------------------------------------+ | -# | | | -# stamp2 Makefile.in et al | -# | | | -# | +-----------+ +------+ -# +-----------------------------+ | | -# | | | -# Makefile +# configure.in +# | | +# +-----------------+ +------------+ +# | | +# stamp1 configure +# (H5config.h.in) | +# | | | +# | +---------------+ +-----------+ +# | | | +# | config.status +# | | +# | +------------------+ +# | | +# stamp2 +# (H5config.h) Makefile.in et al +# | | +# +------------------+ +-----------+ +# | | +# Makefile # # A side effect of updating stamp1 is to generate H5config.h.in and a # side effect of updating stamp2 is to generate H5config.h. When using @@ -105,10 +108,10 @@ $(STAMP2): $(STAMP1) $(top_builddir)/config.status $(top_srcdir)/configure: $(top_srcdir)/configure.in -cd $(top_srcdir); autoconf -$(top_srcdir)/config.status: $(top_builddir)/configure +$(top_builddir)/config.status: $(top_srcdir)/configure $(STAMP1) -cd $(top_builddir); ./config.status --recheck -Makefile: $(MAKEFILE_PARTS) $(top_builddir)/config.status $(STAMP2) +Makefile: $(MAKEFILE_PARTS) $(STAMP2) -cd $(top_builddir); CONFIG_HEADERS= ./config.status #------------------------------------------------------------------------------ |