* Makefile.in: Remove "make check" support. It is now in winsup/Makefile.in.
This commit is contained in:
parent
f1930aec47
commit
644eb6fe96
|
@ -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>
|
Fri Sep 1 21:17:03 2000 Christopher Faylor <cgf@cygnus.com>
|
||||||
|
|
||||||
* sigproc.cc (mychild): New function.
|
* sigproc.cc (mychild): New function.
|
||||||
|
|
|
@ -179,7 +179,7 @@ $(LIB_NAME): $(DEF_FILE) $(LIBCOS)
|
||||||
$(AR) rcv temp.a $(LIBCOS)
|
$(AR) rcv temp.a $(LIBCOS)
|
||||||
mv temp.a $(LIB_NAME)
|
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)
|
new-$(LIB_NAME): $(DEF_FILE) $(LIBCOS)
|
||||||
$(DLLTOOL) --as=$(AS) --dllname new-$(DLL_NAME) --def $(DEF_FILE) --output-lib temp.a
|
$(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
|
Makefile: cygwin.din
|
||||||
|
|
||||||
$(DEF_FILE): cygwin.din config.status
|
$(DEF_FILE): cygwin.din config.status
|
||||||
|
|
Loading…
Reference in New Issue