aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/Makefile.in
blob: 874fb8f7b5551a31505971187182a7f22fbfb393 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
# Makefile for the base tests for GDB.
# Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc.

# This file is part of GDB.

# GDB is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.

# GDB is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

srcdir = .
prefix = /usr/local
program_transform_name =

exec_prefix = $(prefix)
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
tooldir = $(libdir)/$(target_alias)

datadir = $(exec_prefix)/lib/dejagnu
mandir = $(prefix)/man
man1dir = $(mandir)/man1
man2dir = $(mandir)/man2
man3dir = $(mandir)/man3
man4dir = $(mandir)/man4
man5dir = $(mandir)/man5
man6dir = $(mandir)/man6
man7dir = $(mandir)/man7
man8dir = $(mandir)/man8
man9dir = $(mandir)/man9
infodir = $(prefix)/info
includedir = $(prefix)/include
gxx_includedir = $(tooldir)/g++-include
docdir = $(datadir)/doc
targetdir = $(datadir)/$(target_alias)

SHELL = /bin/sh

INSTALL = install -c
INSTALL_PROGRAM = $(INSTALL)
INSTALL_DATA = $(INSTALL)

CFLAGS = -g

RUNTESTFLAGS = 

LINK=		ln -s

EXPECT = ` \
  if [ -f $${rootme}/../../../expect/expect ] ; then \
    echo $${rootme}/../../../expect/expect ; \
  else \
    echo expect ; \
  fi`

RUNTEST = ` \
  if [ -f $${rootme}/../../dejagnu/site.exp ] ; then \
    echo $${rootme}/../../dejagnu/runtest ; \
  else \
    if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
      echo runtest; \
    else \
      t='$(program_transform_name)'; echo runtest | sed -e '' $$t; \
    fi; \
  fi`

CC = ` \
  if [ -f $${rootme}/../../../gcc/xgcc ] ; then \
    echo $${rootme}/../../../gcc/xgcc -B$${rootme}/../../../gcc/; \
  else \
    if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
      echo gcc; \
    else \
      t='$(program_transform_name)'; echo gcc | sed -e '' $$t; \
    fi; \
  fi`

#### host, target, and site specific Makefile frags come in here.

EXECUTABLES =  \
	bitfields  \
	break  \
	callfuncs  \
	coremaker  \
	exprs  \
	funcargs  \
	interrupt  \
	langs  \
	list  \
	mips_pro  \
	nodebug  \
	opaque  \
	printcmds  \
	ptype  \
	recurse  \
	return  \
	run  \
	scope  \
	setvar  \
	sigall \
	signals  \
	twice  \
	watchpoint  \
	whatis  \
	$(CROSS_EXECUTABLES)

# List of test executables that we have available.  They are kept in
# uuencoded format to avoid SCCS/RCS problems with binary files.

CROSS_EXECUTABLES =  \
	i486-elf  \
	i860-elf  \
	m68k-elf  \
	m68k-aout  \
	m68k-aout2  \
	mips-ecoff  \
	sparc-aout  \
	sparc-elf

.c.o:
	$(CC) -c $(CFLAGS) $<
	$(CC) -E $(CFLAGS) $(srcdir)/compiler.c >$*.tmp
	mv $*.tmp $*.ci

all:	$(EXECUTABLES)

run: run.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o run run.o $(LIBS)

whatis: whatis.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o whatis whatis.o $(LIBS)

.PRECIOUS: whatis

ptype: ptype.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o ptype ptype.o $(LIBS)

setvar: setvar.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o setvar setvar.o $(LIBS)

exprs: exprs.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o exprs exprs.o $(LIBS)

break: break.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o break break.o $(LIBS)

signals: signals.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o signals signals.o $(LIBS)

sigall: sigall.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o sigall sigall.o $(LIBS)

twice: twice.c
	echo '#include "twice.c"' >twice-tmp.c
	$(CC) $(CFLAGS) $(LDFLAGS) -I$(srcdir) -o twice twice-tmp.c $(LIBS)
	rm -f twice-tmp.c

watchpoint: watchpoint.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o watchpoint watchpoint.o $(LIBS)

recurse: recurse.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o recurse recurse.o $(LIBS)

opaque: opaque0.o opaque1.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o opaque opaque0.o opaque1.o $(LIBS)

coremaker: coremaker.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o coremaker coremaker.o $(LIBS)

nodebug: nodebug.o
	$(CC) $(LDFLAGS) $(NODEBUG_FLAGS) -o nodebug nodebug.o $(LIBS)

