92c16f200fc3ef1b2022b3c9f462a2fd9877fbc7
[deliverable/binutils-gdb.git] / gdb / testsuite / Makefile.in
1 # Makefile for regression testing the GNU debugger.
2 # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
3
4 # This file is part of GDB.
5
6 # GDB is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2, or (at your option)
9 # any later version.
10
11 # GDB is distributed in the hope that it will be useful,
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.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; see the file COPYING. If not, write to
18 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 srcdir = .
21 prefix = /usr/local
22 program_transform_name =
23
24 exec_prefix = $(prefix)
25 bindir = $(exec_prefix)/bin
26 libdir = $(exec_prefix)/lib
27 tooldir = $(libdir)/$(target_alias)
28
29 datadir = $(exec_prefix)/lib/dejagnu
30 mandir = $(prefix)/man
31 man1dir = $(mandir)/man1
32 man2dir = $(mandir)/man2
33 man3dir = $(mandir)/man3
34 man4dir = $(mandir)/man4
35 man5dir = $(mandir)/man5
36 man6dir = $(mandir)/man6
37 man7dir = $(mandir)/man7
38 man8dir = $(mandir)/man8
39 man9dir = $(mandir)/man9
40 infodir = $(prefix)/info
41 includedir = $(prefix)/include
42 gxx_includedir = $(tooldir)/g++-include
43 docdir = $(datadir)/doc
44 targetdir = $(datadir)/$(target_alias)
45
46 SHELL = /bin/sh
47
48 INSTALL = install -c
49 INSTALL_PROGRAM = $(INSTALL)
50 INSTALL_DATA = $(INSTALL)
51
52 CFLAGS = -g
53 # start-sanitize-chill
54 CHILLFLAGS = $(CFLAGS)
55 # end-sanitize-chill
56 # This should probably be consistent with the top-level Makefile.in,
57 # gdb/Makefile.in, and gdb/testsuite/gdb.t2*/Makefile.in, so that "make check"
58 # has the same effect no matter where it is run.
59 CXXFLAGS = -g -O
60
61 LINK= ln -s
62 SUBDIRS=
63
64 EXPECT = `if [ -f $${rootme}/../../expect/expect ] ; then \
65 echo $${rootme}/../../expect/expect ; \
66 else echo expect ; fi`
67
68 RUNTEST = $(RUNTEST_FOR_TARGET)
69
70 RUNTESTFLAGS =
71
72 RUNTEST_FOR_TARGET = `\
73 if [ -f $${srcdir}/../../dejagnu/runtest ]; then \
74 echo $${srcdir}/../../dejagnu/runtest; \
75 else \
76 if [ "$(host_canonical)" = "$(target_canonical)" ]; then \
77 echo runtest; \
78 else \
79 t='$(program_transform_name)'; echo runtest | sed -e '' $$t; \
80 fi; \
81 fi`
82
83 CC_FOR_TARGET = ` \
84 if [ -f $${rootme}/../../gcc/xgcc ] ; then \
85 if [ -f $${rootme}/../../newlib/Makefile ]; then \
86 echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/ -idirafter $${rootme}/../../newlib/targ-include -idirafter $${rootsrc}/../../newlib/libc/include -nostdinc; \
87 else \
88 echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/; \
89 fi; \
90 else \
91 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
92 echo $(CC); \
93 else \
94 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
95 fi; \
96 fi`
97
98 CXX = gcc
99 CXX_FOR_TARGET = ` \
100 if [ -f $${rootme}/../../gcc/xgcc ] ; then \
101 if [ -f $${rootme}/../../newlib/Makefile ]; then \
102 echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/ -idirafter $${rootme}/../../newlib/targ-include -idirafter $${rootsrc}/../../newlib/libc/include -nostdinc; \
103 else \
104 echo $${rootme}/../../gcc/xgcc -B$${rootme}/../../gcc/; \
105 fi; \
106 else \
107 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
108 echo $(CXX); \
109 else \
110 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
111 fi; \
112 fi`
113
114 # start-sanitize-chill
115 CHILLFLAGS = $(CFLAGS)
116 CHILL = gcc
117 CHILL_FOR_TARGET = ` \
118 if [ -f $${rootme}/../../gcc/Makefile ] ; then \
119 echo $${rootme}/../../gcc/xgcc -B$${rootme}../../gcc/; \
120 else \
121 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
122 echo gcc; \
123 else \
124 t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
125 fi; \
126 fi`
127 CHILL = $(CHILL_FOR_TARGET)
128
129 CHILL_LIB = ` \
130 if [ -f $${rootme}/../../gcc/ch/runtime/libchill.a ] ; then \
131 echo $${rootme}/../../gcc/ch/runtime/chillrt0.o \
132 $${rootme}/../../gcc/ch/runtime/libchill.a; \
133 else \
134 echo -lchill; \
135 fi`
136 # end-sanitize-chill
137
138 GDB = ` \
139 if [ -f $${rootme}/../gdb ] ; \
140 then echo $${rootme}|sed -e 's@/[^/]*$$@@'|sed -e 's@$$@/gdb@' ; \
141 else echo gdb; \
142 fi`
143
144 GDBFLAGS = -nx
145
146 #### host, target, and site specific Makefile frags come in here.
147
148 # The use of $$(x_FOR_TARGET) reduces the command line length by not
149 # duplicating the lengthy definition.
150
151 TARGET_FLAGS_TO_PASS = \
152 "prefix=$(prefix)" \
153 "exec_prefix=$(exec_prefix)" \
154 "against=$(against)" \
155 'CC=$$(CC_FOR_TARGET)' \
156 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
157 "CFLAGS=$(CFLAGS)" \
158 $(start-sanitize-chill) \
159 "CHILLFLAGS=$(CHILLFLAGS)" \
160 'CHILL=$$(CHILL_FOR_TARGET)' \
161 "CHILL_FOR_TARGET=$(CHILL_FOR_TARGET)" \
162 "CHILL_LIB=$(CHILL_LIB)" \
163 $(end-sanitize-chill) \
164 'CXX=$$(CXX_FOR_TARGET)' \
165 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
166 "CXXFLAGS=$(CXXFLAGS)" \
167 "MAKEINFO=$(MAKEINFO)" \
168 "INSTALL=$(INSTALL)" \
169 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
170 "INSTALL_DATA=$(INSTALL_DATA)" \
171 "LDFLAGS=$(LDFLAGS)" \
172 "LIBS=$(LIBS)" \
173 "RUNTEST=$(RUNTEST)" \
174 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
175 "BISON=$(BISON)"
176
177 all: subdirs
178
179 .NOEXPORT:
180 INFODIRS=doc
181 info:
182 install-info:
183 dvi:
184
185 install:
186
187 uninstall: force
188
189 site.exp: ./config.status Makefile
190 @echo "Making a new config file..."
191 -@rm -f ./tmp?
192 @touch site.exp
193 -@mv site.exp site.bak
194 @echo "## these variables are automatically generated by make ##" > ./tmp0
195 @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
196 @echo "# add them to the last section" >> ./tmp0
197 @echo "set GDBFLAGS \"${GDBFLAGS}\"" >> ./tmp0
198 @echo "set host_triplet ${host_canonical}" >> ./tmp0
199 @echo "set target_triplet ${target_canonical}" >> ./tmp0
200 @echo "set srcdir ${srcdir}" >> ./tmp0
201 @echo "set tool gdb" >> ./tmp0
202 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
203 @cat ./tmp0 > site.exp
204 @cat site.bak | sed \
205 -e '1,/^## All variables above are.*##/ d' >> site.exp
206 -@rm -f ./tmp?
207
208 installcheck:
209
210 check: site.exp all just-check
211
212 just-check:
213 rootme=`pwd`; export rootme; \
214 srcdir=${srcdir} ; export srcdir ; \
215 EXPECT=${EXPECT} ; export EXPECT ; \
216 if [ -f $${rootme}/../../expect/expect ] ; then \
217 TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
218 export TCL_LIBRARY ; fi ; \
219 $(RUNTEST) $(RUNTESTFLAGS) GDB=$(GDB)
220
221 subdir_do: force
222 @for i in $(DODIRS); do \
223 if [ -d ./$$i ] ; then \
224 if (rootme=`pwd`/ ; export rootme ; \
225 rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
226 cd ./$$i; \
227 $(MAKE) $(TARGET_FLAGS_TO_PASS) $(DO)) ; then true ; \
228 else exit 1 ; fi ; \
229 else true ; fi ; \
230 done
231
232 force:;
233
234
235 subdirs:
236 for dir in ${SUBDIRS}; \
237 do \
238 echo "$$dir:"; \
239 if [ -d $$dir ]; then \
240 (rootme=`pwd`/ ; export rootme ; \
241 rootsrc=`cd $(srcdir); pwd`/ ; export rootsrc ; \
242 cd $$dir; $(MAKE) $(TARGET_FLAGS_TO_PASS)); \
243 fi; \
244 done
245
246 clean mostlyclean:
247 -rm -f *~ core *.o a.out xgdb *.x
248 for dir in ${SUBDIRS}; \
249 do \
250 echo "$$dir:"; \
251 if [ -d $$dir ]; then \
252 (cd $$dir; $(MAKE) clean); \
253 fi; \
254 done
255
256 distclean realclean: clean
257 -rm -f *~ core *.log *.plog *.sum *.psum site.*
258 -rm -f Makefile config.status *-init.exp
259 -rm -fr *.log summary detail *.plog *.sum *.psum site.*
260 for dir in ${SUBDIRS}; \
261 do \
262 echo "$$dir:"; \
263 if [ -d $$dir ]; then \
264 (cd $$dir; $(MAKE) distclean); \
265 fi; \
266 done
267
268 Makefile : $(srcdir)/Makefile.in $(srcdir)/configure.in $(host_makefile_frag) $(target_makefile_frag)
269 $(SHELL) ./config.status
This page took 0.034484 seconds and 4 git commands to generate.