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