* Makefile.in: Exit immediately if a sub-make fails.
This commit is contained in:
parent
bdc7392ce3
commit
94597cd05f
|
@ -1,3 +1,7 @@
|
|||
2001-12-14 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* Makefile.in: Exit immediately if a sub-make fails.
|
||||
|
||||
2001-11-04 Christopher Faylor <cgf@redhat.com>
|
||||
|
||||
* Makefile.in: Force configure in testsuite directory if config.status
|
||||
|
|
|
@ -52,6 +52,10 @@ else
|
|||
endif
|
||||
endif
|
||||
|
||||
zlib_source:=$(updir)/zlib
|
||||
zlib_build:=$(bupdir)/zlib
|
||||
bz2lib_source:=$(updir)/bz2lib
|
||||
bz2lib_build:=$(bupdir)/bz2lib
|
||||
w32api_source:=$(updir)/w32api
|
||||
w32api_build:=$(bupdir)/w32api
|
||||
ifeq (,${findstring $(w32api_source),$(CFLAGS) $(CXXFLAGS) $(CXX) $(CC)})
|
||||
|
@ -157,6 +161,12 @@ $(bupdir1)/libiberty/%.o: $(updir1)/libiberty/%.c
|
|||
$(w32api_lib)/%.a: $(w32api_lib)/Makefile
|
||||
@$(MAKE) --no-print-dir -C $(@D) $(@F)
|
||||
|
||||
$(bz2lib)/%a: $(bz2lib)/Makefile
|
||||
@$(MAKE) --no-print-dir -C $(@D) $(@F)
|
||||
|
||||
$(zlib)/%a: $(zlib)/Makefile
|
||||
@$(MAKE) --no-print-dir -C $(@D) $(@F)
|
||||
|
||||
all:
|
||||
|
||||
# For auto-rebuilding the Makefile
|
||||
|
|
|
@ -67,17 +67,17 @@ info:
|
|||
|
||||
$(SUBDIRS):
|
||||
@if cd $@ 2>/dev/null; then \
|
||||
$(MAKE) all; \
|
||||
$(MAKE) all || exit 1; \
|
||||
fi || exit 0
|
||||
|
||||
$(INSTALL_SUBDIRS):
|
||||
@if cd ${patsubst install_%,%,$@} 2>/dev/null; then \
|
||||
$(MAKE) install; \
|
||||
$(MAKE) install || exit 1; \
|
||||
fi || exit 0
|
||||
|
||||
$(CLEAN_SUBDIRS):
|
||||
@if cd ${patsubst clean_%,%,$@} 2>/dev/null; then \
|
||||
$(MAKE) clean; \
|
||||
$(MAKE) clean || exit 1; \
|
||||
fi || exit 0
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
@ -107,7 +107,7 @@ mingw: w32api
|
|||
|
||||
cygwin: w32api
|
||||
|
||||
cinstall: mingw
|
||||
cinstall: mingw bz2lib zlib
|
||||
|
||||
install_utils: cygwin mingw
|
||||
|
||||
|
@ -115,4 +115,4 @@ install_mingw: w32api
|
|||
|
||||
install_cygwin: w32api
|
||||
|
||||
install_cinstall: mingw
|
||||
install_cinstall: mingw bz2lib zlib
|
||||
|
|
|
@ -920,6 +920,7 @@ SUBDIRS='w32api cygwin mingw'
|
|||
case "$with_cross_host" in
|
||||
""|*cygwin*)
|
||||
test -d $srcdir/bz2lib && SUBDIRS="$SUBDIRS bz2lib"
|
||||
test -d $srcdir/zlib && SUBDIRS="$SUBDIRS zlib"
|
||||
test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall"
|
||||
# test -d $srcdir/subauth && SUBDIRS="$SUBDIRS subauth"
|
||||
SUBDIRS="$SUBDIRS utils doc"
|
||||
|
@ -930,7 +931,7 @@ subdirs="$SUBDIRS"
|
|||
|
||||
|
||||
echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
|
||||
echo "configure:934: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
||||
echo "configure:935: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
||||
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
|
||||
if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
|
||||
echo $ac_n "(cached) $ac_c" 1>&6
|
||||
|
|
|
@ -70,6 +70,7 @@ SUBDIRS='w32api cygwin mingw'
|
|||
case "$with_cross_host" in
|
||||
""|*cygwin*)
|
||||
test -d $srcdir/bz2lib && SUBDIRS="$SUBDIRS bz2lib"
|
||||
test -d $srcdir/zlib && SUBDIRS="$SUBDIRS zlib"
|
||||
test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall"
|
||||
# test -d $srcdir/subauth && SUBDIRS="$SUBDIRS subauth"
|
||||
SUBDIRS="$SUBDIRS utils doc"
|
||||
|
|
Loading…
Reference in New Issue