* Makefile.in: Add new goal "check"
* configure.in: When doing native build do configure in testsuite subdirectory * configure: Regenerate.
This commit is contained in:
parent
644eb6fe96
commit
39630fe3a1
|
@ -1,3 +1,10 @@
|
|||
2000-09-02 Egor Duda <deo@logos-m.ru>
|
||||
|
||||
* Makefile.in: Add new goal "check"
|
||||
* configure.in: When doing native build do configure in
|
||||
testsuite subdirectory
|
||||
* configure: Regenerate.
|
||||
|
||||
Fri Sep 1 10:15:37 2000 Christopher Faylor <cgf@cygnus.com>
|
||||
|
||||
* Makefile.in: More normalization.
|
||||
|
|
|
@ -40,7 +40,7 @@ SUBDIRS=@SUBDIRS@
|
|||
INSTALL_SUBDIRS=${patsubst %,install_%,$(SUBDIRS)}
|
||||
CLEAN_SUBDIRS=${patsubst %,clean_%,$(SUBDIRS)}
|
||||
|
||||
.PHONY: all install clean all-info info install-info \
|
||||
.PHONY: all install clean all-info info install-info check \
|
||||
$(SUBDIRS) $(INSTALL_SUBDIRS) $(CLEAN_SUBDIRS)
|
||||
|
||||
.SUFFIXES:
|
||||
|
@ -73,6 +73,7 @@ $(INSTALL_SUBDIRS):
|
|||
|
||||
$(CLEAN_SUBDIRS):
|
||||
@$(MAKE) -C ${patsubst clean_%,%,$@} clean
|
||||
@$(MAKE) -C testsuite clean
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
@ -81,3 +82,6 @@ Makefile: Makefile.in $(srcdir)/configure.in config.status
|
|||
|
||||
config.status: configure
|
||||
$(SHELL) config.status --recheck
|
||||
|
||||
check:
|
||||
@$(MAKE) -C testsuite check
|
||||
|
|
|
@ -829,9 +829,8 @@ fi
|
|||
SUBDIRS='w32api cygwin mingw'
|
||||
case "$with_cross_host" in
|
||||
""|*cygwin*)
|
||||
SUBDIRS="$SUBDIRS utils"
|
||||
test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall"
|
||||
SUBDIRS="$SUBDIRS doc"
|
||||
SUBDIRS="$SUBDIRS utils doc testsuite"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
@ -839,7 +838,7 @@ subdirs="$SUBDIRS"
|
|||
|
||||
|
||||
echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
|
||||
echo "configure:843: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
||||
echo "configure:842: 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
|
||||
|
|
|
@ -60,9 +60,8 @@ LIB_AC_PROG_CC
|
|||
SUBDIRS='w32api cygwin mingw'
|
||||
case "$with_cross_host" in
|
||||
""|*cygwin*)
|
||||
SUBDIRS="$SUBDIRS utils"
|
||||
test -d $srcdir/cinstall && SUBDIRS="$SUBDIRS cinstall"
|
||||
SUBDIRS="$SUBDIRS doc"
|
||||
SUBDIRS="$SUBDIRS utils doc testsuite"
|
||||
;;
|
||||
esac
|
||||
|
||||
|
|
Loading…
Reference in New Issue