diff options
author | Christopher Faylor <me@cgf.cx> | 2000-09-03 04:01:56 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-09-03 04:01:56 +0000 |
commit | 644eb6fe9675bb3498e83e1ea7d5a1e44ff57f56 (patch) | |
tree | 105b815049c781ab9f3902c9be8efa3f0b13d595 | |
parent | f1930aec47835e0ce231dff1893826824a462567 (diff) | |
download | newlib-644eb6fe9675bb3498e83e1ea7d5a1e44ff57f56.zip newlib-644eb6fe9675bb3498e83e1ea7d5a1e44ff57f56.tar.gz newlib-644eb6fe9675bb3498e83e1ea7d5a1e44ff57f56.tar.bz2 |
* Makefile.in: Remove "make check" support. It is now in winsup/Makefile.in.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/Makefile.in | 57 |
2 files changed, 6 insertions, 56 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 7a67363..fdf767b 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2000-09-02 Egor Duda <deo@logos-m.ru> + + * Makefile.in: Remove "make check" support. It is now in + winsup/Makefile.in. + Fri Sep 1 21:17:03 2000 Christopher Faylor <cgf@cygnus.com> * sigproc.cc (mychild): New function. diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in index 3bbe424..35da6de 100644 --- a/winsup/cygwin/Makefile.in +++ b/winsup/cygwin/Makefile.in @@ -179,7 +179,7 @@ $(LIB_NAME): $(DEF_FILE) $(LIBCOS) $(AR) rcv temp.a $(LIBCOS) mv temp.a $(LIB_NAME) -# Rule to make stub library used by "make check" +# Rule to make stub library used by testsuite new-$(LIB_NAME): $(DEF_FILE) $(LIBCOS) $(DLLTOOL) --as=$(AS) --dllname new-$(DLL_NAME) --def $(DEF_FILE) --output-lib temp.a @@ -212,61 +212,6 @@ cygrun.exe : cygrun.o $(LIB_NAME) $(w32api_lib)/libuser32.a \ # -# These targets are for the dejagnu testsuites. The file site.exp -# contains global variables that all the testsuites will use. - -# Set to $(target_alias)/ for cross. -target_subdir = @target_subdir@ - -site.exp: ./config.status Makefile - @echo "Making a new config file..." - -@rm -f ./tmp? - @touch site.exp - -@mv site.exp site.bak - @echo "## these variables are automatically generated by make ##" > ./tmp0 - @echo "# Do not edit here. If you wish to override these values" >> ./tmp0 - @echo "# add them to the last section" >> ./tmp0 - @echo "set rootme \"`pwd`\"" >> ./tmp0 - @echo "set srcdir \"`cd ${srcdir}; pwd`\"" >> ./tmp0 - @echo "set host_triplet $(host_canonical)" >> ./tmp0 - @echo "set build_triplet $(build_canonical)" >> ./tmp0 - @echo "set target_triplet $(target)" >> ./tmp0 - @echo "set target_alias $(target_alias)" >> ./tmp0 - @echo "set CC \"$(CC)\"" >> ./tmp0 -# CFLAGS is set even though it's empty to show we reserve the right to set it. - @echo "set CFLAGS \"\"" >> ./tmp0 - echo "set tmpdir $(objdir)/testsuite" >> ./tmp0 - @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0 - @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0 - @cat ./tmp0 > site.exp - @cat site.bak | sed \ - -e '1,/^## All variables above are.*##/ d' >> site.exp - -@rm -f ./tmp? - -testsuite/site.exp: site.exp - if [ -d testsuite ]; then \ - true; \ - else \ - mkdir testsuite; \ - fi - rm -rf testsuite/site.exp - cp site.exp testsuite/site.exp - -# Note: we set the PATH so that we can pick up new-cygwin1.dll - -check: testsuite/site.exp - -rootme=`pwd`; export rootme; \ - srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \ - cd testsuite; \ - EXPECT=${EXPECT} ; export EXPECT ; \ - if [ -f $${rootme}/../expect/expect ] ; then \ - TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \ - export TCL_LIBRARY ; fi ; \ - PATH=$${rootme}:$${PATH} ;\ - $(RUNTEST) --tool winsup $(RUNTESTFLAGS) - -# - Makefile: cygwin.din $(DEF_FILE): cygwin.din config.status |