Add install-strip to sim/
[deliverable/binutils-gdb.git] / sim / testsuite / Makefile.in
CommitLineData
c906108c 1# Makefile for regression testing the GNU debugger.
42a4f53d 2# Copyright (C) 1997-2019 Free Software Foundation, Inc.
c906108c
SS
3
4# This file is part of GDB.
5
4744ac1b 6# This program is free software; you can redistribute it and/or modify
c906108c 7# it under the terms of the GNU General Public License as published by
4744ac1b
JB
8# the Free Software Foundation; either version 3 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
c906108c
SS
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
4744ac1b 15#
c906108c 16# You should have received a copy of the GNU General Public License
4744ac1b 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
18
19VPATH = @srcdir@
20srcdir = @srcdir@
21prefix = @prefix@
22exec_prefix = @exec_prefix@
23
24build_canonical = @build@
25build_alias = @build_alias@
26host_canonical = @host@
27host_alias = @host_alias@
28target_canonical = @target@
29target_alias = @target_alias@
30program_transform_name = @program_transform_name@
31
119da465 32arch = @sim_arch@
c906108c
SS
33
34SHELL = /bin/sh
35SUBDIRS = @subdirs@
36RPATH_ENVVAR = @RPATH_ENVVAR@
37
38EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \
39 echo $${rootme}/../../expect/expect ; \
40 else echo expect ; fi`
41
42RUNTEST = `if [ -f $${srcdir}/../../dejagnu/runtest ] ; then \
43 echo $${srcdir}/../../dejagnu/runtest ; else echo runtest; \
44 fi`
45
46RUNTESTFLAGS =
47
48#### host, target, and site specific Makefile frags come in here.
49
50# The use of $$(x_FOR_TARGET) reduces the command line length by not
51# duplicating the lengthy definition.
52
53TARGET_FLAGS_TO_PASS = \
54 "prefix=$(prefix)" \
55 "exec_prefix=$(exec_prefix)" \
56 "against=$(against)" \
57 'CC=$$(CC_FOR_TARGET)' \
58 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
59 "CFLAGS=$(TESTSUITE_CFLAGS)" \
60 "CHILLFLAGS=$(CHILLFLAGS)" \
61 'CHILL=$$(CHILL_FOR_TARGET)' \
62 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
63 "CHILL_LIB=$(CHILL_LIB)" \
64 'CXX=$$(CXX_FOR_TARGET)' \
65 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
66 "CXXFLAGS=$(CXXFLAGS)" \
67 "MAKEINFO=$(MAKEINFO)" \
68 "INSTALL=$(INSTALL)" \
69 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
70 "INSTALL_DATA=$(INSTALL_DATA)" \
71 "RUNTESTFLAGS=$(RUNTESTFLAGS)"
72
73# "RUNTEST=$(RUNTEST)" \
74
75all:
76 @echo "Nothing to be done for all..."
77
78.NOEXPORT:
79info:
80install-info:
81dvi:
82
83install:
78aa740b 84install-strip:
c906108c
SS
85
86uninstall: force
87
88installcheck:
89
90check: check-DEJAGNU check-recursive
91
92#test1:
93check-recursive:
94 @for i in . ${SUBDIRS}; do \
95 if [ $$i = . ] ; then continue ; fi ; \
96 if [ -d ./$$i ] ; then \
97 if (rootme=`pwd`/ ; export rootme ; \
98 rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
99 echo "check recursively into $$i directory..."; \
100 cd ./$$i; \
101 $(MAKE) $(TARGET_FLAGS_TO_PASS) check) ; then true ; \
102 else exit 1 ; fi ; \
103 else true ; fi ; \
104 done
105
106#test2:
107check-DEJAGNU: site.exp
108 echo "Dejagnu-checking in `pwd` directory ..."
109 rootme=`pwd`; export rootme; echo rootme = $$rootme; \
110 srcdir=`cd ${srcdir}; pwd`; export srcdir ; echo srcdir = $$srcdir; \
111 EXPECT=${EXPECT} ; export EXPECT ; echo EXPECT = $$EXPECT; \
112 if [ -f $$rootme/../../expect/expect ]; then \
113 TCL_LIBRARY=`cd $$srcdir/../../tcl/library && pwd`; \
114 export TCL_LIBRARY; \
115 fi; \
116 echo TCL_LIBRARY = $$TCL_LIBRARY; \
117 runtest=$(RUNTEST); echo runtest = $$runtest; \
118 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
119 $$runtest $(RUNTESTFLAGS); \
120 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
121 fi
122
123
124site.exp: Makefile
125 @echo 'Making a new site.exp file...'
126 -@rm -f site.bak
127 @echo '## these variables are automatically generated by make ##' > $@-t
128 @echo '# Do not edit here. If you wish to override these values' >> $@-t
129 @echo '# edit the last section' >> $@-t
130 @echo 'set tool sim' >> $@-t
131 @echo 'set srcdir $(srcdir)' >> $@-t
132 @echo 'set objdir' `pwd` >> $@-t
133 @echo 'set arch $(arch)' >> $@-t
134 @echo 'set build_alias $(build_alias)' >> $@-t
135 @echo 'set build_triplet $(build_canonical)' >> $@-t
136 @echo 'set host_alias $(host_alias)' >> $@-t
137 @echo 'set host_triplet $(host_canonical)' >> $@-t
138 @echo 'set target_alias $(target_alias)' >> $@-t
139 @echo 'set target_triplet $(target_canonical)' >> $@-t
140 @echo '## All variables above are generated by configure. Do Not Edit ##' >> $@-t
141 -@sed '1,/^## All variables above are.*##/ d' site.exp >> $@-t
142 -@mv site.exp site.bak
143 @mv $@-t site.exp
144
145force:;
146
147clean mostlyclean:
148 -rm -f *~ core *.o a.out xgdb *.x *.grt
149 -rm -f *.rum *.c *.dif *.*out
150 if [ x"${SUBDIRS}" != x ] ; then \
151 for dir in ${SUBDIRS}; \
152 do \
153 echo "$$dir:"; \
154 if [ -d $$dir ]; then \
155 (cd $$dir; $(MAKE) clean); \
156 fi; \
157 done ; \
158 else true; fi
159
160distclean maintainer-clean realclean: clean
161 -rm -f *~ core
162 -rm -f Makefile config.status *-init.exp
163 -rm -fr *.log summary detail *.plog *.sum *.psum site.*
164 if [ x"${SUBDIRS}" != x ] ; then \
165 for dir in ${SUBDIRS}; \
166 do \
167 echo "$$dir:"; \
168 if [ -d $$dir ]; then \
169 (cd $$dir; $(MAKE) distclean); \
170 fi; \
171 done ; \
172 else true; fi
173
174Makefile : Makefile.in config.status
175 $(SHELL) config.status
176
177config.status: $(srcdir)/configure
178 $(SHELL) ./config.status --recheck
179# FIXME: Requires --enable-maintainer-mode, which one could add, but
180# it's provided by automake. Maybe switch to automake someday.
181#$(srcdir)/configure: @MAINT@ $(srcdir)/configure.in
182# cd $(srcdir) && autoconf
This page took 0.882753 seconds and 4 git commands to generate.