1 |
38 |
julius |
## Process this file with automake to generate Makefile.in
|
2 |
|
|
|
3 |
|
|
AUTOMAKE_OPTIONS = 1.8 cygnus dejagnu
|
4 |
|
|
ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
|
5 |
|
|
|
6 |
|
|
SUBDIRS = doc po
|
7 |
|
|
# Automake should figure this out on its own. It doesn't, because
|
8 |
|
|
# of the "cygnus" option. But distclean still wants it.
|
9 |
|
|
DIST_SUBDIRS = $(SUBDIRS)
|
10 |
|
|
|
11 |
|
|
tooldir = $(exec_prefix)/$(target_alias)
|
12 |
|
|
|
13 |
|
|
YACC = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo @YACC@ ; fi`
|
14 |
|
|
LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo @LEX@ ; fi`
|
15 |
|
|
|
16 |
|
|
# We have to set this, because autoconf 2.59 does not substitute YFLAGS.
|
17 |
|
|
# Autoconf 2.61 does, so this can be removed when we upgrade.
|
18 |
|
|
YFLAGS =
|
19 |
|
|
|
20 |
|
|
WARN_CFLAGS = @WARN_CFLAGS@
|
21 |
|
|
NO_WERROR = @NO_WERROR@
|
22 |
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
23 |
|
|
|
24 |
|
|
MKDEP = gcc -MM
|
25 |
|
|
|
26 |
|
|
TARG_CPU = @target_cpu_type@
|
27 |
|
|
TARG_CPU_C = $(srcdir)/config/tc-@target_cpu_type@.c
|
28 |
|
|
TARG_CPU_O = tc-@target_cpu_type@.o
|
29 |
|
|
TARG_CPU_H = $(srcdir)/config/tc-@target_cpu_type@.h
|
30 |
|
|
OBJ_FORMAT_C = $(srcdir)/config/obj-@obj_format@.c
|
31 |
|
|
OBJ_FORMAT_O = obj-@obj_format@.o
|
32 |
|
|
OBJ_FORMAT_H = $(srcdir)/config/obj-@obj_format@.h
|
33 |
|
|
TARG_ENV_H = $(srcdir)/config/te-@te_file@.h
|
34 |
|
|
ATOF_TARG_C = $(srcdir)/config/atof-@atof@.c
|
35 |
|
|
ATOF_TARG_O = atof-@atof@.o
|
36 |
|
|
|
37 |
|
|
# use @target_cpu_type@ for refering to configured target name
|
38 |
|
|
IT_HDRS=itbl-parse.h $(srcdir)/itbl-ops.h
|
39 |
|
|
IT_SRCS=itbl-parse.c itbl-lex.c $(srcdir)/itbl-ops.c
|
40 |
|
|
IT_DEPS=$(srcdir)/itbl-parse.y $(srcdir)/itbl-lex.l $(srcdir)/config/itbl-@target_cpu_type@.h
|
41 |
|
|
IT_OBJS=itbl-parse.o itbl-lex.o itbl-ops.o
|
42 |
|
|
|
43 |
|
|
# CPU types. This is only used for dependency information.
|
44 |
|
|
|
45 |
|
|
CPU_TYPES = \
|
46 |
|
|
alpha \
|
47 |
|
|
arc \
|
48 |
|
|
arm \
|
49 |
|
|
avr \
|
50 |
|
|
bfin \
|
51 |
|
|
cr16 \
|
52 |
|
|
cris \
|
53 |
|
|
crx \
|
54 |
|
|
d10v \
|
55 |
|
|
d30v \
|
56 |
|
|
dlx \
|
57 |
|
|
fr30 \
|
58 |
|
|
frv \
|
59 |
|
|
h8300 \
|
60 |
|
|
hppa \
|
61 |
|
|
i370 \
|
62 |
|
|
i386 \
|
63 |
|
|
i860 \
|
64 |
|
|
i960 \
|
65 |
|
|
ia64 \
|
66 |
|
|
ip2k \
|
67 |
|
|
m32c \
|
68 |
|
|
m32r \
|
69 |
|
|
m68hc11 \
|
70 |
|
|
m68k \
|
71 |
|
|
maxq \
|
72 |
|
|
mcore \
|
73 |
|
|
mep \
|
74 |
|
|
mips \
|
75 |
|
|
mmix \
|
76 |
|
|
mn10200 \
|
77 |
|
|
mn10300 \
|
78 |
|
|
msp430 \
|
79 |
|
|
mt \
|
80 |
|
|
ns32k \
|
81 |
|
|
or32 \
|
82 |
|
|
pdp11 \
|
83 |
|
|
pj \
|
84 |
|
|
ppc \
|
85 |
|
|
s390 \
|
86 |
|
|
score \
|
87 |
|
|
sh \
|
88 |
|
|
sh64 \
|
89 |
|
|
sparc \
|
90 |
|
|
spu \
|
91 |
|
|
tic30 \
|
92 |
|
|
tic4x \
|
93 |
|
|
tic54x \
|
94 |
|
|
v850 \
|
95 |
|
|
vax \
|
96 |
|
|
xc16x \
|
97 |
|
|
xstormy16 \
|
98 |
|
|
xtensa \
|
99 |
|
|
z80 \
|
100 |
|
|
z8k
|
101 |
|
|
|
102 |
|
|
# Object format types. This is only used for dependency information.
|
103 |
|
|
# We deliberately omit SOM, since it does not work as a cross assembler.
|
104 |
|
|
|
105 |
|
|
OBJ_FORMATS = \
|
106 |
|
|
aout \
|
107 |
|
|
coff \
|
108 |
|
|
ecoff \
|
109 |
|
|
elf \
|
110 |
|
|
evax
|
111 |
|
|
|
112 |
|
|
# This is an sh case which sets valid according to whether the CPU
|
113 |
|
|
# type in the shell variable c and the OS type in the shell variable o
|
114 |
|
|
# are supported. This helps cuts down on the amount of dependency
|
115 |
|
|
# information.
|
116 |
|
|
|
117 |
|
|
CPU_OBJ_VALID = \
|
118 |
|
|
valid= ; \
|
119 |
|
|
case $$o in \
|
120 |
|
|
aout) \
|
121 |
|
|
case $$c in \
|
122 |
|
|
arm | cris | i386 | m68k | ns32k | pdp11 | sparc | tic30 | vax) \
|
123 |
|
|
valid=yes ;; \
|
124 |
|
|
esac ;; \
|
125 |
|
|
coff) \
|
126 |
|
|
case $$c in \
|
127 |
|
|
arm | h8300 | i386 | i960 | m68k | maxq | mcore | mips | or32 \
|
128 |
|
|
| ppc | sh | sparc | tic* | xscale | z80 | z8k) \
|
129 |
|
|
valid=yes ;; \
|
130 |
|
|
esac ;; \
|
131 |
|
|
ecoff) \
|
132 |
|
|
case $$c in \
|
133 |
|
|
mips | alpha) valid=yes ;; \
|
134 |
|
|
esac ;; \
|
135 |
|
|
elf) valid=yes ; \
|
136 |
|
|
case $$c in \
|
137 |
|
|
maxq | ns32k | tic* | z80 | z8k) valid= ;; \
|
138 |
|
|
esac ;; \
|
139 |
|
|
evax) \
|
140 |
|
|
case $$c in \
|
141 |
|
|
alpha) valid=yes ;; \
|
142 |
|
|
esac ;; \
|
143 |
|
|
vms) \
|
144 |
|
|
case $$c in \
|
145 |
|
|
vax) valid=yes ;; \
|
146 |
|
|
esac ;; \
|
147 |
|
|
esac;
|
148 |
|
|
|
149 |
|
|
# These are like CPU_TYPES and CPU_OBJ_VALID, for the obj=multi case.
|
150 |
|
|
|
151 |
|
|
MULTI_CPU_TYPES = i386 mips cris
|
152 |
|
|
|
153 |
|
|
MULTI_CPU_OBJ_VALID = \
|
154 |
|
|
valid= ; \
|
155 |
|
|
case $$o in \
|
156 |
|
|
aout) \
|
157 |
|
|
case $$c in \
|
158 |
|
|
i386 | cris) valid=yes ;; \
|
159 |
|
|
esac ;; \
|
160 |
|
|
coff) \
|
161 |
|
|
case $$c in \
|
162 |
|
|
i386 | mips) valid=yes ;; \
|
163 |
|
|
esac ;; \
|
164 |
|
|
ecoff) \
|
165 |
|
|
case $$c in \
|
166 |
|
|
mips) valid=yes ;; \
|
167 |
|
|
esac ;; \
|
168 |
|
|
elf) valid=yes ;; \
|
169 |
|
|
esac;
|
170 |
|
|
|
171 |
|
|
# Regular source files.
|
172 |
|
|
|
173 |
|
|
GAS_CFILES = \
|
174 |
|
|
app.c \
|
175 |
|
|
as.c \
|
176 |
|
|
atof-generic.c \
|
177 |
|
|
cond.c \
|
178 |
|
|
depend.c \
|
179 |
|
|
dwarf2dbg.c \
|
180 |
|
|
dw2gencfi.c \
|
181 |
|
|
ecoff.c \
|
182 |
|
|
ehopt.c \
|
183 |
|
|
expr.c \
|
184 |
|
|
flonum-copy.c \
|
185 |
|
|
flonum-konst.c \
|
186 |
|
|
flonum-mult.c \
|
187 |
|
|
frags.c \
|
188 |
|
|
hash.c \
|
189 |
|
|
input-file.c \
|
190 |
|
|
input-scrub.c \
|
191 |
|
|
listing.c \
|
192 |
|
|
literal.c \
|
193 |
|
|
macro.c \
|
194 |
|
|
messages.c \
|
195 |
|
|
output-file.c \
|
196 |
|
|
read.c \
|
197 |
|
|
remap.c \
|
198 |
|
|
sb.c \
|
199 |
|
|
stabs.c \
|
200 |
|
|
subsegs.c \
|
201 |
|
|
symbols.c \
|
202 |
|
|
write.c
|
203 |
|
|
|
204 |
|
|
CFILES = $(GAS_CFILES) itbl-ops.c cgen.c
|
205 |
|
|
|
206 |
|
|
HFILES = \
|
207 |
|
|
as.h \
|
208 |
|
|
asintl.h \
|
209 |
|
|
bignum.h \
|
210 |
|
|
bit_fix.h \
|
211 |
|
|
cgen.h \
|
212 |
|
|
dwarf2dbg.h \
|
213 |
|
|
dw2gencfi.h \
|
214 |
|
|
ecoff.h \
|
215 |
|
|
emul-target.h \
|
216 |
|
|
emul.h \
|
217 |
|
|
expr.h \
|
218 |
|
|
flonum.h \
|
219 |
|
|
frags.h \
|
220 |
|
|
hash.h \
|
221 |
|
|
input-file.h \
|
222 |
|
|
itbl-lex.h \
|
223 |
|
|
itbl-ops.h \
|
224 |
|
|
listing.h \
|
225 |
|
|
macro.h \
|
226 |
|
|
obj.h \
|
227 |
|
|
output-file.h \
|
228 |
|
|
read.h \
|
229 |
|
|
sb.h \
|
230 |
|
|
struc-symbol.h \
|
231 |
|
|
subsegs.h \
|
232 |
|
|
symbols.h \
|
233 |
|
|
tc.h \
|
234 |
|
|
write.h
|
235 |
|
|
|
236 |
|
|
# CPU files in config.
|
237 |
|
|
|
238 |
|
|
TARGET_CPU_CFILES = \
|
239 |
|
|
config/tc-alpha.c \
|
240 |
|
|
config/tc-arc.c \
|
241 |
|
|
config/tc-arm.c \
|
242 |
|
|
config/tc-avr.c \
|
243 |
|
|
config/tc-bfin.c \
|
244 |
|
|
config/tc-cr16.c \
|
245 |
|
|
config/tc-cris.c \
|
246 |
|
|
config/tc-crx.c \
|
247 |
|
|
config/tc-d10v.c \
|
248 |
|
|
config/tc-d30v.c \
|
249 |
|
|
config/tc-dlx.c \
|
250 |
|
|
config/tc-fr30.c \
|
251 |
|
|
config/tc-frv.c \
|
252 |
|
|
config/tc-h8300.c \
|
253 |
|
|
config/tc-hppa.c \
|
254 |
|
|
config/tc-ia64.c \
|
255 |
|
|
config/tc-i370.c \
|
256 |
|
|
config/tc-i386.c \
|
257 |
|
|
config/tc-i860.c \
|
258 |
|
|
config/tc-i960.c \
|
259 |
|
|
config/tc-ip2k.c \
|
260 |
|
|
config/tc-iq2000.c \
|
261 |
|
|
config/tc-m32c.c \
|
262 |
|
|
config/tc-m32r.c \
|
263 |
|
|
config/tc-m68hc11.c \
|
264 |
|
|
config/tc-m68k.c \
|
265 |
|
|
config/tc-maxq.c \
|
266 |
|
|
config/tc-mcore.c \
|
267 |
|
|
config/tc-mep.c \
|
268 |
|
|
config/tc-mips.c \
|
269 |
|
|
config/tc-mmix.c \
|
270 |
|
|
config/tc-mn10200.c \
|
271 |
|
|
config/tc-mn10300.c \
|
272 |
|
|
config/tc-msp430.c \
|
273 |
|
|
config/tc-mt.c \
|
274 |
|
|
config/tc-ns32k.c \
|
275 |
|
|
config/tc-or32.c \
|
276 |
|
|
config/tc-pdp11.c \
|
277 |
|
|
config/tc-pj.c \
|
278 |
|
|
config/tc-ppc.c \
|
279 |
|
|
config/tc-s390.c \
|
280 |
|
|
config/tc-score.c \
|
281 |
|
|
config/tc-sh.c \
|
282 |
|
|
config/tc-sh64.c \
|
283 |
|
|
config/tc-sparc.c \
|
284 |
|
|
config/tc-spu.c \
|
285 |
|
|
config/tc-tic30.c \
|
286 |
|
|
config/tc-tic4x.c \
|
287 |
|
|
config/tc-tic54x.c \
|
288 |
|
|
config/tc-vax.c \
|
289 |
|
|
config/tc-v850.c \
|
290 |
|
|
config/tc-xstormy16.c \
|
291 |
|
|
config/tc-xc16x.c \
|
292 |
|
|
config/tc-xtensa.c \
|
293 |
|
|
config/tc-z80.c \
|
294 |
|
|
config/tc-z8k.c \
|
295 |
|
|
config/xtensa-relax.c
|
296 |
|
|
|
297 |
|
|
TARGET_CPU_HFILES = \
|
298 |
|
|
config/tc-alpha.h \
|
299 |
|
|
config/tc-arc.h \
|
300 |
|
|
config/tc-arm.h \
|
301 |
|
|
config/tc-avr.h \
|
302 |
|
|
config/tc-bfin.h \
|
303 |
|
|
config/tc-cr16.h \
|
304 |
|
|
config/tc-cris.h \
|
305 |
|
|
config/tc-crx.h \
|
306 |
|
|
config/tc-d10v.h \
|
307 |
|
|
config/tc-d30v.h \
|
308 |
|
|
config/tc-dlx.h \
|
309 |
|
|
config/tc-fr30.h \
|
310 |
|
|
config/tc-frv.h \
|
311 |
|
|
config/tc-h8300.h \
|
312 |
|
|
config/tc-hppa.h \
|
313 |
|
|
config/tc-ia64.h \
|
314 |
|
|
config/tc-i370.h \
|
315 |
|
|
config/tc-i386.h \
|
316 |
|
|
config/tc-i860.h \
|
317 |
|
|
config/tc-i960.h \
|
318 |
|
|
config/tc-ip2k.h \
|
319 |
|
|
config/tc-iq2000.h \
|
320 |
|
|
config/tc-m32c.h \
|
321 |
|
|
config/tc-m32r.h \
|
322 |
|
|
config/tc-m68hc11.h \
|
323 |
|
|
config/tc-m68k.h \
|
324 |
|
|
config/tc-maxq.h \
|
325 |
|
|
config/tc-mcore.h \
|
326 |
|
|
config/tc-mep.h \
|
327 |
|
|
config/tc-mips.h \
|
328 |
|
|
config/tc-mmix.h \
|
329 |
|
|
config/tc-mn10200.h \
|
330 |
|
|
config/tc-mn10300.h \
|
331 |
|
|
config/tc-msp430.h \
|
332 |
|
|
config/tc-mt.h \
|
333 |
|
|
config/tc-ns32k.h \
|
334 |
|
|
config/tc-or32.h \
|
335 |
|
|
config/tc-pdp11.h \
|
336 |
|
|
config/tc-pj.h \
|
337 |
|
|
config/tc-ppc.h \
|
338 |
|
|
config/tc-s390.h \
|
339 |
|
|
config/tc-score.h \
|
340 |
|
|
config/tc-sh.h \
|
341 |
|
|
config/tc-sh64.h \
|
342 |
|
|
config/tc-sparc.h \
|
343 |
|
|
config/tc-spu.h \
|
344 |
|
|
config/tc-tic30.h \
|
345 |
|
|
config/tc-tic4x.h \
|
346 |
|
|
config/tc-tic54x.h \
|
347 |
|
|
config/tc-vax.h \
|
348 |
|
|
config/tc-v850.h \
|
349 |
|
|
config/tc-xstormy16.h \
|
350 |
|
|
config/tc-xc16x.h \
|
351 |
|
|
config/tc-xtensa.h \
|
352 |
|
|
config/tc-z80.h \
|
353 |
|
|
config/tc-z8k.h \
|
354 |
|
|
config/xtensa-relax.h
|
355 |
|
|
|
356 |
|
|
# OBJ files in config
|
357 |
|
|
|
358 |
|
|
OBJ_FORMAT_CFILES = \
|
359 |
|
|
config/obj-aout.c \
|
360 |
|
|
config/obj-coff.c \
|
361 |
|
|
config/obj-ecoff.c \
|
362 |
|
|
config/obj-elf.c \
|
363 |
|
|
config/obj-evax.c \
|
364 |
|
|
config/obj-fdpicelf.c \
|
365 |
|
|
config/obj-som.c
|
366 |
|
|
|
367 |
|
|
OBJ_FORMAT_HFILES = \
|
368 |
|
|
config/obj-aout.h \
|
369 |
|
|
config/obj-coff.h \
|
370 |
|
|
config/obj-ecoff.h \
|
371 |
|
|
config/obj-elf.h \
|
372 |
|
|
config/obj-evax.h \
|
373 |
|
|
config/obj-fdpicelf.h \
|
374 |
|
|
config/obj-som.h
|
375 |
|
|
|
376 |
|
|
# Emulation header files in config
|
377 |
|
|
|
378 |
|
|
TARG_ENV_HFILES = \
|
379 |
|
|
config/te-386bsd.h \
|
380 |
|
|
config/te-aix5.h \
|
381 |
|
|
config/te-armeabi.h \
|
382 |
|
|
config/te-armlinuxeabi.h \
|
383 |
|
|
config/te-dynix.h \
|
384 |
|
|
config/te-epoc-pe.h \
|
385 |
|
|
config/te-freebsd.h \
|
386 |
|
|
config/te-generic.h \
|
387 |
|
|
config/te-gnu.h \
|
388 |
|
|
config/te-go32.h \
|
389 |
|
|
config/te-hppa.h \
|
390 |
|
|
config/te-hppa64.h \
|
391 |
|
|
config/te-hppalinux64.h \
|
392 |
|
|
config/te-i386aix.h \
|
393 |
|
|
config/te-ia64aix.h \
|
394 |
|
|
config/te-interix.h \
|
395 |
|
|
config/te-lnews.h \
|
396 |
|
|
config/te-lynx.h \
|
397 |
|
|
config/te-mach.h \
|
398 |
|
|
config/te-macos.h \
|
399 |
|
|
config/te-nbsd.h \
|
400 |
|
|
config/te-nbsd532.h \
|
401 |
|
|
config/te-netware.h \
|
402 |
|
|
config/te-pc532mach.h \
|
403 |
|
|
config/te-pe.h \
|
404 |
|
|
config/te-psos.h \
|
405 |
|
|
config/te-riscix.h \
|
406 |
|
|
config/te-sparcaout.h \
|
407 |
|
|
config/te-sun3.h \
|
408 |
|
|
config/te-svr4.h \
|
409 |
|
|
config/te-symbian.h \
|
410 |
|
|
config/te-tmips.h \
|
411 |
|
|
config/te-vxworks.h \
|
412 |
|
|
config/te-wince-pe.h
|
413 |
|
|
|
414 |
|
|
# Multi files in config
|
415 |
|
|
|
416 |
|
|
MULTI_CFILES = \
|
417 |
|
|
config/e-crisaout.c \
|
418 |
|
|
config/e-criself.c \
|
419 |
|
|
config/e-i386aout.c \
|
420 |
|
|
config/e-i386coff.c \
|
421 |
|
|
config/e-i386elf.c \
|
422 |
|
|
config/e-mipsecoff.c \
|
423 |
|
|
config/e-mipself.c
|
424 |
|
|
|
425 |
|
|
CONFIG_OBJS = \
|
426 |
|
|
$(TARG_CPU_O) \
|
427 |
|
|
$(OBJ_FORMAT_O) \
|
428 |
|
|
$(ATOF_TARG_O) \
|
429 |
|
|
$(extra_objects)
|
430 |
|
|
|
431 |
|
|
GENERIC_OBJS = \
|
432 |
|
|
app.o \
|
433 |
|
|
as.o \
|
434 |
|
|
atof-generic.o \
|
435 |
|
|
cond.o \
|
436 |
|
|
depend.o \
|
437 |
|
|
dwarf2dbg.o \
|
438 |
|
|
dw2gencfi.o \
|
439 |
|
|
ehopt.o \
|
440 |
|
|
expr.o \
|
441 |
|
|
flonum-konst.o \
|
442 |
|
|
flonum-copy.o \
|
443 |
|
|
flonum-mult.o \
|
444 |
|
|
frags.o \
|
445 |
|
|
hash.o \
|
446 |
|
|
input-file.o \
|
447 |
|
|
input-scrub.o \
|
448 |
|
|
literal.o \
|
449 |
|
|
messages.o \
|
450 |
|
|
output-file.o \
|
451 |
|
|
read.o \
|
452 |
|
|
remap.o \
|
453 |
|
|
subsegs.o \
|
454 |
|
|
symbols.o \
|
455 |
|
|
write.o \
|
456 |
|
|
listing.o \
|
457 |
|
|
ecoff.o \
|
458 |
|
|
stabs.o \
|
459 |
|
|
sb.o \
|
460 |
|
|
macro.o
|
461 |
|
|
|
462 |
|
|
CONFIG_ATOF_CFILES = \
|
463 |
|
|
config/atof-ieee.c \
|
464 |
|
|
config/atof-vax.c
|
465 |
|
|
|
466 |
|
|
OBJS = $(CONFIG_OBJS) $(GENERIC_OBJS)
|
467 |
|
|
|
468 |
|
|
POTFILES = $(MULTI_CFILES) $(CONFIG_ATOF_CFILES) $(TARG_ENV_HFILES) $(OBJ_FORMAT_HFILES) \
|
469 |
|
|
$(OBJ_FORMAT_CFILES) $(TARGET_CPU_HFILES) $(TARGET_CPU_CFILES) \
|
470 |
|
|
$(HFILES) $(CFILES)
|
471 |
|
|
po/POTFILES.in: @MAINT@ Makefile
|
472 |
|
|
for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
|
473 |
|
|
&& mv tmp $(srcdir)/po/POTFILES.in
|
474 |
|
|
|
475 |
|
|
# Note: GASP is now deprecated and has been removed. It is still
|
476 |
|
|
# available in the CVS archive or older binutils releases if it is needed.
|
477 |
|
|
noinst_PROGRAMS = as-new
|
478 |
|
|
noinst_SCRIPTS = $(GDBINIT)
|
479 |
|
|
EXTRA_SCRIPTS = .gdbinit
|
480 |
|
|
|
481 |
|
|
EXTRA_DIST = m68k-parse.c itbl-parse.c itbl-parse.h itbl-lex.c \
|
482 |
|
|
bfin-parse.c bfin-parse.h bfin-lex.c
|
483 |
|
|
|
484 |
|
|
diststuff: $(EXTRA_DIST) info
|
485 |
|
|
all: info
|
486 |
|
|
|
487 |
|
|
DISTCLEANFILES = targ-cpu.h obj-format.h targ-env.h itbl-cpu.h cgen-desc.h
|
488 |
|
|
|
489 |
|
|
# Now figure out from those variables how to compile and link.
|
490 |
|
|
|
491 |
|
|
BASEDIR = $(srcdir)/..
|
492 |
|
|
BFDDIR = $(BASEDIR)/bfd
|
493 |
|
|
INCDIR = $(BASEDIR)/include
|
494 |
|
|
|
495 |
|
|
# This is the variable actually used when we compile.
|
496 |
|
|
# Specify the directories to be searched for header files.
|
497 |
|
|
# Both . and srcdir are used, in that order,
|
498 |
|
|
# so that tm.h and config.h will be found in the compilation
|
499 |
|
|
# subdirectory rather than in the source directory.
|
500 |
|
|
INCLUDES = -I. -I$(srcdir) -I../bfd -I$(srcdir)/config \
|
501 |
|
|
-I$(INCDIR) -I$(srcdir)/.. -I$(BFDDIR) @INCINTL@ \
|
502 |
|
|
-DLOCALEDIR="\"$(datadir)/locale\""
|
503 |
|
|
|
504 |
|
|
# This should be parallel to INCLUDES, but should replace $(srcdir)
|
505 |
|
|
# with $${srcdir}, and should work in a subdirectory. This is used
|
506 |
|
|
# when building dependencies, because the dependency building is done
|
507 |
|
|
# in a subdirectory.
|
508 |
|
|
DEP_INCLUDES = -I.. -I$${srcdir} -I../../bfd \
|
509 |
|
|
-I$${srcdir}/config -I$${srcdir}/../include -I$${srcdir}/.. \
|
510 |
|
|
-I$${srcdir}/../bfd @INCINTL@ \
|
511 |
|
|
-DLOCALEDIR="\"$(datadir)/locale\""
|
512 |
|
|
|
513 |
|
|
DEP_FLAGS = -DOBJ_MAYBE_ELF \
|
514 |
|
|
-I. -I.. -I$${srcdir} -I../../bfd $(DEP_INCLUDES)
|
515 |
|
|
|
516 |
|
|
# How to link with both our special library facilities
|
517 |
|
|
# and the system's installed libraries.
|
518 |
|
|
|
519 |
|
|
GASLIBS = @OPCODES_LIB@ ../bfd/libbfd.la ../libiberty/libiberty.a
|
520 |
|
|
|
521 |
|
|
# Files to be copied away after each stage in building.
|
522 |
|
|
STAGESTUFF = *.o $(noinst_PROGRAMS)
|
523 |
|
|
|
524 |
|
|
as_new_SOURCES = $(GAS_CFILES)
|
525 |
|
|
as_new_LDADD = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
|
526 |
|
|
$(extra_objects) $(GASLIBS) $(LIBINTL) $(LIBM)
|
527 |
|
|
as_new_DEPENDENCIES = $(TARG_CPU_O) $(OBJ_FORMAT_O) $(ATOF_TARG_O) \
|
528 |
|
|
$(extra_objects) $(GASLIBS) $(LIBINTL_DEP)
|
529 |
|
|
|
530 |
|
|
# Stuff that every object file depends upon. If anything is removed
|
531 |
|
|
# from this list, remove it from dep-in.sed as well.
|
532 |
|
|
$(OBJS): ../bfd/bfd.h $(INCDIR)/symcat.h \
|
533 |
|
|
$(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h $(INCDIR)/progress.h \
|
534 |
|
|
$(INCDIR)/fopen-same.h $(INCDIR)/fopen-bin.h $(INCDIR)/fopen-vms.h \
|
535 |
|
|
$(OBJ_FORMAT_H) $(TARG_CPU_H) $(TARG_ENV_H) \
|
536 |
|
|
as.h asintl.h bignum.h bit_fix.h config.h emul.h expr.h flonum.h \
|
537 |
|
|
frags.h hash.h listing.h obj.h read.h symbols.h tc.h write.h
|
538 |
|
|
|
539 |
|
|
EXPECT = expect
|
540 |
|
|
RUNTEST = runtest
|
541 |
|
|
RUNTESTFLAGS=
|
542 |
|
|
|
543 |
|
|
check-DEJAGNU: site.exp
|
544 |
|
|
if [ -d testsuite ]; then \
|
545 |
|
|
true; \
|
546 |
|
|
else \
|
547 |
|
|
mkdir testsuite; \
|
548 |
|
|
fi
|
549 |
|
|
rm -f testsuite/site.exp
|
550 |
|
|
cp site.exp testsuite/site.exp
|
551 |
|
|
rootme=`pwd`; export rootme; \
|
552 |
|
|
srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
|
553 |
|
|
EXPECT=${EXPECT} ; export EXPECT ; \
|
554 |
|
|
runtest=$(RUNTEST); \
|
555 |
|
|
cd testsuite; \
|
556 |
|
|
if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
|
557 |
|
|
$$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
|
558 |
|
|
$(RUNTESTFLAGS); \
|
559 |
|
|
else echo "WARNING: could not find \`runtest'" 1>&2; :;\
|
560 |
|
|
fi
|
561 |
|
|
|
562 |
|
|
# The implicit .c.o rule doesn't work for these, perhaps because of
|
563 |
|
|
# the variables, or perhaps because the sources are not on vpath.
|
564 |
|
|
$(TARG_CPU_O): $(TARG_CPU_C)
|
565 |
|
|
$(COMPILE) -c $(TARG_CPU_C)
|
566 |
|
|
$(ATOF_TARG_O): $(ATOF_TARG_C)
|
567 |
|
|
$(COMPILE) -c $(ATOF_TARG_C)
|
568 |
|
|
|
569 |
|
|
# ecoff.c only has full dependencies when ECOFF_DEBUGGING is defined,
|
570 |
|
|
# so the automatic dependency stuff doesn't work.
|
571 |
|
|
ecoff.o : ecoff.c ecoff.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
|
572 |
|
|
$(INCDIR)/coff/ecoff.h $(INCDIR)/coff/symconst.h \
|
573 |
|
|
$(INCDIR)/aout/stab_gnu.h
|
574 |
|
|
|
575 |
|
|
# We need all these explicit rules for the multi stuff. Because of
|
576 |
|
|
# these rules, we don't need one for OBJ_FORMAT_O.
|
577 |
|
|
|
578 |
|
|
obj-aout.o : $(srcdir)/config/obj-aout.c $(DEP_@target_cpu_type@_aout)
|
579 |
|
|
$(COMPILE) -c $(srcdir)/config/obj-aout.c
|
580 |
|
|
obj-coff.o: $(srcdir)/config/obj-coff.c $(DEP_@target_cpu_type@_coff)
|
581 |
|
|
$(COMPILE) -c $(srcdir)/config/obj-coff.c
|
582 |
|
|
obj-ecoff.o : $(srcdir)/config/obj-ecoff.c $(DEP_@target_cpu_type@_ecoff)
|
583 |
|
|
$(COMPILE) -c $(srcdir)/config/obj-ecoff.c
|
584 |
|
|
obj-elf.o : $(srcdir)/config/obj-elf.c $(DEP_@target_cpu_type@_elf)
|
585 |
|
|
$(COMPILE) -c $(srcdir)/config/obj-elf.c
|
586 |
|
|
obj-evax.o : $(srcdir)/config/obj-evax.c
|
587 |
|
|
$(COMPILE) -c $(srcdir)/config/obj-evax.c
|
588 |
|
|
obj-fdpicelf.o : $(srcdir)/config/obj-fdpicelf.c
|
589 |
|
|
$(COMPILE) -c $(srcdir)/config/obj-fdpicelf.c
|
590 |
|
|
obj-multi.o : $(srcdir)/config/obj-multi.c
|
591 |
|
|
$(COMPILE) -c $(srcdir)/config/obj-multi.c
|
592 |
|
|
obj-som.o : $(srcdir)/config/obj-som.c
|
593 |
|
|
$(COMPILE) -c $(srcdir)/config/obj-som.c
|
594 |
|
|
|
595 |
|
|
e-mipself.o : $(srcdir)/config/e-mipself.c
|
596 |
|
|
$(COMPILE) -c $(srcdir)/config/e-mipself.c
|
597 |
|
|
e-mipsecoff.o : $(srcdir)/config/e-mipsecoff.c
|
598 |
|
|
$(COMPILE) -c $(srcdir)/config/e-mipsecoff.c
|
599 |
|
|
e-i386aout.o: $(srcdir)/config/e-i386aout.c
|
600 |
|
|
$(COMPILE) -c $(srcdir)/config/e-i386aout.c
|
601 |
|
|
e-i386coff.o: $(srcdir)/config/e-i386coff.c
|
602 |
|
|
$(COMPILE) -c $(srcdir)/config/e-i386coff.c
|
603 |
|
|
e-i386elf.o: $(srcdir)/config/e-i386elf.c
|
604 |
|
|
$(COMPILE) -c $(srcdir)/config/e-i386elf.c
|
605 |
|
|
e-crisaout.o: $(srcdir)/config/e-crisaout.c
|
606 |
|
|
$(COMPILE) -c $(srcdir)/config/e-crisaout.c
|
607 |
|
|
e-criself.o: $(srcdir)/config/e-criself.c
|
608 |
|
|
$(COMPILE) -c $(srcdir)/config/e-criself.c
|
609 |
|
|
|
610 |
|
|
xtensa-relax.o: $(srcdir)/config/xtensa-relax.c
|
611 |
|
|
$(COMPILE) -c $(srcdir)/config/xtensa-relax.c
|
612 |
|
|
|
613 |
|
|
# The m68k operand parser.
|
614 |
|
|
|
615 |
|
|
EXTRA_as_new_SOURCES = config/m68k-parse.y config/bfin-parse.y
|
616 |
|
|
|
617 |
|
|
# If m68k-parse.y is in a different directory, then ylwrap will use an
|
618 |
|
|
# absolute path when it invokes yacc, which will cause yacc to put the
|
619 |
|
|
# absolute path into the generated file. That's a pain when it comes
|
620 |
|
|
# to generating snapshots, because it introduces spurious diffs.
|
621 |
|
|
# Since when we make the snapshots $(srcdir) = ".", we check for that
|
622 |
|
|
# case and handle it differently. This means that anybody who
|
623 |
|
|
# configures with $(srcdir) = "." will have to set their path in the
|
624 |
|
|
# debugger if they want to debug m68k-parse.y. This is bad, but on
|
625 |
|
|
# the other hand it's good that people who use the prebuilt
|
626 |
|
|
# m68k-parse.c don't get a spurious absolute path.
|
627 |
|
|
m68k-parse.c: $(srcdir)/config/m68k-parse.y
|
628 |
|
|
f=$(srcdir)/config/m68k-parse.y; \
|
629 |
|
|
if [ $$f = "./config/m68k-parse.y" ]; then \
|
630 |
|
|
ln -s config/m68k-parse.y . > /dev/null 2>/dev/null || \
|
631 |
|
|
ln config/m68k-parse.y . > /dev/null 2>/dev/null || \
|
632 |
|
|
cp config/m68k-parse.y . >/dev/null 2>/dev/null; \
|
633 |
|
|
f=m68k-parse.y; \
|
634 |
|
|
else true; fi; \
|
635 |
|
|
$(SHELL) $(YLWRAP) $$f y.tab.c m68k-parse.c -- $(YACCCOMPILE); \
|
636 |
|
|
if [ $$f = "m68k-parse.y" ]; then \
|
637 |
|
|
rm -f m68k-parse.y; \
|
638 |
|
|
else true; fi
|
639 |
|
|
# Disable -Werror, if it has been enabled, since old versions of bison/
|
640 |
|
|
# yacc will produce working code which contain compile time warnings.
|
641 |
|
|
m68k-parse.o: m68k-parse.c $(srcdir)/config/m68k-parse.h
|
642 |
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
643 |
|
|
|
644 |
|
|
# Don't let the .y.h rule clobber m68k-parse.h.
|
645 |
|
|
m68k-parse.h: ; @true
|
646 |
|
|
$(srcdir)/config/m68k-parse.h: ; @true
|
647 |
|
|
|
648 |
|
|
bfin-parse.c: $(srcdir)/config/bfin-parse.y
|
649 |
|
|
$(SHELL) $(YLWRAP) $(srcdir)/config/bfin-parse.y y.tab.c bfin-parse.c y.tab.h bfin-parse.h -- $(YACCCOMPILE) -d ;
|
650 |
|
|
bfin-parse.h: bfin-parse.c
|
651 |
|
|
bfin-parse.o: bfin-parse.c bfin-parse.h $(srcdir)/config/bfin-defs.h \
|
652 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/bfin.h $(BFDDIR)/libbfd.h
|
653 |
|
|
|
654 |
|
|
bfin-defs.h: ; @true
|
655 |
|
|
$(srcdir)/config/bfin-defs.h: ; @true
|
656 |
|
|
|
657 |
|
|
bfin-lex.c: $(srcdir)/config/bfin-lex.l
|
658 |
|
|
$(SHELL) $(YLWRAP) $(srcdir)/config/bfin-lex.l lex.yy.c bfin-lex.c -- $(LEXCOMPILE)
|
659 |
|
|
bfin-lex.o: bfin-lex.c bfin-parse.h $(srcdir)/config/bfin-defs.h
|
660 |
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
661 |
|
|
|
662 |
|
|
# The instruction table specification lexical analyzer and parser.
|
663 |
|
|
|
664 |
|
|
itbl-lex.c: $(srcdir)/itbl-lex.l
|
665 |
|
|
|
666 |
|
|
# Disable -Werror, if it has been enabled, since old versions of bison/
|
667 |
|
|
# yacc will produce working code which contain compile time warnings.
|
668 |
|
|
itbl-lex.o: itbl-lex.c itbl-parse.h $(srcdir)/itbl-lex.h
|
669 |
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
670 |
|
|
|
671 |
|
|
# Disable -Werror, if it has been enabled, since old versions of bison/
|
672 |
|
|
# yacc will produce working code which contain compile time warnings.
|
673 |
|
|
itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h $(srcdir)/itbl-lex.h
|
674 |
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
675 |
|
|
|
676 |
|
|
itbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
|
677 |
|
|
|
678 |
|
|
itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
|
679 |
|
|
$(SHELL) $(YLWRAP) $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- $(YACCCOMPILE) -d
|
680 |
|
|
|
681 |
|
|
# stand-alone itbl assembler & disassembler
|
682 |
|
|
|
683 |
|
|
EXTRA_PROGRAMS = itbl-test
|
684 |
|
|
itbl_test_SOURCES = itbl-parse.y itbl-lex.l
|
685 |
|
|
itbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@
|
686 |
|
|
|
687 |
|
|
itbl-tops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
|
688 |
|
|
$(COMPILE) -o itbl-tops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c
|
689 |
|
|
|
690 |
|
|
itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h
|
691 |
|
|
$(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
|
692 |
|
|
|
693 |
|
|
# CGEN interface.
|
694 |
|
|
|
695 |
|
|
CGEN_CPU_PREFIX = @cgen_cpu_prefix@
|
696 |
|
|
|
697 |
|
|
cgen.o: cgen.c cgen.h cgen-desc.h subsegs.h \
|
698 |
|
|
$(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \
|
699 |
|
|
$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \
|
700 |
|
|
$(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h
|
701 |
|
|
|
702 |
|
|
# Remake the info files.
|
703 |
|
|
|
704 |
|
|
MOSTLYCLEANFILES = $(STAGESTUFF) core \
|
705 |
|
|
testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \
|
706 |
|
|
testsuite/site.exp site.bak site.exp stage stage1 stage2
|
707 |
|
|
|
708 |
|
|
CLEANFILES = dep.sed DEPTC DEPTCA DEPOBJ DEPOBJA DEP2 DEP2A DEP1 DEPA DEP DEPDIR
|
709 |
|
|
|
710 |
|
|
.PHONY: install-html install-html-am install-html-recursive
|
711 |
|
|
|
712 |
|
|
install-html: install-html-recursive
|
713 |
|
|
|
714 |
|
|
install-html-recursive:
|
715 |
|
|
@failcom='exit 1'; \
|
716 |
|
|
for f in x $$MAKEFLAGS; do \
|
717 |
|
|
case $$f in \
|
718 |
|
|
*=* | --[!k]*);; \
|
719 |
|
|
*k*) failcom='fail=yes';; \
|
720 |
|
|
esac; \
|
721 |
|
|
done; \
|
722 |
|
|
dot_seen=no; \
|
723 |
|
|
target=`echo $@ | sed s/-recursive//`; \
|
724 |
|
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
725 |
|
|
echo "Making $$target in $$subdir"; \
|
726 |
|
|
if test "$$subdir" = "."; then \
|
727 |
|
|
dot_seen=yes; \
|
728 |
|
|
local_target="$$target-am"; \
|
729 |
|
|
else \
|
730 |
|
|
local_target="$$target"; \
|
731 |
|
|
fi; \
|
732 |
|
|
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
733 |
|
|
|| eval $$failcom; \
|
734 |
|
|
done; \
|
735 |
|
|
if test "$$dot_seen" = "no"; then \
|
736 |
|
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
737 |
|
|
fi; test -z "$$fail"
|
738 |
|
|
|
739 |
|
|
.PHONY: install-exec-local install-data-local
|
740 |
|
|
.PHONY: install-exec-bindir install-exec-tooldir
|
741 |
|
|
|
742 |
|
|
install-exec-local: install-exec-bindir @install_tooldir@
|
743 |
|
|
|
744 |
|
|
install-exec-bindir: $(noinst_PROGRAMS)
|
745 |
|
|
$(mkinstalldirs) $(DESTDIR)$(bindir)
|
746 |
|
|
@list='$(noinst_PROGRAMS)'; for p in $$list; do \
|
747 |
|
|
if test -f $$p; then \
|
748 |
|
|
echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
|
749 |
|
|
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
|
750 |
|
|
else :; fi; \
|
751 |
|
|
done
|
752 |
|
|
|
753 |
|
|
install-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS)
|
754 |
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
|
755 |
|
|
n=`echo as | sed '$(transform)'`; \
|
756 |
|
|
if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
|
757 |
|
|
rm -f $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
|
758 |
|
|
ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
|
759 |
|
|
|| $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
|
760 |
|
|
else \
|
761 |
|
|
true ; \
|
762 |
|
|
fi
|
763 |
|
|
|
764 |
|
|
# These exist for maintenance purposes.
|
765 |
|
|
|
766 |
|
|
.PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison
|
767 |
|
|
|
768 |
|
|
bootstrap: as-new
|
769 |
|
|
$(MAKE) stage1
|
770 |
|
|
rm -f stage && ln -s stage1 stage
|
771 |
|
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
|
772 |
|
|
$(MAKE) stage2
|
773 |
|
|
rm -f stage && ln -s stage2 stage
|
774 |
|
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
|
775 |
|
|
$(MAKE) comparison against=stage2
|
776 |
|
|
|
777 |
|
|
bootstrap2:
|
778 |
|
|
rm -f stage && ln -s stage1 stage
|
779 |
|
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
|
780 |
|
|
$(MAKE) stage2
|
781 |
|
|
rm -f stage && ln -s stage2 stage
|
782 |
|
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
|
783 |
|
|
$(MAKE) comparison against=stage2
|
784 |
|
|
|
785 |
|
|
bootstrap3:
|
786 |
|
|
rm -f stage && ln -s stage2 stage
|
787 |
|
|
$(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
|
788 |
|
|
$(MAKE) comparison against=stage2
|
789 |
|
|
|
790 |
|
|
# Copy the object files from a particular stage into a subdirectory.
|
791 |
|
|
stage1:
|
792 |
|
|
-mkdir stage1
|
793 |
|
|
-mv $(STAGESTUFF) stage1
|
794 |
|
|
if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
|
795 |
|
|
|
796 |
|
|
stage2:
|
797 |
|
|
-mkdir stage2
|
798 |
|
|
-mv $(STAGESTUFF) stage2
|
799 |
|
|
if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
|
800 |
|
|
|
801 |
|
|
stage3:
|
802 |
|
|
-mkdir stage3
|
803 |
|
|
-mv $(STAGESTUFF) stage3
|
804 |
|
|
if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi
|
805 |
|
|
|
806 |
|
|
against=stage2
|
807 |
|
|
|
808 |
|
|
# This rule is derived from corresponding code in the Makefile.in for gcc.
|
809 |
|
|
# The "tail +16c" is to bypass headers which may include timestamps or
|
810 |
|
|
# temporary assembly file names.
|
811 |
|
|
comparison:
|
812 |
|
|
x=0 ; \
|
813 |
|
|
for file in *.o ; do \
|
814 |
|
|
tail +16c ./$$file > tmp-foo1; \
|
815 |
|
|
if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
|
816 |
|
|
if cmp tmp-foo1 tmp-foo2 ; then \
|
817 |
|
|
true ; \
|
818 |
|
|
else \
|
819 |
|
|
echo $$file differs ; \
|
820 |
|
|
x=1 ; \
|
821 |
|
|
fi ; \
|
822 |
|
|
else true; fi ; \
|
823 |
|
|
done ; \
|
824 |
|
|
exit $$x
|
825 |
|
|
-rm -f tmp-foo*
|
826 |
|
|
|
827 |
|
|
.PHONY: de-stage1 de-stage2 de-stage3
|
828 |
|
|
|
829 |
|
|
de-stage1:
|
830 |
|
|
- (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..)
|
831 |
|
|
- rmdir stage1
|
832 |
|
|
|
833 |
|
|
de-stage2:
|
834 |
|
|
- (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..)
|
835 |
|
|
- rmdir stage2
|
836 |
|
|
|
837 |
|
|
de-stage3:
|
838 |
|
|
- (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..)
|
839 |
|
|
- rmdir stage3
|
840 |
|
|
|
841 |
|
|
DEP_FILE_DEPS = $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \
|
842 |
|
|
$(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES)
|
843 |
|
|
|
844 |
|
|
CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in $(srcdir)/configure.tgt
|
845 |
|
|
|
846 |
|
|
# Automatic dependency computation. This is a real pain, because the
|
847 |
|
|
# dependencies change based on target_cpu_type and obj_format.
|
848 |
|
|
# Just to make things even more complicated, automake separates the
|
849 |
|
|
# dependency variable assignments from the dependency rules, and tacks
|
850 |
|
|
# on a .NOEXPORT at the end of Makefile.in.
|
851 |
|
|
|
852 |
|
|
DEP: dep.sed $(DEP_FILE_DEPS) DEPTC DEPOBJ DEP2
|
853 |
|
|
rm -f DEP1 # delete because we use $? in DEP1 rule
|
854 |
|
|
srcdir=`cd $(srcdir); pwd`; \
|
855 |
|
|
$(MAKE) MKDEP="$(MKDEP)" srcdir="$${srcdir}" VPATH="$${srcdir}" DEP1
|
856 |
|
|
rm -rf DEPDIR
|
857 |
|
|
echo 'AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' > DEPA
|
858 |
|
|
sed -f dep.sed < DEPTC >> DEPA
|
859 |
|
|
sed -f dep.sed < DEPOBJ >> DEPA
|
860 |
|
|
sed -f dep.sed < DEP2 >> DEPA
|
861 |
|
|
echo 'BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
|
862 |
|
|
echo '#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' >> DEPA
|
863 |
|
|
sed -f dep.sed < DEP1 >> DEPA
|
864 |
|
|
echo '$$(OBJS): $$(DEP_@target''_cpu_type@_@obj''_format@)' >> DEPA
|
865 |
|
|
echo '$$(TARG_CPU_O): $$(DEPTC_@target''_cpu_type@_@obj''_format@)' >> DEPA
|
866 |
|
|
echo '$$(OBJ_FORMAT_O): $$(DEPOBJ_@target''_cpu_type@_@obj''_format@)' >> DEPA
|
867 |
|
|
echo '#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
|
868 |
|
|
if grep ' /' DEPA > /dev/null 2> /dev/null; then \
|
869 |
|
|
echo 'make DEP failed!'; exit 1; \
|
870 |
|
|
else \
|
871 |
|
|
mv -f DEPA $@; \
|
872 |
|
|
fi
|
873 |
|
|
|
874 |
|
|
DEP1: $(CFILES) $(MULTI_CFILES)
|
875 |
|
|
if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
|
876 |
|
|
srcdir=`cd $(srcdir); pwd`; \
|
877 |
|
|
cd DEPDIR; \
|
878 |
|
|
echo '' > targ-cpu.h; \
|
879 |
|
|
echo '' > obj-format.h; \
|
880 |
|
|
echo '' > targ-env.h; \
|
881 |
|
|
echo '' > itbl-cpu.h; \
|
882 |
|
|
echo '' > itbl-parse.h; \
|
883 |
|
|
$(MKDEP) $(DEP_FLAGS) $? > DEP
|
884 |
|
|
mv -f DEPDIR/DEP $@
|
885 |
|
|
|
886 |
|
|
# Work out the special dependencies for the tc-*.c files.
|
887 |
|
|
DEPTC: $(TARGET_CPU_CFILES)
|
888 |
|
|
rm -f DEPTCA
|
889 |
|
|
if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
|
890 |
|
|
srcdir=`cd $(srcdir); pwd`; \
|
891 |
|
|
cd DEPDIR; \
|
892 |
|
|
for c in $(CPU_TYPES); do \
|
893 |
|
|
for o in $(OBJ_FORMATS); do \
|
894 |
|
|
$(CPU_OBJ_VALID) \
|
895 |
|
|
if [ x$${valid} = xyes ]; then \
|
896 |
|
|
echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
|
897 |
|
|
echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
|
898 |
|
|
echo '#include "te-generic.h"' > targ-env.h; \
|
899 |
|
|
echo '' > itbl-cpu.h; \
|
900 |
|
|
echo '' > itbl-parse.h; \
|
901 |
|
|
if [ -f $${srcdir}/opcodes/$${c}-desc.h ]; then \
|
902 |
|
|
echo '#include "opcodes/'"$${c}"'-desc.h"' > cgen-desc.h; \
|
903 |
|
|
else \
|
904 |
|
|
echo '' > cgen-desc.h; \
|
905 |
|
|
fi ;\
|
906 |
|
|
rm -f dummy.c; \
|
907 |
|
|
cp $${srcdir}/config/tc-$${c}.c dummy.c; \
|
908 |
|
|
$(MKDEP) $(DEP_FLAGS) dummy.c | \
|
909 |
|
|
sed -e "s/dummy.o: dummy.c/DEPTC_$${c}_$${o} =/" >> ../DEPTCA; \
|
910 |
|
|
rm -f dummy.c; \
|
911 |
|
|
else true; fi; \
|
912 |
|
|
done; \
|
913 |
|
|
done
|
914 |
|
|
echo 'DEPTC_hppa_som = $$(srcdir)/config/tc-hppa.h subsegs.h \' >> DEPTCA
|
915 |
|
|
echo ' $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPTCA
|
916 |
|
|
echo ' $$(INCDIR)/opcode/hppa.h $$(BFDDIR)/som.h' >> DEPTCA
|
917 |
|
|
for c in $(MULTI_CPU_TYPES); do \
|
918 |
|
|
echo "DEPTC_$${c}"'_multi = \' >> DEPTCA; \
|
919 |
|
|
for o in $(OBJ_FORMATS); do \
|
920 |
|
|
$(MULTI_CPU_OBJ_VALID) \
|
921 |
|
|
if [ x$${valid} = xyes ]; then \
|
922 |
|
|
echo '$$(DEPTC_'"$${c}_$${o}"') \' >> DEPTCA; \
|
923 |
|
|
else true; fi; \
|
924 |
|
|
done; \
|
925 |
|
|
echo '' >> DEPTCA; \
|
926 |
|
|
done
|
927 |
|
|
mv -f DEPTCA DEPTC
|
928 |
|
|
|
929 |
|
|
# Work out the special dependencies for the obj-*.c files.
|
930 |
|
|
DEPOBJ: $(OBJ_FORMAT_CFILES)
|
931 |
|
|
rm -f DEPOBJA
|
932 |
|
|
if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
|
933 |
|
|
srcdir=`cd $(srcdir); pwd`; \
|
934 |
|
|
cd DEPDIR; \
|
935 |
|
|
for c in $(CPU_TYPES); do \
|
936 |
|
|
for o in $(OBJ_FORMATS); do \
|
937 |
|
|
$(CPU_OBJ_VALID) \
|
938 |
|
|
if [ x$${valid} = xyes ]; then \
|
939 |
|
|
echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
|
940 |
|
|
echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
|
941 |
|
|
echo '#include "te-generic.h"' > targ-env.h; \
|
942 |
|
|
echo '' > itbl-cpu.h; \
|
943 |
|
|
echo '' > itbl-parse.h; \
|
944 |
|
|
rm -f dummy.c; \
|
945 |
|
|
cp $${srcdir}/config/obj-$${o}.c dummy.c; \
|
946 |
|
|
$(MKDEP) $(DEP_FLAGS) dummy.c | \
|
947 |
|
|
sed -e "s/dummy.o: dummy.c/DEPOBJ_$${c}_$${o} =/" >> ../DEPOBJA; \
|
948 |
|
|
rm -f dummy.c; \
|
949 |
|
|
else true; fi; \
|
950 |
|
|
done; \
|
951 |
|
|
done
|
952 |
|
|
echo 'DEPOBJ_hppa_som = $$(srcdir)/config/obj-som.h subsegs.h \' >> DEPOBJA
|
953 |
|
|
echo ' $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPOBJA
|
954 |
|
|
echo ' $$(BFDDIR)/som.h $$(INCDIR)/aout/stab_gnu.h \' >> DEPOBJA
|
955 |
|
|
echo ' $$(INCDIR)/aout/stab.def' >> DEPOBJA
|
956 |
|
|
for c in $(MULTI_CPU_TYPES); do \
|
957 |
|
|
echo "DEPOBJ_$${c}"'_multi = \' >> DEPOBJA; \
|
958 |
|
|
for o in $(OBJ_FORMATS); do \
|
959 |
|
|
$(MULTI_CPU_OBJ_VALID) \
|
960 |
|
|
if [ x$${valid} = xyes ]; then \
|
961 |
|
|
echo '$$(DEPOBJ_'"$${c}_$${o}"') \' >> DEPOBJA; \
|
962 |
|
|
else true; fi; \
|
963 |
|
|
done; \
|
964 |
|
|
echo '' >> DEPOBJA; \
|
965 |
|
|
done
|
966 |
|
|
mv -f DEPOBJA DEPOBJ
|
967 |
|
|
|
968 |
|
|
# Work out the dependencies for each CPU/OBJ combination.
|
969 |
|
|
# Note that SOM is a special case, because it only works native.
|
970 |
|
|
DEP2: $(TARGET_CPU_HFILES) $(OBJ_FORMAT_HFILES)
|
971 |
|
|
rm -f DEP2A
|
972 |
|
|
if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
|
973 |
|
|
srcdir=`cd $(srcdir); pwd`; \
|
974 |
|
|
cd DEPDIR; \
|
975 |
|
|
for c in $(CPU_TYPES); do \
|
976 |
|
|
for o in $(OBJ_FORMATS); do \
|
977 |
|
|
$(CPU_OBJ_VALID) \
|
978 |
|
|
if [ x$${valid} = xyes ]; then \
|
979 |
|
|
echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
|
980 |
|
|
echo '#include "obj-'"$${o}"'.h"' > dummy.c; \
|
981 |
|
|
$(MKDEP) $(DEP_FLAGS) dummy.c | \
|
982 |
|
|
sed -e "s/dummy.o: dummy.c/DEP_$${c}_$${o} =/" >> ../DEP2A; \
|
983 |
|
|
else true; fi; \
|
984 |
|
|
done; \
|
985 |
|
|
done
|
986 |
|
|
echo 'DEP_hppa_som = $$(BFDDIR)/som.h' >> DEP2A
|
987 |
|
|
for c in $(MULTI_CPU_TYPES); do \
|
988 |
|
|
echo "DEP_$${c}"'_multi = \' >> DEP2A; \
|
989 |
|
|
for o in $(OBJ_FORMATS); do \
|
990 |
|
|
$(MULTI_CPU_OBJ_VALID) \
|
991 |
|
|
if [ x$${valid} = xyes ]; then \
|
992 |
|
|
echo '$$(DEP_'"$${c}_$${o}"') \' >> DEP2A; \
|
993 |
|
|
else true; fi; \
|
994 |
|
|
done; \
|
995 |
|
|
echo '' >> DEP2A; \
|
996 |
|
|
done
|
997 |
|
|
mv -f DEP2A DEP2
|
998 |
|
|
|
999 |
|
|
dep.sed: dep-in.sed config.status
|
1000 |
|
|
srcdir=`cd $(srcdir); pwd`; \
|
1001 |
|
|
sed <$(srcdir)/dep-in.sed >dep.sed \
|
1002 |
|
|
-e "s!@INCDIR@!$${srcdir}/../include!" \
|
1003 |
|
|
-e "s!@BFDDIR@!$${srcdir}/../bfd!" \
|
1004 |
|
|
-e "s!@SRCDIR@!$${srcdir}!" \
|
1005 |
|
|
-e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/gas,,`'!'
|
1006 |
|
|
|
1007 |
|
|
dep: DEP
|
1008 |
|
|
sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
|
1009 |
|
|
< Makefile > tmp-Makefile
|
1010 |
|
|
cat DEP >> tmp-Makefile
|
1011 |
|
|
$(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
|
1012 |
|
|
|
1013 |
|
|
dep-in: DEP
|
1014 |
|
|
sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
|
1015 |
|
|
< $(srcdir)/Makefile.in > tmp-Makefile.in
|
1016 |
|
|
cat DEP >> tmp-Makefile.in
|
1017 |
|
|
$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
|
1018 |
|
|
|
1019 |
|
|
dep-am: DEP
|
1020 |
|
|
sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
|
1021 |
|
|
< $(srcdir)/Makefile.am > tmp-Makefile.am
|
1022 |
|
|
cat DEP >> tmp-Makefile.am
|
1023 |
|
|
$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
|
1024 |
|
|
|
1025 |
|
|
# HEED THE MKDEP WARNINGS.
|
1026 |
|
|
# ANYTHING CHANGED OR ADDED BETWEEN THE WARNING LINES MAY GO AWAY.
|
1027 |
|
|
.PHONY: dep dep-in dep-am
|
1028 |
|
|
|
1029 |
|
|
AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
|
1030 |
|
|
DEPTC_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
|
1031 |
|
|
ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
|
1032 |
|
|
subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
|
1033 |
|
|
$(INCDIR)/opcode/alpha.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
1034 |
|
|
$(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
|
1035 |
|
|
DEPTC_alpha_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1036 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1037 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h subsegs.h \
|
1038 |
|
|
$(INCDIR)/obstack.h struc-symbol.h ecoff.h $(INCDIR)/coff/sym.h \
|
1039 |
|
|
$(INCDIR)/coff/ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/elf/alpha.h \
|
1040 |
|
|
$(INCDIR)/elf/reloc-macros.h dwarf2dbg.h dw2gencfi.h \
|
1041 |
|
|
$(INCDIR)/elf/dwarf2.h $(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
|
1042 |
|
|
DEPTC_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h \
|
1043 |
|
|
subsegs.h $(INCDIR)/obstack.h struc-symbol.h ecoff.h \
|
1044 |
|
|
$(INCDIR)/opcode/alpha.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
1045 |
|
|
$(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
|
1046 |
|
|
DEPTC_arc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1047 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1048 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h dwarf2dbg.h \
|
1049 |
|
|
struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1050 |
|
|
$(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
|
1051 |
|
|
$(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
|
1052 |
|
|
DEPTC_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
|
1053 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1054 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h $(INCDIR)/opcode/arm.h \
|
1055 |
|
|
dwarf2dbg.h
|
1056 |
|
|
DEPTC_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
|
1057 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \
|
1058 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1059 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h $(INCDIR)/opcode/arm.h \
|
1060 |
|
|
dwarf2dbg.h
|
1061 |
|
|
DEPTC_arm_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1062 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1063 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h $(INCDIR)/safe-ctype.h \
|
1064 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h $(INCDIR)/opcode/arm.h \
|
1065 |
|
|
$(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h dw2gencfi.h \
|
1066 |
|
|
$(INCDIR)/elf/dwarf2.h dwarf2dbg.h
|
1067 |
|
|
DEPTC_avr_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1068 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1069 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h dwarf2dbg.h \
|
1070 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1071 |
|
|
$(INCDIR)/opcode/avr.h
|
1072 |
|
|
DEPTC_bfin_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1073 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1074 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-bfin.h dwarf2dbg.h \
|
1075 |
|
|
struc-symbol.h $(srcdir)/config/bfin-defs.h $(INCDIR)/obstack.h \
|
1076 |
|
|
$(INCDIR)/safe-ctype.h dwarf2dbg.h $(BFDDIR)/libbfd.h \
|
1077 |
|
|
$(INCDIR)/hashtab.h $(INCDIR)/elf/common.h $(INCDIR)/elf/bfin.h \
|
1078 |
|
|
$(INCDIR)/elf/reloc-macros.h $(srcdir)/config/bfin-aux.h \
|
1079 |
|
|
$(srcdir)/config/bfin-defs.h $(INCDIR)/opcode/bfin.h
|
1080 |
|
|
DEPTC_cr16_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1081 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1082 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-cr16.h dwarf2dbg.h \
|
1083 |
|
|
$(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/opcode/cr16.h \
|
1084 |
|
|
$(INCDIR)/elf/cr16.h $(INCDIR)/elf/reloc-macros.h
|
1085 |
|
|
DEPTC_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \
|
1086 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1087 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/cris.h \
|
1088 |
|
|
dwarf2dbg.h
|
1089 |
|
|
DEPTC_cris_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1090 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1091 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h dwarf2dbg.h \
|
1092 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1093 |
|
|
$(INCDIR)/opcode/cris.h dwarf2dbg.h
|
1094 |
|
|
DEPTC_crx_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1095 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1096 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-crx.h dwarf2dbg.h \
|
1097 |
|
|
$(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/opcode/crx.h \
|
1098 |
|
|
$(INCDIR)/elf/crx.h $(INCDIR)/elf/reloc-macros.h
|
1099 |
|
|
DEPTC_d10v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1100 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1101 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h $(INCDIR)/safe-ctype.h \
|
1102 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d10v.h \
|
1103 |
|
|
$(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
|
1104 |
|
|
DEPTC_d30v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1105 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1106 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h $(INCDIR)/safe-ctype.h \
|
1107 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d30v.h
|
1108 |
|
|
DEPTC_dlx_elf = $(INCDIR)/safe-ctype.h $(srcdir)/config/obj-elf.h \
|
1109 |
|
|
$(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
|
1110 |
|
|
$(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h \
|
1111 |
|
|
dwarf2dbg.h $(srcdir)/config/tc-dlx.h $(INCDIR)/opcode/dlx.h
|
1112 |
|
|
DEPTC_fr30_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1113 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1114 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h dwarf2dbg.h \
|
1115 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1116 |
|
|
$(srcdir)/../opcodes/fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \
|
1117 |
|
|
$(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
|
1118 |
|
|
$(srcdir)/../opcodes/fr30-opc.h cgen.h
|
1119 |
|
|
DEPTC_frv_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1120 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1121 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h subsegs.h \
|
1122 |
|
|
$(INCDIR)/obstack.h $(srcdir)/../opcodes/frv-desc.h \
|
1123 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
|
1124 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(srcdir)/../opcodes/frv-opc.h \
|
1125 |
|
|
cgen.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h $(INCDIR)/elf/common.h \
|
1126 |
|
|
$(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h
|
1127 |
|
|
DEPTC_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
|
1128 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h \
|
1129 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
|
1130 |
|
|
dwarf2dbg.h $(INCDIR)/opcode/h8300.h $(INCDIR)/safe-ctype.h
|
1131 |
|
|
DEPTC_h8300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1132 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1133 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h dwarf2dbg.h \
|
1134 |
|
|
subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h $(INCDIR)/opcode/h8300.h \
|
1135 |
|
|
$(INCDIR)/safe-ctype.h $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h
|
1136 |
|
|
DEPTC_hppa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1137 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1138 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h \
|
1139 |
|
|
$(BFDDIR)/elf-bfd.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
|
1140 |
|
|
$(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
|
1141 |
|
|
subsegs.h $(INCDIR)/obstack.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
1142 |
|
|
$(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h dwarf2dbg.h
|
1143 |
|
|
DEPTC_i370_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1144 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1145 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h dwarf2dbg.h \
|
1146 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1147 |
|
|
struc-symbol.h $(INCDIR)/opcode/i370.h $(INCDIR)/elf/i370.h \
|
1148 |
|
|
$(INCDIR)/elf/reloc-macros.h
|
1149 |
|
|
DEPTC_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
|
1150 |
|
|
$(srcdir)/../opcodes/i386-opc.h $(INCDIR)/opcode/i386.h \
|
1151 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1152 |
|
|
subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h dw2gencfi.h \
|
1153 |
|
|
$(INCDIR)/elf/dwarf2.h $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h \
|
1154 |
|
|
$(srcdir)/../opcodes/i386-init.h
|
1155 |
|
|
DEPTC_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
|
1156 |
|
|
$(srcdir)/../opcodes/i386-opc.h $(INCDIR)/opcode/i386.h \
|
1157 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \
|
1158 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1159 |
|
|
subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h dw2gencfi.h \
|
1160 |
|
|
$(INCDIR)/elf/dwarf2.h $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h \
|
1161 |
|
|
$(srcdir)/../opcodes/i386-init.h
|
1162 |
|
|
DEPTC_i386_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1163 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1164 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h $(srcdir)/../opcodes/i386-opc.h \
|
1165 |
|
|
$(INCDIR)/opcode/i386.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
|
1166 |
|
|
subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h dw2gencfi.h \
|
1167 |
|
|
$(INCDIR)/elf/dwarf2.h $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h \
|
1168 |
|
|
$(srcdir)/../opcodes/i386-init.h
|
1169 |
|
|
DEPTC_i860_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1170 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1171 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h dwarf2dbg.h \
|
1172 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1173 |
|
|
$(INCDIR)/opcode/i860.h $(INCDIR)/elf/i860.h $(INCDIR)/elf/reloc-macros.h
|
1174 |
|
|
DEPTC_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
|
1175 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h \
|
1176 |
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
|
1177 |
|
|
$(INCDIR)/opcode/i960.h
|
1178 |
|
|
DEPTC_i960_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1179 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1180 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h dwarf2dbg.h \
|
1181 |
|
|
$(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
|
1182 |
|
|
DEPTC_ia64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1183 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1184 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
|
1185 |
|
|
$(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
|
1186 |
|
|
dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/ia64.h \
|
1187 |
|
|
$(INCDIR)/elf/ia64.h
|
1188 |
|
|
DEPTC_ip2k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1189 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1190 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h dwarf2dbg.h \
|
1191 |
|
|
subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/ip2k-desc.h \
|
1192 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
|
1193 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(srcdir)/../opcodes/ip2k-opc.h \
|
1194 |
|
|
cgen.h $(INCDIR)/elf/common.h $(INCDIR)/elf/ip2k.h \
|
1195 |
|
|
$(INCDIR)/elf/reloc-macros.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h
|
1196 |
|
|
DEPTC_m32c_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1197 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1198 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32c.h dwarf2dbg.h \
|
1199 |
|
|
subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/m32c-desc.h \
|
1200 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
|
1201 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(srcdir)/../opcodes/m32c-opc.h \
|
1202 |
|
|
$(srcdir)/../opcodes/cgen-types.h ../bfd/bfd_stdint.h \
|
1203 |
|
|
$(srcdir)/../opcodes/cgen-ops.h cgen.h $(INCDIR)/elf/common.h \
|
1204 |
|
|
$(INCDIR)/elf/m32c.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/libbfd.h \
|
1205 |
|
|
$(INCDIR)/hashtab.h $(INCDIR)/safe-ctype.h
|
1206 |
|
|
DEPTC_m32r_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1207 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1208 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h dwarf2dbg.h \
|
1209 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1210 |
|
|
$(srcdir)/../opcodes/m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \
|
1211 |
|
|
$(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
|
1212 |
|
|
$(srcdir)/../opcodes/m32r-opc.h cgen.h $(INCDIR)/elf/m32r.h \
|
1213 |
|
|
$(INCDIR)/elf/reloc-macros.h
|
1214 |
|
|
DEPTC_m68hc11_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1215 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1216 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h dwarf2dbg.h \
|
1217 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1218 |
|
|
$(INCDIR)/opcode/m68hc11.h dwarf2dbg.h $(INCDIR)/elf/m68hc11.h \
|
1219 |
|
|
$(INCDIR)/elf/reloc-macros.h
|
1220 |
|
|
DEPTC_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
|
1221 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1222 |
|
|
$(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \
|
1223 |
|
|
dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \
|
1224 |
|
|
$(srcdir)/config/m68k-parse.h
|
1225 |
|
|
DEPTC_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
|
1226 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
|
1227 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1228 |
|
|
$(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \
|
1229 |
|
|
dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \
|
1230 |
|
|
$(srcdir)/config/m68k-parse.h
|
1231 |
|
|
DEPTC_m68k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1232 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1233 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h $(INCDIR)/safe-ctype.h \
|
1234 |
|
|
$(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \
|
1235 |
|
|
dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \
|
1236 |
|
|
$(srcdir)/config/m68k-parse.h $(INCDIR)/elf/m68k.h \
|
1237 |
|
|
$(INCDIR)/elf/reloc-macros.h
|
1238 |
|
|
DEPTC_maxq_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-maxq.h \
|
1239 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/maxq.h $(INCDIR)/coff/external.h \
|
1240 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1241 |
|
|
subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h $(srcdir)/config/tc-maxq.h \
|
1242 |
|
|
$(INCDIR)/opcode/maxq.h
|
1243 |
|
|
DEPTC_mcore_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mcore.h \
|
1244 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \
|
1245 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
|
1246 |
|
|
$(srcdir)/../opcodes/mcore-opc.h $(INCDIR)/safe-ctype.h
|
1247 |
|
|
DEPTC_mcore_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1248 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1249 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h dwarf2dbg.h \
|
1250 |
|
|
subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
|
1251 |
|
|
$(INCDIR)/safe-ctype.h $(INCDIR)/elf/mcore.h $(INCDIR)/elf/reloc-macros.h
|
1252 |
|
|
DEPTC_mep_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1253 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1254 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mep.h dwarf2dbg.h \
|
1255 |
|
|
dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mep-desc.h \
|
1256 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
|
1257 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(srcdir)/../opcodes/mep-opc.h \
|
1258 |
|
|
cgen.h $(INCDIR)/elf/common.h $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h \
|
1259 |
|
|
$(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h $(INCDIR)/xregex.h \
|
1260 |
|
|
$(INCDIR)/xregex2.h
|
1261 |
|
|
DEPTC_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
|
1262 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \
|
1263 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
|
1264 |
|
|
$(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h itbl-ops.h \
|
1265 |
|
|
dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(srcdir)/config/obj-elf.h \
|
1266 |
|
|
$(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
|
1267 |
|
|
$(INCDIR)/elf/internal.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
|
1268 |
|
|
ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
|
1269 |
|
|
DEPTC_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
|
1270 |
|
|
ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
|
1271 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
|
1272 |
|
|
$(INCDIR)/opcode/mips.h itbl-ops.h dwarf2dbg.h dw2gencfi.h \
|
1273 |
|
|
$(INCDIR)/elf/dwarf2.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1274 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1275 |
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
|
1276 |
|
|
ecoff.h
|
1277 |
|
|
DEPTC_mips_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1278 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1279 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h subsegs.h \
|
1280 |
|
|
$(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h \
|
1281 |
|
|
itbl-ops.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
1282 |
|
|
$(srcdir)/config/obj-elf.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
|
1283 |
|
|
ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
|
1284 |
|
|
DEPTC_mmix_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1285 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1286 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h dwarf2dbg.h \
|
1287 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/mmix.h \
|
1288 |
|
|
$(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \
|
1289 |
|
|
$(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/obstack.h
|
1290 |
|
|
DEPTC_mn10200_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1291 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1292 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h dwarf2dbg.h \
|
1293 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1294 |
|
|
$(INCDIR)/opcode/mn10200.h
|
1295 |
|
|
DEPTC_mn10300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1296 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1297 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h dwarf2dbg.h \
|
1298 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1299 |
|
|
$(INCDIR)/opcode/mn10300.h dwarf2dbg.h
|
1300 |
|
|
DEPTC_msp430_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1301 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1302 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h dwarf2dbg.h \
|
1303 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/msp430.h \
|
1304 |
|
|
$(INCDIR)/safe-ctype.h dwarf2dbg.h
|
1305 |
|
|
DEPTC_mt_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1306 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1307 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mt.h dwarf2dbg.h \
|
1308 |
|
|
dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mt-desc.h \
|
1309 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
|
1310 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(srcdir)/../opcodes/mt-opc.h \
|
1311 |
|
|
cgen.h $(INCDIR)/elf/common.h $(INCDIR)/elf/mt.h $(INCDIR)/elf/reloc-macros.h \
|
1312 |
|
|
$(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h
|
1313 |
|
|
DEPTC_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
|
1314 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ns32k.h \
|
1315 |
|
|
$(INCDIR)/obstack.h
|
1316 |
|
|
DEPTC_openrisc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1317 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1318 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
|
1319 |
|
|
dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/openrisc-desc.h \
|
1320 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
|
1321 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(srcdir)/../opcodes/openrisc-opc.h \
|
1322 |
|
|
cgen.h
|
1323 |
|
|
DEPTC_or32_coff = $(INCDIR)/safe-ctype.h $(srcdir)/config/obj-coff.h \
|
1324 |
|
|
$(srcdir)/config/tc-or32.h $(INCDIR)/coff/internal.h \
|
1325 |
|
|
$(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
|
1326 |
|
|
$(INCDIR)/opcode/or32.h $(INCDIR)/elf/or32.h $(INCDIR)/elf/reloc-macros.h
|
1327 |
|
|
DEPTC_or32_elf = $(INCDIR)/safe-ctype.h $(srcdir)/config/obj-elf.h \
|
1328 |
|
|
$(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
|
1329 |
|
|
$(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h \
|
1330 |
|
|
dwarf2dbg.h $(INCDIR)/opcode/or32.h $(INCDIR)/elf/or32.h \
|
1331 |
|
|
$(INCDIR)/elf/reloc-macros.h
|
1332 |
|
|
DEPTC_pdp11_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-pdp11.h \
|
1333 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1334 |
|
|
$(INCDIR)/opcode/pdp11.h
|
1335 |
|
|
DEPTC_pdp11_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1336 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1337 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h dwarf2dbg.h \
|
1338 |
|
|
$(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
|
1339 |
|
|
DEPTC_pj_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1340 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1341 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h dwarf2dbg.h \
|
1342 |
|
|
$(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pj.h
|
1343 |
|
|
DEPTC_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
|
1344 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h \
|
1345 |
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
|
1346 |
|
|
$(INCDIR)/obstack.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
1347 |
|
|
$(INCDIR)/opcode/ppc.h
|
1348 |
|
|
DEPTC_ppc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1349 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1350 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h dwarf2dbg.h \
|
1351 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1352 |
|
|
dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/ppc.h \
|
1353 |
|
|
$(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
|
1354 |
|
|
DEPTC_s390_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1355 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1356 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h dwarf2dbg.h \
|
1357 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1358 |
|
|
struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
1359 |
|
|
$(INCDIR)/opcode/s390.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h
|
1360 |
|
|
DEPTC_score_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1361 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1362 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-score.h dwarf2dbg.h \
|
1363 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
|
1364 |
|
|
$(INCDIR)/opcode/score-inst.h $(INCDIR)/opcode/score-datadep.h \
|
1365 |
|
|
struc-symbol.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h \
|
1366 |
|
|
dwarf2dbg.h
|
1367 |
|
|
DEPTC_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
|
1368 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h \
|
1369 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
|
1370 |
|
|
$(srcdir)/../opcodes/sh-opc.h $(INCDIR)/safe-ctype.h \
|
1371 |
|
|
struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
|
1372 |
|
|
DEPTC_sh_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1373 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1374 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h subsegs.h \
|
1375 |
|
|
$(INCDIR)/obstack.h $(srcdir)/../opcodes/sh-opc.h $(INCDIR)/safe-ctype.h \
|
1376 |
|
|
struc-symbol.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
|
1377 |
|
|
dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
|
1378 |
|
|
DEPTC_sh64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1379 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1380 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
|
1381 |
|
|
$(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf32-sh64.h \
|
1382 |
|
|
$(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/sh64-opc.h \
|
1383 |
|
|
$(srcdir)/config/tc-sh.c subsegs.h $(INCDIR)/obstack.h \
|
1384 |
|
|
$(srcdir)/../opcodes/sh-opc.h $(INCDIR)/safe-ctype.h \
|
1385 |
|
|
struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
|
1386 |
|
|
DEPTC_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
|
1387 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1388 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h \
|
1389 |
|
|
dw2gencfi.h $(INCDIR)/elf/dwarf2.h
|
1390 |
|
|
DEPTC_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
|
1391 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h \
|
1392 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1393 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h \
|
1394 |
|
|
dw2gencfi.h $(INCDIR)/elf/dwarf2.h
|
1395 |
|
|
DEPTC_sparc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1396 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1397 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h dwarf2dbg.h \
|
1398 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1399 |
|
|
$(INCDIR)/opcode/sparc.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
1400 |
|
|
$(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
|
1401 |
|
|
dwarf2dbg.h
|
1402 |
|
|
DEPTC_spu_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1403 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1404 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-spu.h $(INCDIR)/opcode/spu.h \
|
1405 |
|
|
$(INCDIR)/opcode/spu-insns.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
|
1406 |
|
|
subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h $(INCDIR)/opcode/spu-insns.h
|
1407 |
|
|
DEPTC_tic30_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tic30.h \
|
1408 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1409 |
|
|
$(INCDIR)/opcode/tic30.h
|
1410 |
|
|
DEPTC_tic30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic30.h \
|
1411 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h \
|
1412 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1413 |
|
|
$(INCDIR)/opcode/tic30.h
|
1414 |
|
|
DEPTC_tic4x_coff = $(INCDIR)/safe-ctype.h $(srcdir)/config/obj-coff.h \
|
1415 |
|
|
$(srcdir)/config/tc-tic4x.h $(INCDIR)/coff/internal.h \
|
1416 |
|
|
$(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
|
1417 |
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/opcode/tic4x.h subsegs.h \
|
1418 |
|
|
$(INCDIR)/obstack.h $(INCDIR)/obstack.h
|
1419 |
|
|
DEPTC_tic54x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic54x.h \
|
1420 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \
|
1421 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1422 |
|
|
sb.h macro.h subsegs.h $(INCDIR)/obstack.h struc-symbol.h \
|
1423 |
|
|
$(INCDIR)/opcode/tic54x.h $(srcdir)/config/obj-coff.h
|
1424 |
|
|
DEPTC_v850_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1425 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1426 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h \
|
1427 |
|
|
$(INCDIR)/elf/reloc-macros.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
|
1428 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h \
|
1429 |
|
|
dwarf2dbg.h
|
1430 |
|
|
DEPTC_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
|
1431 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(srcdir)/config/vax-inst.h \
|
1432 |
|
|
$(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
|
1433 |
|
|
$(INCDIR)/opcode/vax.h
|
1434 |
|
|
DEPTC_vax_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1435 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1436 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h dwarf2dbg.h \
|
1437 |
|
|
$(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \
|
1438 |
|
|
$(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h $(INCDIR)/elf/vax.h \
|
1439 |
|
|
$(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/vax.h
|
1440 |
|
|
DEPTC_xc16x_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1441 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1442 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xc16x.h dwarf2dbg.h \
|
1443 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1444 |
|
|
$(srcdir)/../opcodes/xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \
|
1445 |
|
|
$(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \
|
1446 |
|
|
$(srcdir)/../opcodes/xc16x-opc.h cgen.h dwarf2dbg.h \
|
1447 |
|
|
$(INCDIR)/elf/xc16x.h $(INCDIR)/elf/reloc-macros.h
|
1448 |
|
|
DEPTC_xstormy16_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1449 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1450 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
|
1451 |
|
|
dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/xstormy16-desc.h \
|
1452 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \
|
1453 |
|
|
$(INCDIR)/opcode/cgen-bitset.h $(srcdir)/../opcodes/xstormy16-opc.h \
|
1454 |
|
|
cgen.h
|
1455 |
|
|
DEPTC_xtensa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1456 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1457 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h $(INCDIR)/xtensa-isa.h \
|
1458 |
|
|
$(INCDIR)/xtensa-config.h sb.h $(INCDIR)/safe-ctype.h \
|
1459 |
|
|
$(srcdir)/config/tc-xtensa.h subsegs.h $(INCDIR)/obstack.h \
|
1460 |
|
|
$(srcdir)/config/xtensa-relax.h dwarf2dbg.h $(srcdir)/config/xtensa-istack.h \
|
1461 |
|
|
struc-symbol.h $(INCDIR)/xtensa-config.h
|
1462 |
|
|
DEPTC_z80_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z80.h \
|
1463 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/z80.h $(INCDIR)/coff/external.h \
|
1464 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1465 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1466 |
|
|
DEPTC_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \
|
1467 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h \
|
1468 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
|
1469 |
|
|
$(srcdir)/../opcodes/z8k-opc.h
|
1470 |
|
|
DEPTC_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \
|
1471 |
|
|
$(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h \
|
1472 |
|
|
$(BFDDIR)/som.h
|
1473 |
|
|
DEPTC_i386_multi = $(DEPTC_i386_aout) $(DEPTC_i386_coff) \
|
1474 |
|
|
$(DEPTC_i386_elf)
|
1475 |
|
|
DEPTC_mips_multi = $(DEPTC_mips_coff) $(DEPTC_mips_ecoff) \
|
1476 |
|
|
$(DEPTC_mips_elf)
|
1477 |
|
|
DEPTC_cris_multi = $(DEPTC_cris_aout) $(DEPTC_cris_elf)
|
1478 |
|
|
DEPOBJ_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
|
1479 |
|
|
ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
|
1480 |
|
|
$(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
|
1481 |
|
|
$(BFDDIR)/libecoff.h
|
1482 |
|
|
DEPOBJ_alpha_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1483 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1484 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h $(INCDIR)/safe-ctype.h \
|
1485 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1486 |
|
|
dwarf2dbg.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
|
1487 |
|
|
$(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
|
1488 |
|
|
$(INCDIR)/aout/aout64.h
|
1489 |
|
|
DEPOBJ_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h
|
1490 |
|
|
DEPOBJ_arc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1491 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1492 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h dwarf2dbg.h \
|
1493 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1494 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1495 |
|
|
DEPOBJ_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
|
1496 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1497 |
|
|
$(INCDIR)/obstack.h
|
1498 |
|
|
DEPOBJ_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
|
1499 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \
|
1500 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1501 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1502 |
|
|
DEPOBJ_arm_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1503 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1504 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h $(INCDIR)/safe-ctype.h \
|
1505 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1506 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1507 |
|
|
DEPOBJ_avr_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1508 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1509 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h dwarf2dbg.h \
|
1510 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1511 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1512 |
|
|
DEPOBJ_bfin_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1513 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1514 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-bfin.h dwarf2dbg.h \
|
1515 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1516 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1517 |
|
|
DEPOBJ_cr16_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1518 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1519 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-cr16.h dwarf2dbg.h \
|
1520 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1521 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1522 |
|
|
DEPOBJ_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \
|
1523 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1524 |
|
|
$(INCDIR)/obstack.h
|
1525 |
|
|
DEPOBJ_cris_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1526 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1527 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h dwarf2dbg.h \
|
1528 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1529 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1530 |
|
|
DEPOBJ_crx_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1531 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1532 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-crx.h dwarf2dbg.h \
|
1533 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1534 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1535 |
|
|
DEPOBJ_d10v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1536 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1537 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h $(INCDIR)/safe-ctype.h \
|
1538 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1539 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1540 |
|
|
DEPOBJ_d30v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1541 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1542 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h $(INCDIR)/safe-ctype.h \
|
1543 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1544 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1545 |
|
|
DEPOBJ_dlx_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1546 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1547 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h dwarf2dbg.h \
|
1548 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1549 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1550 |
|
|
DEPOBJ_fr30_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1551 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1552 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h dwarf2dbg.h \
|
1553 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1554 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1555 |
|
|
DEPOBJ_frv_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1556 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1557 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h $(INCDIR)/safe-ctype.h \
|
1558 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1559 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1560 |
|
|
DEPOBJ_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
|
1561 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h \
|
1562 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1563 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1564 |
|
|
DEPOBJ_h8300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1565 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1566 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h dwarf2dbg.h \
|
1567 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1568 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1569 |
|
|
DEPOBJ_hppa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1570 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1571 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h \
|
1572 |
|
|
$(BFDDIR)/elf-bfd.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
|
1573 |
|
|
$(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
|
1574 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1575 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1576 |
|
|
DEPOBJ_i370_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1577 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1578 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h dwarf2dbg.h \
|
1579 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1580 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/elf/i370.h \
|
1581 |
|
|
$(INCDIR)/elf/reloc-macros.h $(INCDIR)/aout/aout64.h
|
1582 |
|
|
DEPOBJ_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
|
1583 |
|
|
$(srcdir)/../opcodes/i386-opc.h $(INCDIR)/opcode/i386.h \
|
1584 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1585 |
|
|
$(INCDIR)/obstack.h
|
1586 |
|
|
DEPOBJ_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
|
1587 |
|
|
$(srcdir)/../opcodes/i386-opc.h $(INCDIR)/opcode/i386.h \
|
1588 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \
|
1589 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1590 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1591 |
|
|
DEPOBJ_i386_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1592 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1593 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h $(srcdir)/../opcodes/i386-opc.h \
|
1594 |
|
|
$(INCDIR)/opcode/i386.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
|
1595 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1596 |
|
|
dwarf2dbg.h $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h \
|
1597 |
|
|
$(INCDIR)/aout/aout64.h
|
1598 |
|
|
DEPOBJ_i860_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1599 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1600 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h dwarf2dbg.h \
|
1601 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1602 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1603 |
|
|
DEPOBJ_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
|
1604 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h \
|
1605 |
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
|
1606 |
|
|
DEPOBJ_i960_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1607 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1608 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h dwarf2dbg.h \
|
1609 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1610 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1611 |
|
|
DEPOBJ_ia64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1612 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1613 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
|
1614 |
|
|
$(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
|
1615 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1616 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1617 |
|
|
DEPOBJ_ip2k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1618 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1619 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h dwarf2dbg.h \
|
1620 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1621 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1622 |
|
|
DEPOBJ_m32c_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1623 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1624 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32c.h dwarf2dbg.h \
|
1625 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1626 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1627 |
|
|
DEPOBJ_m32r_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1628 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1629 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h dwarf2dbg.h \
|
1630 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1631 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1632 |
|
|
DEPOBJ_m68hc11_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1633 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1634 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h dwarf2dbg.h \
|
1635 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1636 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1637 |
|
|
DEPOBJ_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
|
1638 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1639 |
|
|
$(INCDIR)/obstack.h
|
1640 |
|
|
DEPOBJ_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
|
1641 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
|
1642 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1643 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1644 |
|
|
DEPOBJ_m68k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1645 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1646 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h $(INCDIR)/safe-ctype.h \
|
1647 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1648 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1649 |
|
|
DEPOBJ_maxq_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-maxq.h \
|
1650 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/maxq.h $(INCDIR)/coff/external.h \
|
1651 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1652 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1653 |
|
|
DEPOBJ_mcore_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mcore.h \
|
1654 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \
|
1655 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1656 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1657 |
|
|
DEPOBJ_mcore_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1658 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1659 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h dwarf2dbg.h \
|
1660 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1661 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1662 |
|
|
DEPOBJ_mep_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1663 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1664 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mep.h dwarf2dbg.h \
|
1665 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1666 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/elf/mep.h \
|
1667 |
|
|
$(INCDIR)/elf/reloc-macros.h $(INCDIR)/aout/aout64.h
|
1668 |
|
|
DEPOBJ_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
|
1669 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \
|
1670 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1671 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1672 |
|
|
DEPOBJ_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
|
1673 |
|
|
ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
|
1674 |
|
|
$(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
|
1675 |
|
|
$(BFDDIR)/libecoff.h
|
1676 |
|
|
DEPOBJ_mips_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1677 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1678 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h $(INCDIR)/safe-ctype.h \
|
1679 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1680 |
|
|
dwarf2dbg.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
|
1681 |
|
|
$(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/aout/aout64.h
|
1682 |
|
|
DEPOBJ_mmix_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1683 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1684 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h dwarf2dbg.h \
|
1685 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1686 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1687 |
|
|
DEPOBJ_mn10200_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1688 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1689 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h dwarf2dbg.h \
|
1690 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1691 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1692 |
|
|
DEPOBJ_mn10300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1693 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1694 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h dwarf2dbg.h \
|
1695 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1696 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1697 |
|
|
DEPOBJ_msp430_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1698 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1699 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h dwarf2dbg.h \
|
1700 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1701 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1702 |
|
|
DEPOBJ_mt_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1703 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1704 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mt.h dwarf2dbg.h \
|
1705 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1706 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1707 |
|
|
DEPOBJ_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
|
1708 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1709 |
|
|
$(INCDIR)/obstack.h
|
1710 |
|
|
DEPOBJ_openrisc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1711 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1712 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
|
1713 |
|
|
dwarf2dbg.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1714 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1715 |
|
|
DEPOBJ_or32_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \
|
1716 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h \
|
1717 |
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
|
1718 |
|
|
DEPOBJ_or32_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1719 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1720 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h dwarf2dbg.h \
|
1721 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1722 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1723 |
|
|
DEPOBJ_pdp11_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-pdp11.h \
|
1724 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1725 |
|
|
$(INCDIR)/obstack.h
|
1726 |
|
|
DEPOBJ_pdp11_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1727 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1728 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h dwarf2dbg.h \
|
1729 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1730 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1731 |
|
|
DEPOBJ_pj_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1732 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1733 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h dwarf2dbg.h \
|
1734 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1735 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1736 |
|
|
DEPOBJ_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
|
1737 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h \
|
1738 |
|
|
$(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
|
1739 |
|
|
DEPOBJ_ppc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1740 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1741 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h dwarf2dbg.h \
|
1742 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1743 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/elf/ppc.h \
|
1744 |
|
|
$(INCDIR)/elf/reloc-macros.h $(INCDIR)/aout/aout64.h
|
1745 |
|
|
DEPOBJ_s390_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1746 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1747 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h dwarf2dbg.h \
|
1748 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1749 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1750 |
|
|
DEPOBJ_score_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1751 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1752 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-score.h dwarf2dbg.h \
|
1753 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1754 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1755 |
|
|
DEPOBJ_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
|
1756 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h \
|
1757 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1758 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1759 |
|
|
DEPOBJ_sh_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1760 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1761 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h $(INCDIR)/safe-ctype.h \
|
1762 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1763 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1764 |
|
|
DEPOBJ_sh64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1765 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1766 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
|
1767 |
|
|
$(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf32-sh64.h \
|
1768 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1769 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1770 |
|
|
DEPOBJ_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
|
1771 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1772 |
|
|
$(INCDIR)/obstack.h
|
1773 |
|
|
DEPOBJ_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
|
1774 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h \
|
1775 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1776 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1777 |
|
|
DEPOBJ_sparc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1778 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1779 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h dwarf2dbg.h \
|
1780 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1781 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1782 |
|
|
DEPOBJ_spu_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1783 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1784 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-spu.h $(INCDIR)/opcode/spu.h \
|
1785 |
|
|
$(INCDIR)/opcode/spu-insns.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
|
1786 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1787 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1788 |
|
|
DEPOBJ_tic30_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tic30.h \
|
1789 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1790 |
|
|
$(INCDIR)/obstack.h
|
1791 |
|
|
DEPOBJ_tic30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic30.h \
|
1792 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h \
|
1793 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1794 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1795 |
|
|
DEPOBJ_tic4x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic4x.h \
|
1796 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \
|
1797 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1798 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1799 |
|
|
DEPOBJ_tic54x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic54x.h \
|
1800 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \
|
1801 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1802 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1803 |
|
|
DEPOBJ_v850_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1804 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1805 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h \
|
1806 |
|
|
$(INCDIR)/elf/reloc-macros.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
|
1807 |
|
|
subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1808 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1809 |
|
|
DEPOBJ_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
|
1810 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
|
1811 |
|
|
$(INCDIR)/obstack.h
|
1812 |
|
|
DEPOBJ_vax_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1813 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1814 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h dwarf2dbg.h \
|
1815 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1816 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1817 |
|
|
DEPOBJ_xc16x_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1818 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1819 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xc16x.h dwarf2dbg.h \
|
1820 |
|
|
$(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1821 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1822 |
|
|
DEPOBJ_xstormy16_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1823 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1824 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
|
1825 |
|
|
dwarf2dbg.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
1826 |
|
|
$(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1827 |
|
|
DEPOBJ_xtensa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1828 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
|
1829 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h $(INCDIR)/xtensa-isa.h \
|
1830 |
|
|
$(INCDIR)/xtensa-config.h $(INCDIR)/safe-ctype.h subsegs.h \
|
1831 |
|
|
$(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
|
1832 |
|
|
dwarf2dbg.h $(INCDIR)/aout/aout64.h
|
1833 |
|
|
DEPOBJ_z80_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z80.h \
|
1834 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/z80.h $(INCDIR)/coff/external.h \
|
1835 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1836 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1837 |
|
|
DEPOBJ_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \
|
1838 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h \
|
1839 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
|
1840 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
1841 |
|
|
DEPOBJ_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \
|
1842 |
|
|
$(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(BFDDIR)/som.h \
|
1843 |
|
|
$(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
|
1844 |
|
|
DEPOBJ_i386_multi = $(DEPOBJ_i386_aout) $(DEPOBJ_i386_coff) \
|
1845 |
|
|
$(DEPOBJ_i386_elf)
|
1846 |
|
|
DEPOBJ_mips_multi = $(DEPOBJ_mips_coff) $(DEPOBJ_mips_ecoff) \
|
1847 |
|
|
$(DEPOBJ_mips_elf)
|
1848 |
|
|
DEPOBJ_cris_multi = $(DEPOBJ_cris_aout) $(DEPOBJ_cris_elf)
|
1849 |
|
|
DEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-alpha.h \
|
1850 |
|
|
ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
|
1851 |
|
|
DEP_alpha_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1852 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1853 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-alpha.h
|
1854 |
|
|
DEP_alpha_evax = $(srcdir)/config/obj-evax.h $(srcdir)/config/tc-alpha.h
|
1855 |
|
|
DEP_arc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1856 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1857 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-arc.h dwarf2dbg.h \
|
1858 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1859 |
|
|
$(BFDDIR)/libcoff.h
|
1860 |
|
|
DEP_arm_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-arm.h \
|
1861 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
1862 |
|
|
DEP_arm_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-arm.h \
|
1863 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \
|
1864 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
1865 |
|
|
DEP_arm_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1866 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1867 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-arm.h
|
1868 |
|
|
DEP_avr_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1869 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1870 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-avr.h dwarf2dbg.h \
|
1871 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1872 |
|
|
$(BFDDIR)/libcoff.h
|
1873 |
|
|
DEP_bfin_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1874 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1875 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-bfin.h dwarf2dbg.h \
|
1876 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1877 |
|
|
$(BFDDIR)/libcoff.h
|
1878 |
|
|
DEP_cr16_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1879 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1880 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-cr16.h dwarf2dbg.h \
|
1881 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1882 |
|
|
$(BFDDIR)/libcoff.h
|
1883 |
|
|
DEP_cris_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-cris.h \
|
1884 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
1885 |
|
|
DEP_cris_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1886 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1887 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-cris.h dwarf2dbg.h \
|
1888 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1889 |
|
|
$(BFDDIR)/libcoff.h
|
1890 |
|
|
DEP_crx_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1891 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1892 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-crx.h dwarf2dbg.h \
|
1893 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1894 |
|
|
$(BFDDIR)/libcoff.h
|
1895 |
|
|
DEP_d10v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1896 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1897 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-d10v.h
|
1898 |
|
|
DEP_d30v_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1899 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1900 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-d30v.h
|
1901 |
|
|
DEP_dlx_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1902 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1903 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h dwarf2dbg.h \
|
1904 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1905 |
|
|
$(BFDDIR)/libcoff.h
|
1906 |
|
|
DEP_fr30_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1907 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1908 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-fr30.h dwarf2dbg.h \
|
1909 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1910 |
|
|
$(BFDDIR)/libcoff.h
|
1911 |
|
|
DEP_frv_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1912 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1913 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-frv.h
|
1914 |
|
|
DEP_h8300_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-h8300.h \
|
1915 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h \
|
1916 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
1917 |
|
|
DEP_h8300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1918 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1919 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-h8300.h dwarf2dbg.h \
|
1920 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1921 |
|
|
$(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h
|
1922 |
|
|
DEP_hppa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1923 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1924 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h \
|
1925 |
|
|
$(BFDDIR)/elf-bfd.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
|
1926 |
|
|
$(INCDIR)/elf/reloc-macros.h
|
1927 |
|
|
DEP_i370_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1928 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1929 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i370.h dwarf2dbg.h \
|
1930 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1931 |
|
|
$(BFDDIR)/libcoff.h
|
1932 |
|
|
DEP_i386_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-i386.h \
|
1933 |
|
|
$(srcdir)/../opcodes/i386-opc.h $(INCDIR)/opcode/i386.h \
|
1934 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
1935 |
|
|
DEP_i386_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i386.h \
|
1936 |
|
|
$(srcdir)/../opcodes/i386-opc.h $(INCDIR)/opcode/i386.h \
|
1937 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \
|
1938 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
1939 |
|
|
DEP_i386_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1940 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1941 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i386.h $(srcdir)/../opcodes/i386-opc.h \
|
1942 |
|
|
$(INCDIR)/opcode/i386.h dwarf2dbg.h $(srcdir)/config/obj-coff.h \
|
1943 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \
|
1944 |
|
|
$(BFDDIR)/libcoff.h
|
1945 |
|
|
DEP_i860_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1946 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1947 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i860.h dwarf2dbg.h \
|
1948 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1949 |
|
|
$(BFDDIR)/libcoff.h
|
1950 |
|
|
DEP_i960_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-i960.h \
|
1951 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h \
|
1952 |
|
|
$(INCDIR)/bfdlink.h
|
1953 |
|
|
DEP_i960_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1954 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1955 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-i960.h dwarf2dbg.h \
|
1956 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1957 |
|
|
$(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h
|
1958 |
|
|
DEP_ia64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1959 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1960 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
|
1961 |
|
|
$(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h
|
1962 |
|
|
DEP_ip2k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1963 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1964 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ip2k.h dwarf2dbg.h \
|
1965 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1966 |
|
|
$(BFDDIR)/libcoff.h
|
1967 |
|
|
DEP_m32c_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1968 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1969 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32c.h dwarf2dbg.h \
|
1970 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1971 |
|
|
$(BFDDIR)/libcoff.h
|
1972 |
|
|
DEP_m32r_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1973 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1974 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m32r.h dwarf2dbg.h \
|
1975 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1976 |
|
|
$(BFDDIR)/libcoff.h
|
1977 |
|
|
DEP_m68hc11_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1978 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1979 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68hc11.h dwarf2dbg.h \
|
1980 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
1981 |
|
|
$(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h
|
1982 |
|
|
DEP_m68k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-m68k.h \
|
1983 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
1984 |
|
|
DEP_m68k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-m68k.h \
|
1985 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
|
1986 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
1987 |
|
|
DEP_m68k_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1988 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1989 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-m68k.h
|
1990 |
|
|
DEP_maxq_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-maxq.h \
|
1991 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/maxq.h $(INCDIR)/coff/external.h \
|
1992 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
1993 |
|
|
DEP_mcore_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mcore.h \
|
1994 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \
|
1995 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
1996 |
|
|
DEP_mcore_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
1997 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
1998 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mcore.h dwarf2dbg.h \
|
1999 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2000 |
|
|
$(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h
|
2001 |
|
|
DEP_mep_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2002 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2003 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mep.h dwarf2dbg.h \
|
2004 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2005 |
|
|
$(BFDDIR)/libcoff.h
|
2006 |
|
|
DEP_mips_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-mips.h \
|
2007 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \
|
2008 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
2009 |
|
|
DEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h $(srcdir)/config/tc-mips.h \
|
2010 |
|
|
ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
|
2011 |
|
|
DEP_mips_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2012 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2013 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mips.h
|
2014 |
|
|
DEP_mmix_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2015 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2016 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mmix.h dwarf2dbg.h \
|
2017 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2018 |
|
|
$(BFDDIR)/libcoff.h
|
2019 |
|
|
DEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2020 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2021 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10200.h dwarf2dbg.h \
|
2022 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2023 |
|
|
$(BFDDIR)/libcoff.h
|
2024 |
|
|
DEP_mn10300_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2025 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2026 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mn10300.h dwarf2dbg.h \
|
2027 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2028 |
|
|
$(BFDDIR)/libcoff.h
|
2029 |
|
|
DEP_msp430_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2030 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2031 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-msp430.h dwarf2dbg.h \
|
2032 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2033 |
|
|
$(BFDDIR)/libcoff.h
|
2034 |
|
|
DEP_mt_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2035 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2036 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-mt.h dwarf2dbg.h \
|
2037 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2038 |
|
|
$(BFDDIR)/libcoff.h
|
2039 |
|
|
DEP_ns32k_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-ns32k.h \
|
2040 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
2041 |
|
|
DEP_openrisc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2042 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2043 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-openrisc.h \
|
2044 |
|
|
dwarf2dbg.h $(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2045 |
|
|
$(BFDDIR)/libcoff.h
|
2046 |
|
|
DEP_or32_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-or32.h \
|
2047 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h \
|
2048 |
|
|
$(INCDIR)/bfdlink.h
|
2049 |
|
|
DEP_or32_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2050 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2051 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-or32.h dwarf2dbg.h \
|
2052 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2053 |
|
|
$(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h
|
2054 |
|
|
DEP_pdp11_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-pdp11.h \
|
2055 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
2056 |
|
|
DEP_pdp11_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2057 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2058 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-pdp11.h dwarf2dbg.h \
|
2059 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2060 |
|
|
$(BFDDIR)/libcoff.h
|
2061 |
|
|
DEP_pj_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2062 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2063 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-pj.h dwarf2dbg.h \
|
2064 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2065 |
|
|
$(BFDDIR)/libcoff.h
|
2066 |
|
|
DEP_ppc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-ppc.h \
|
2067 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h \
|
2068 |
|
|
$(INCDIR)/bfdlink.h
|
2069 |
|
|
DEP_ppc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2070 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2071 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-ppc.h dwarf2dbg.h \
|
2072 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2073 |
|
|
$(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h
|
2074 |
|
|
DEP_s390_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2075 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2076 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-s390.h dwarf2dbg.h \
|
2077 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2078 |
|
|
$(BFDDIR)/libcoff.h
|
2079 |
|
|
DEP_score_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2080 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2081 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-score.h dwarf2dbg.h \
|
2082 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2083 |
|
|
$(BFDDIR)/libcoff.h
|
2084 |
|
|
DEP_sh_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sh.h \
|
2085 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h \
|
2086 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
2087 |
|
|
DEP_sh_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2088 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2089 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh.h
|
2090 |
|
|
DEP_sh64_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2091 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2092 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
|
2093 |
|
|
$(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf32-sh64.h
|
2094 |
|
|
DEP_sparc_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-sparc.h \
|
2095 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
2096 |
|
|
DEP_sparc_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-sparc.h \
|
2097 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h \
|
2098 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
2099 |
|
|
DEP_sparc_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2100 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2101 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-sparc.h dwarf2dbg.h \
|
2102 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2103 |
|
|
$(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h
|
2104 |
|
|
DEP_spu_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2105 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2106 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-spu.h $(INCDIR)/opcode/spu.h \
|
2107 |
|
|
$(INCDIR)/opcode/spu-insns.h dwarf2dbg.h $(srcdir)/config/obj-coff.h \
|
2108 |
|
|
$(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h
|
2109 |
|
|
DEP_tic30_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-tic30.h \
|
2110 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
2111 |
|
|
DEP_tic30_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic30.h \
|
2112 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h \
|
2113 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
2114 |
|
|
DEP_tic4x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic4x.h \
|
2115 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \
|
2116 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
2117 |
|
|
DEP_tic54x_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-tic54x.h \
|
2118 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \
|
2119 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
2120 |
|
|
DEP_v850_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2121 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2122 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h \
|
2123 |
|
|
$(INCDIR)/elf/reloc-macros.h dwarf2dbg.h $(srcdir)/config/obj-coff.h \
|
2124 |
|
|
$(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h
|
2125 |
|
|
DEP_vax_aout = $(srcdir)/config/obj-aout.h $(srcdir)/config/tc-vax.h \
|
2126 |
|
|
$(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
|
2127 |
|
|
DEP_vax_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2128 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2129 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-vax.h dwarf2dbg.h \
|
2130 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2131 |
|
|
$(BFDDIR)/libcoff.h
|
2132 |
|
|
DEP_xc16x_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2133 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2134 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xc16x.h dwarf2dbg.h \
|
2135 |
|
|
$(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2136 |
|
|
$(BFDDIR)/libcoff.h
|
2137 |
|
|
DEP_xstormy16_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2138 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2139 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xstormy16.h \
|
2140 |
|
|
dwarf2dbg.h $(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
|
2141 |
|
|
$(BFDDIR)/libcoff.h
|
2142 |
|
|
DEP_xtensa_elf = $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
|
2143 |
|
|
$(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
|
2144 |
|
|
$(INCDIR)/bfdlink.h $(srcdir)/config/tc-xtensa.h $(INCDIR)/xtensa-isa.h \
|
2145 |
|
|
$(INCDIR)/xtensa-config.h
|
2146 |
|
|
DEP_z80_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z80.h \
|
2147 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/z80.h $(INCDIR)/coff/external.h \
|
2148 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
2149 |
|
|
DEP_z8k_coff = $(srcdir)/config/obj-coff.h $(srcdir)/config/tc-z8k.h \
|
2150 |
|
|
$(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h \
|
2151 |
|
|
$(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
|
2152 |
|
|
DEP_hppa_som = $(BFDDIR)/som.h
|
2153 |
|
|
DEP_i386_multi = $(DEP_i386_aout) $(DEP_i386_coff) \
|
2154 |
|
|
$(DEP_i386_elf)
|
2155 |
|
|
DEP_mips_multi = $(DEP_mips_coff) $(DEP_mips_ecoff) \
|
2156 |
|
|
$(DEP_mips_elf)
|
2157 |
|
|
DEP_cris_multi = $(DEP_cris_aout) $(DEP_cris_elf)
|
2158 |
|
|
BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
|
2159 |
|
|
#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
|
2160 |
|
|
app.o: app.c
|
2161 |
|
|
as.o: as.c subsegs.h $(INCDIR)/obstack.h output-file.h \
|
2162 |
|
|
sb.h macro.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
2163 |
|
|
../bfd/bfdver.h
|
2164 |
|
|
atof-generic.o: atof-generic.c $(INCDIR)/safe-ctype.h
|
2165 |
|
|
cond.o: cond.c sb.h macro.h $(INCDIR)/obstack.h
|
2166 |
|
|
depend.o: depend.c
|
2167 |
|
|
dwarf2dbg.o: dwarf2dbg.c $(INCDIR)/safe-ctype.h dwarf2dbg.h \
|
2168 |
|
|
$(INCDIR)/filenames.h subsegs.h $(INCDIR)/obstack.h \
|
2169 |
|
|
$(INCDIR)/elf/dwarf2.h
|
2170 |
|
|
dw2gencfi.o: dw2gencfi.c dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
|
2171 |
|
|
subsegs.h $(INCDIR)/obstack.h
|
2172 |
|
|
ecoff.o: ecoff.c ecoff.h
|
2173 |
|
|
ehopt.o: ehopt.c subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/dwarf2.h
|
2174 |
|
|
expr.o: expr.c $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h
|
2175 |
|
|
flonum-copy.o: flonum-copy.c
|
2176 |
|
|
flonum-konst.o: flonum-konst.c
|
2177 |
|
|
flonum-mult.o: flonum-mult.c
|
2178 |
|
|
frags.o: frags.c subsegs.h $(INCDIR)/obstack.h
|
2179 |
|
|
hash.o: hash.c $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h
|
2180 |
|
|
input-file.o: input-file.c input-file.h $(INCDIR)/safe-ctype.h
|
2181 |
|
|
input-scrub.o: input-scrub.c input-file.h sb.h
|
2182 |
|
|
listing.o: listing.c $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h \
|
2183 |
|
|
input-file.h subsegs.h
|
2184 |
|
|
literal.o: literal.c subsegs.h $(INCDIR)/obstack.h
|
2185 |
|
|
macro.o: macro.c $(INCDIR)/safe-ctype.h sb.h macro.h
|
2186 |
|
|
messages.o: messages.c
|
2187 |
|
|
output-file.o: output-file.c output-file.h
|
2188 |
|
|
read.o: read.c $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
|
2189 |
|
|
sb.h macro.h ecoff.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
|
2190 |
|
|
remap.o: remap.c
|
2191 |
|
|
sb.o: sb.c sb.h
|
2192 |
|
|
stabs.o: stabs.c $(INCDIR)/obstack.h subsegs.h ecoff.h \
|
2193 |
|
|
$(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
|
2194 |
|
|
subsegs.o: subsegs.c subsegs.h $(INCDIR)/obstack.h
|
2195 |
|
|
symbols.o: symbols.c $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
|
2196 |
|
|
subsegs.h struc-symbol.h
|
2197 |
|
|
write.o: write.c subsegs.h $(INCDIR)/obstack.h output-file.h \
|
2198 |
|
|
dwarf2dbg.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h
|
2199 |
|
|
itbl-ops.o: itbl-ops.c itbl-ops.h
|
2200 |
|
|
cgen.o: cgen.c cgen-desc.h subsegs.h $(INCDIR)/obstack.h \
|
2201 |
|
|
cgen.h dwarf2dbg.h struc-symbol.h
|
2202 |
|
|
e-crisaout.o: $(srcdir)/config/e-crisaout.c emul-target.h
|
2203 |
|
|
e-criself.o: $(srcdir)/config/e-criself.c emul-target.h
|
2204 |
|
|
e-i386aout.o: $(srcdir)/config/e-i386aout.c emul-target.h
|
2205 |
|
|
e-i386coff.o: $(srcdir)/config/e-i386coff.c emul-target.h
|
2206 |
|
|
e-i386elf.o: $(srcdir)/config/e-i386elf.c emul-target.h
|
2207 |
|
|
e-mipsecoff.o: $(srcdir)/config/e-mipsecoff.c emul-target.h
|
2208 |
|
|
e-mipself.o: $(srcdir)/config/e-mipself.c emul-target.h
|
2209 |
|
|
$(OBJS): $(DEP_@target_cpu_type@_@obj_format@)
|
2210 |
|
|
$(TARG_CPU_O): $(DEPTC_@target_cpu_type@_@obj_format@)
|
2211 |
|
|
$(OBJ_FORMAT_O): $(DEPOBJ_@target_cpu_type@_@obj_format@)
|
2212 |
|
|
#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
|