Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--winsup/ChangeLog7
-rw-r--r--winsup/Makefile.in6
-rwxr-xr-xwinsup/configure5
-rwxr-xr-xwinsup/configure.in3
4 files changed, 15 insertions, 6 deletions
diff --git a/winsup/ChangeLog b/winsup/ChangeLog
index 3295a47b9..211adeecb 100644
--- a/winsup/ChangeLog
+++ b/winsup/ChangeLog
@@ -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.
diff --git a/winsup/Makefile.in b/winsup/Makefile.in
index 1fde0e9ce..09376c30e 100644
--- a/winsup/Makefile.in
+++ b/winsup/Makefile.in
@@ -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
diff --git a/winsup/configure b/winsup/configure
index be2d64e2a..5c8f5f4b7 100755
--- a/winsup/configure
+++ b/winsup/configure
@@ -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
diff --git a/winsup/configure.in b/winsup/configure.in
index ec4edda86..0e30b5a96 100755
--- a/winsup/configure.in
+++ b/winsup/configure.in
@@ -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