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