2000-09-03 05:58:18 +02:00
|
|
|
|
# Makefile.in for Cygwin's testsuite.
|
2003-07-06 23:45:21 +02:00
|
|
|
|
# Copyright 2000, 2001, 2002, 2003 Red Hat, Inc.
|
2000-09-03 05:58:18 +02:00
|
|
|
|
#
|
|
|
|
|
# This file is part of Cygwin.
|
|
|
|
|
#
|
|
|
|
|
# This software is a copyrighted work licensed under the terms of the
|
|
|
|
|
# Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
|
# details.
|
|
|
|
|
|
|
|
|
|
# This makefile requires GNU make.
|
|
|
|
|
|
|
|
|
|
SHELL:=@SHELL@
|
|
|
|
|
srcdir:=@srcdir@
|
|
|
|
|
objdir:=.
|
|
|
|
|
libltp_srcdir=$(srcdir)/libltp
|
|
|
|
|
|
|
|
|
|
VPATH:=$(srcdir):$(libltp_srcdir)/lib
|
|
|
|
|
|
|
|
|
|
target_alias:=@target_alias@
|
|
|
|
|
build_alias:=@build_alias@
|
|
|
|
|
host_alias:=@host_alias@
|
|
|
|
|
prefix:=@prefix@
|
|
|
|
|
|
|
|
|
|
program_transform_name:=@program_transform_name@
|
|
|
|
|
exec_prefix:=@exec_prefix@
|
|
|
|
|
bindir:=@bindir@
|
|
|
|
|
libdir:=@libdir@
|
|
|
|
|
ifeq ($(target_alias),$(host_alias))
|
|
|
|
|
ifeq ($(build_alias),$(host_alias))
|
|
|
|
|
tooldir:=$(exec_prefix)
|
|
|
|
|
else
|
|
|
|
|
tooldir:=$(exec_prefix)/$(target_alias)
|
|
|
|
|
endif
|
|
|
|
|
else
|
|
|
|
|
tooldir:=$(exec_prefix)/$(target_alias)
|
|
|
|
|
endif
|
|
|
|
|
datadir:=@datadir@
|
|
|
|
|
infodir:=@infodir@
|
|
|
|
|
includedir:=@includedir@
|
|
|
|
|
|
|
|
|
|
TESTSUP_INCLUDES:=-I$(libltp_srcdir)/include
|
|
|
|
|
|
|
|
|
|
INSTALL:=@INSTALL@
|
|
|
|
|
INSTALL_PROGRAM:=@INSTALL_PROGRAM@
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# --enable options from configure
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
CC:=@CC@
|
|
|
|
|
# FIXME: Which is it, CC or CC_FOR_TARGET?
|
|
|
|
|
CC_FOR_TARGET:=$(CC)
|
2000-09-04 21:04:53 +02:00
|
|
|
|
ifneq (,$(CFLAGS))
|
|
|
|
|
override CFLAGS+= -MD $(TESTSUP_INCLUDES)
|
|
|
|
|
else
|
|
|
|
|
CFLAGS:=@CFLAGS@ -MD $(TESTSUP_INCLUDES)
|
|
|
|
|
endif
|
2000-09-03 05:58:18 +02:00
|
|
|
|
CXXFLAGS:=@CXXFLAGS@
|
|
|
|
|
|
|
|
|
|
AR:=@AR@
|
|
|
|
|
AR_FLAGS:=qv
|
|
|
|
|
RANLIB:=@RANLIB@
|
|
|
|
|
LD:=@LD@
|
|
|
|
|
DLLTOOL:=@DLLTOOL@
|
|
|
|
|
WINDRES:=@WINDRES@
|
|
|
|
|
AS:=@AS@
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# Include common definitions for winsup directory
|
|
|
|
|
#
|
|
|
|
|
include $(srcdir)/../Makefile.common
|
|
|
|
|
|
2003-03-09 20:46:29 +01:00
|
|
|
|
override CC:=$(CC) $(GCC_INCLUDE)
|
|
|
|
|
export CC
|
|
|
|
|
|
2000-09-03 05:58:18 +02:00
|
|
|
|
INSTALL_DATA:=$(SHELL) $(updir1)/install-sh -c
|
|
|
|
|
|
|
|
|
|
# Setup the testing framework, if you have one
|
|
|
|
|
EXPECT = `if [ -f $${rootme}/../../expect/expect$(EXEEXT) ] ; then \
|
|
|
|
|
echo $${rootme}/../../expect/expect$(EXEEXT) ; \
|
|
|
|
|
else echo expect ; fi`
|
|
|
|
|
|
2002-08-26 04:53:24 +02:00
|
|
|
|
RUNTEST = `if [ -f ${srcdir}/../../dejagnu/runtest ] ; then \
|
|
|
|
|
echo ${srcdir}/../../dejagnu/runtest ; \
|
2000-09-03 05:58:18 +02:00
|
|
|
|
else echo runtest; fi`
|
|
|
|
|
RUNTESTFLAGS =
|
|
|
|
|
|
|
|
|
|
ifdef VERBOSE
|
|
|
|
|
RUNTESTFLAGS = -v
|
|
|
|
|
endif
|
|
|
|
|
|
2003-03-09 18:03:05 +01:00
|
|
|
|
RUNTIME=$(cygwin_build)/cygwin0.dll $(cygwin_build)/libcygwin0.a
|
2000-09-03 05:58:18 +02:00
|
|
|
|
|
|
|
|
|
TESTSUP_LIB_NAME:=libltp.a
|
|
|
|
|
TESTSUP_OFILES:=${sort ${addsuffix .o,${basename ${notdir ${wildcard $(libltp_srcdir)/lib/*.c}}}}}
|
|
|
|
|
|
2003-02-08 03:56:49 +01:00
|
|
|
|
override ALL_CFLAGS:=${filter-out -O%,$(ALL_CFLAGS)}
|
|
|
|
|
override COMPILE_CC:=${filter-out -O%,$(COMPILE_CC)}
|
|
|
|
|
override CFLAGS:=${filter-out -O%,$(CFLAGS)}
|
2003-03-09 20:46:29 +01:00
|
|
|
|
export CFLAGS
|
2003-02-08 03:56:49 +01:00
|
|
|
|
|
2000-09-03 05:58:18 +02:00
|
|
|
|
.PHONY: all force dll_ofiles install all_target install_target all_host install_host
|
|
|
|
|
|
|
|
|
|
.SUFFIXES:
|
|
|
|
|
.SUFFIXES: .c .cc .def .a .o .d
|
|
|
|
|
|
|
|
|
|
all_host=@all_host@
|
|
|
|
|
install_host=@install_host@
|
|
|
|
|
|
2001-11-04 06:14:16 +01:00
|
|
|
|
all: $(TESTSUP_LIB_NAME)
|
2000-09-03 05:58:18 +02:00
|
|
|
|
|
|
|
|
|
force:
|
|
|
|
|
|
|
|
|
|
install:
|
|
|
|
|
|
|
|
|
|
install_host:
|
|
|
|
|
|
|
|
|
|
clean:
|
2003-07-06 21:25:40 +02:00
|
|
|
|
-rm -f *.o *.dll *.a *.exp junk *.bak *.base *.exe testsuite/* *.d *.dat
|
2000-09-03 05:58:18 +02:00
|
|
|
|
|
|
|
|
|
maintainer-clean realclean: clean
|
|
|
|
|
@echo "This command is intended for maintainers to use;"
|
|
|
|
|
@echo "it deletes files that may require special tools to rebuild."
|
|
|
|
|
-rm -fr configure
|
|
|
|
|
|
|
|
|
|
# Rule to build libltp.a
|
|
|
|
|
|
|
|
|
|
$(TESTSUP_LIB_NAME): $(TESTSUP_OFILES)
|
|
|
|
|
$(AR) rcv temp.a $(TESTSUP_OFILES)
|
|
|
|
|
mv temp.a $(TESTSUP_LIB_NAME)
|
|
|
|
|
|
|
|
|
|
$(RUNTIME) : $(cygwin_build)/Makefile
|
|
|
|
|
@$(MAKE) --no-print-dir -C $(@D) $(@F)
|
|
|
|
|
|
|
|
|
|
# Rule to make stub library used by "make check"
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# 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 runtime_root \"\$$rootme/../cygwin\"" >> ./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.
|
2003-01-23 22:14:56 +01:00
|
|
|
|
@echo "set CFLAGS \"$(ALL_CFLAGS)\"" >> ./tmp0
|
2000-09-03 05:58:18 +02:00
|
|
|
|
echo "set tmpdir $(objdir)/testsuite" >> ./tmp0
|
|
|
|
|
@echo "set ltp_includes \"$(libltp_srcdir)/include\"" >> ./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
|
|
|
|
|
|
2003-03-09 18:03:05 +01:00
|
|
|
|
# Note: we set the PATH so that we can pick up cygwin0.dll
|
2000-09-03 05:58:18 +02:00
|
|
|
|
|
2003-01-24 02:30:43 +01:00
|
|
|
|
check: $(TESTSUP_LIB_NAME) $(RUNTIME) cygrun.exe testsuite/site.exp
|
2000-09-03 05:58:18 +02:00
|
|
|
|
cd testsuite; \
|
|
|
|
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
2002-08-26 04:53:24 +02:00
|
|
|
|
if [ -f $(bupdir2)/expect/expect ] ; then \
|
2003-01-22 04:58:28 +01:00
|
|
|
|
TCL_LIBRARY=`cd .. ; cd ${srcdir}/../../tcl/library ; pwd` ; \
|
2000-09-03 05:58:18 +02:00
|
|
|
|
export TCL_LIBRARY ; fi ; \
|
2002-08-26 04:53:24 +02:00
|
|
|
|
PATH=$(bupdir)/cygwin:$${PATH} ;\
|
2005-06-06 23:13:31 +02:00
|
|
|
|
$(RUNTEST) --tool winsup $(RUNTESTFLAGS) ;\
|
2003-01-22 16:18:58 +01:00
|
|
|
|
|
|
|
|
|
cygrun.o: cygrun.c
|
|
|
|
|
$(CC) $(MINGW_CFLAGS) -o $@ -c $<
|
|
|
|
|
|
|
|
|
|
cygrun.exe : cygrun.o
|
|
|
|
|
$(CC) ${MINGW_LDFLAGS} -mno-cygwin -o $@ $<
|