# This gets compiled *without* -g, so don't add CFLAGS here.

nodebug.o: nodebug.c
	$(CC) -c $(srcdir)/nodebug.c
	$(CC) -E $(srcdir)/compiler.c >nodebug.tmp
	mv nodebug.tmp nodebug.ci

# For VPATH and Sun Make, we have to make explicit dependencies.
# DEC make doesn't seem to understand the ".u" dependency w/VPATH either.

m68k-elf: $(srcdir)/m68k-elf.u
	uudecode $(srcdir)/m68k-elf.u

m68k-aout: $(srcdir)/m68k-aout.u
	uudecode $(srcdir)/m68k-aout.u

m68k-aout2: $(srcdir)/m68k-aout2.u
	uudecode $(srcdir)/m68k-aout2.u

mips-ecoff: $(srcdir)/mips-ecoff.u
	uudecode $(srcdir)/mips-ecoff.u

i486-elf: $(srcdir)/i486-elf.u
	uudecode $(srcdir)/i486-elf.u

sparc-aout: $(srcdir)/sparc-aout.u
	uudecode $(srcdir)/sparc-aout.u

i860-elf: $(srcdir)/i860-elf.u
	uudecode $(srcdir)/i860-elf.u

sparc-elf: $(srcdir)/sparc-elf.u
	uudecode $(srcdir)/sparc-elf.u

list: list0.o list1.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o list list0.o list1.o $(LIBS)

scope: scope0.o scope1.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o scope scope0.o scope1.o $(LIBS)

langs: langs0.o langs1.o langs2.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o langs langs0.o langs1.o langs2.o $(LIBS)

bitfields: bitfields.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o bitfields.tmp bitfields.o $(LIBS)
	mv bitfields.tmp bitfields

.PRECIOUS: bitfields

funcargs: funcargs.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o funcargs funcargs.o $(LIBS)

return: return.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o return return.o $(LIBS)

mips_pro: mips_pro.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o mips_pro mips_pro.o $(LIBS)

printcmds: printcmds.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o printcmds printcmds.o $(LIBS)

# Try compiling this with prototypes, if that fails maybe the compiler
# is a pre-ANSI compiler, in which case don't use prototypes.
callfuncs.o: callfuncs.c
	(echo set prototypes 1 >callfuncs.tmp; \
	  $(CC) -c $(CFLAGS) $(srcdir)/callfuncs.c 2>/dev/null) \
	|| (echo set prototypes 0 >callfuncs.tmp; \
	  $(CC) -c $(CFLAGS) -DNO_PROTOTYPES $(srcdir)/callfuncs.c)
	$(CC) $(CFLAGS) -E $(srcdir)/compiler.c >>callfuncs.tmp
	mv callfuncs.tmp callfuncs.ci

callfuncs: callfuncs.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o callfuncs callfuncs.o $(LIBS)

interrupt: interrupt.o
	$(CC) $(CFLAGS) $(LDFLAGS) -o interrupt interrupt.o $(LIBS)

.NOEXPORT:

INFODIRS=doc

info:

install-info:

dvi:

install:

uninstall: force

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 host_triplet ${host_canonical}" >> ./tmp0
	@echo "set target_triplet ${target_canonical}" >> ./tmp0
	@echo "set srcdir ${srcdir}" >> ./tmp0
		@echo "set objdir `pwd`" >> ./tmp0
	@echo "set tool gdb" >> ./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?

installcheck:
check: site.exp all just-check
just-check:
	rootme=`pwd`; export rootme; \
	srcdir=${srcdir} ; export srcdir ; \
	EXPECT=${EXPECT} ; export EXPECT ; \
	if [ -f $${rootme}/../../expect/expect ] ; then  \
	  TCL_LIBRARY=$${srcdir}/../../tcl/library ; \
	  export TCL_LIBRARY ; fi ; \
	$(RUNTEST) $(RUNTESTFLAGS) --tool gdb --srcdir $(srcdir)

clean mostlyclean:
	-rm -f *~ *.o a.out xgdb *.x $(EXECUTABLES) *.ci *.tmp
	-rm -f core core.coremaker coremaker.core corefile

distclean realclean: clean
	-rm -f *~ core *.log *.plog *.sum *.psum site.*
	-rm -f Makefile config.status *-init.exp
	-rm -fr *.log summary detail *.plog *.sum *.psum site.*

Makefile : $(srcdir)/Makefile.in $(srcdir)/configure.in $(host_makefile_frag) $(target_makefile_frag)
	$(SHELL) ./config.status