]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/Makefile.am
bfd/
[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
07c1b327 608bfin-parse.c bfin-parse.tab.h: $(srcdir)/config/bfin-parse.y
9ba4c445
JZ
609 $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-parse.y y.tab.c bfin-parse.c y.tab.h bfin-parse.h -- $(YACCCOMPILE) -d ;
610bfin-parse.o: bfin-parse.c bfin-parse.h $(srcdir)/config/bfin-defs.h
07c1b327
CM
611
612bfin-defs.h: ; @true
613$(srcdir)/config/bfin-defs.h: ; @true
614
615bfin-lex.c: $(srcdir)/config/bfin-lex.l
1e0486ea 616 $(SHELL) $(YLWRAP) $(srcdir)/config/bfin-lex.l lex.yy.c bfin-lex.c -- $(LEXCOMPILE)
9ba4c445 617bfin-lex.o: bfin-lex.c bfin-parse.h $(srcdir)/config/bfin-defs.h
07c1b327
CM
618 $(COMPILE) -c $< $(NO_WERROR)
619
252b5132
RH
620# The instruction table specification lexical analyzer and parser.
621
622itbl-lex.c: $(srcdir)/itbl-lex.l
b16b813f 623itbl-lex.o: itbl-lex.c itbl-parse.h $(srcdir)/itbl-lex.h
252b5132 624
1a66a017
NC
625# Disable -Werror, if it has been enabled, since old versions of bison/
626# yacc will produce working code which contain compile time warnings.
b16b813f 627itbl-parse.o: itbl-parse.c itbl-parse.h $(srcdir)/itbl-ops.h $(srcdir)/itbl-lex.h
9e9b66a9 628 $(COMPILE) -c $< $(NO_WERROR)
252b5132
RH
629
630itbl-ops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
631
632itbl-parse.c itbl-parse.h: $(srcdir)/itbl-parse.y
42ecbf5e 633 $(SHELL) $(YLWRAP) $(srcdir)/itbl-parse.y y.tab.c itbl-parse.c y.tab.h itbl-parse.h -- $(YACCCOMPILE) -d
252b5132
RH
634
635# stand-alone itbl assembler & disassembler
636
fea17916 637EXTRA_PROGRAMS = itbl-test
252b5132 638itbl_test_SOURCES = itbl-parse.y itbl-lex.l
46eec08e 639itbl_test_LDADD = itbl-tops.o itbl-test.o $(GASLIBS) @LEXLIB@
252b5132 640
46eec08e
ILT
641itbl-tops.o: $(srcdir)/itbl-ops.c $(srcdir)/itbl-ops.h itbl-parse.h
642 $(COMPILE) -o itbl-tops.o -DSTAND_ALONE -c $(srcdir)/itbl-ops.c
252b5132
RH
643
644itbl-test.o: $(srcdir)/testsuite/gas/all/itbl-test.c $(srcdir)/itbl-ops.h
645 $(COMPILE) -c -DSTAND_ALONE $(srcdir)/testsuite/gas/all/itbl-test.c
646
647# CGEN interface.
648
649CGEN_CPU_PREFIX = @cgen_cpu_prefix@
650
651cgen.o: cgen.c cgen.h cgen-desc.h subsegs.h \
652 $(INCDIR)/obstack.h $(INCDIR)/opcode/cgen.h \
653 $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-desc.h \
654 $(srcdir)/../opcodes/$(CGEN_CPU_PREFIX)-opc.h
655
656# Remake the info files.
657
e079bef8 658MOSTLYCLEANFILES = $(STAGESTUFF) core \
252b5132
RH
659 testsuite/*.o testsuite/*.out testsuite/gas.log testsuite/gas.sum \
660 testsuite/site.exp site.bak site.exp stage stage1 stage2
661
ad4d6ccf 662CLEANFILES = dep.sed DEPTC DEPTCA DEPOBJ DEPOBJA DEP2 DEP2A DEP1 DEPA DEP DEPDIR
252b5132
RH
663
664.PHONY: install-exec-local install-data-local
665.PHONY: install-exec-bindir install-exec-tooldir
666
667install-exec-local: install-exec-bindir @install_tooldir@
668
669install-exec-bindir: $(noinst_PROGRAMS)
d3d8a9ee 670 $(mkinstalldirs) $(DESTDIR)$(bindir)
252b5132
RH
671 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
672 if test -f $$p; then \
673 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
d3d8a9ee 674 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
252b5132
RH
675 else :; fi; \
676 done
677
f8c827e9 678install-exec-tooldir: install-exec-bindir $(noinst_PROGRAMS)
d3d8a9ee 679 $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
252b5132
RH
680 n=`echo as | sed '$(transform)'`; \
681 if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/as$(EXEEXT)" ]; then \
d3d8a9ee
NC
682 rm -f $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
683 ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT) >/dev/null 2>/dev/null \
684 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) as-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/as$(EXEEXT); \
252b5132
RH
685 else \
686 true ; \
687 fi
688
689# These exist for maintenance purposes.
690
691.PHONY: bootstrap bootstrap2 bootstrap3 stage1 stage2 stage3 comparison
692
693bootstrap: as-new
694 $(MAKE) stage1
695 rm -f stage && ln -s stage1 stage
696 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
697 $(MAKE) stage2
698 rm -f stage && ln -s stage2 stage
699 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
700 $(MAKE) comparison against=stage2
701
702bootstrap2:
703 rm -f stage && ln -s stage1 stage
704 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
705 $(MAKE) stage2
706 rm -f stage && ln -s stage2 stage
707 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
708 $(MAKE) comparison against=stage2
709
710bootstrap3:
711 rm -f stage && ln -s stage2 stage
712 $(MAKE) CC="$(CC)" CFLAGS="-O -Bstage/ $(CFLAGS)" libdir=$(libdir) ALLOCA= $(noinst_PROGRAMS)
713 $(MAKE) comparison against=stage2
714
715# Copy the object files from a particular stage into a subdirectory.
716stage1:
717 -mkdir stage1
718 -mv $(STAGESTUFF) stage1
719 if [ -f stage1/as-new$(EXEEXT) -a ! -f stage1/as$(EXEEXT) ] ; then (cd stage1 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
720
721stage2:
722 -mkdir stage2
723 -mv $(STAGESTUFF) stage2
724 if [ -f stage2/as-new$(EXEEXT) -a ! -f stage2/as$(EXEEXT) ] ; then (cd stage2 ; ln -s as-new$(EXEEXT) as$(EXEEXT)) ; fi
725
726stage3:
727 -mkdir stage3
728 -mv $(STAGESTUFF) stage3
729 if [ -f stage3/as-new$(EXEEXT) -a ! -f stage3/as$(EXEEXT) ] ; then (cd stage3 ; ln -s as-new as$(EXEEXT)) ; fi
730
731against=stage2
732
733# This rule is derived from corresponding code in the Makefile.in for gcc.
734# The "tail +16c" is to bypass headers which may include timestamps or
735# temporary assembly file names.
736comparison:
737 x=0 ; \
738 for file in *.o ; do \
739 tail +16c ./$$file > tmp-foo1; \
740 if tail +16c ${against}/$$file > tmp-foo2 2>/dev/null ; then \
741 if cmp tmp-foo1 tmp-foo2 ; then \
742 true ; \
743 else \
744 echo $$file differs ; \
745 x=1 ; \
746 fi ; \
747 else true; fi ; \
748 done ; \
749 exit $$x
750 -rm -f tmp-foo*
751
752.PHONY: de-stage1 de-stage2 de-stage3
753
754de-stage1:
755 - (cd stage1 ; rm -f as$(EXEEXT) ; mv -f * ..)
756 - rmdir stage1
757
758de-stage2:
759 - (cd stage2 ; rm -f as$(EXEEXT) ; mv -f * ..)
760 - rmdir stage2
761
762de-stage3:
763 - (cd stage3 ; rm -f as$(EXEEXT) ; mv -f * ..)
764 - rmdir stage3
765
252b5132
RH
766DEP_FILE_DEPS = $(CFILES) $(HFILES) $(TARGET_CPU_CFILES) \
767 $(TARGET_CPU_HFILES) $(OBJ_FORMAT_CFILES) $(OBJ_FORMAT_HFILES)
768
14ee9f48 769CONFIG_STATUS_DEPENDENCIES = $(BFDDIR)/configure.in $(srcdir)/configure.tgt
403487ec 770
ad4d6ccf
AM
771# Automatic dependency computation. This is a real pain, because the
772# dependencies change based on target_cpu_type and obj_format.
773# Just to make things even more complicated, automake separates the
774# dependency variable assignments from the dependency rules, and tacks
775# on a .NOEXPORT at the end of Makefile.in.
776
04ad1543 777DEP: dep.sed $(DEP_FILE_DEPS) DEPTC DEPOBJ DEP2
ad4d6ccf 778 rm -f DEP1 # delete because we use $? in DEP1 rule
252b5132 779 srcdir=`cd $(srcdir); pwd`; \
41b49281 780 $(MAKE) MKDEP="$(MKDEP)" srcdir="$${srcdir}" VPATH="$${srcdir}" DEP1
04ad1543 781 rm -rf DEPDIR
ad4d6ccf 782 echo 'AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' > DEPA
04ad1543
ILT
783 sed -f dep.sed < DEPTC >> DEPA
784 sed -f dep.sed < DEPOBJ >> DEPA
785 sed -f dep.sed < DEP2 >> DEPA
ad4d6ccf
AM
786 echo 'BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
787 echo '#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.' >> DEPA
788 sed -f dep.sed < DEP1 >> DEPA
04ad1543
ILT
789 echo '$$(OBJS): $$(DEP_@target''_cpu_type@_@obj''_format@)' >> DEPA
790 echo '$$(TARG_CPU_O): $$(DEPTC_@target''_cpu_type@_@obj''_format@)' >> DEPA
791 echo '$$(OBJ_FORMAT_O): $$(DEPOBJ_@target''_cpu_type@_@obj''_format@)' >> DEPA
ad4d6ccf 792 echo '#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.' >> DEPA
1581f8c9
AM
793 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
794 echo 'make DEP failed!'; exit 1; \
795 else \
796 mv -f DEPA $@; \
797 fi
252b5132 798
04ad1543
ILT
799DEP1: $(CFILES) $(MULTI_CFILES)
800 if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
252b5132 801 srcdir=`cd $(srcdir); pwd`; \
04ad1543 802 cd DEPDIR; \
252b5132
RH
803 echo '' > targ-cpu.h; \
804 echo '' > obj-format.h; \
805 echo '' > targ-env.h; \
806 echo '' > itbl-cpu.h; \
6104f0a0 807 echo '' > itbl-parse.h; \
3817f222 808 $(MKDEP) $(DEP_FLAGS) $? > DEP
41b49281 809 mv -f DEPDIR/DEP $@
252b5132
RH
810
811# Work out the special dependencies for the tc-*.c files.
04ad1543
ILT
812DEPTC: $(TARGET_CPU_CFILES)
813 rm -f DEPTCA
814 if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
252b5132 815 srcdir=`cd $(srcdir); pwd`; \
04ad1543 816 cd DEPDIR; \
252b5132
RH
817 for c in $(CPU_TYPES); do \
818 for o in $(OBJ_FORMATS); do \
819 $(CPU_OBJ_VALID) \
820 if [ x$${valid} = xyes ]; then \
821 echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
822 echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
823 echo '#include "te-generic.h"' > targ-env.h; \
824 echo '' > itbl-cpu.h; \
6104f0a0 825 echo '' > itbl-parse.h; \
252b5132
RH
826 echo '#include "opcodes/'"$${c}"'-desc.h"' > cgen-desc.h; \
827 rm -f dummy.c; \
828 cp $${srcdir}/config/tc-$${c}.c dummy.c; \
3817f222 829 $(MKDEP) $(DEP_FLAGS) dummy.c | \
41b49281 830 sed -e "s/dummy.o: dummy.c/DEPTC_$${c}_$${o} =/" >> ../DEPTCA; \
252b5132
RH
831 rm -f dummy.c; \
832 else true; fi; \
833 done; \
834 done
04ad1543
ILT
835 echo 'DEPTC_hppa_som = $$(srcdir)/config/tc-hppa.h subsegs.h \' >> DEPTCA
836 echo ' $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPTCA
837 echo ' $$(INCDIR)/opcode/hppa.h $$(BFDDIR)/som.h' >> DEPTCA
16adf844 838 for c in $(MULTI_CPU_TYPES); do \
ad4d6ccf 839 echo "DEPTC_$${c}"'_multi = \' >> DEPTCA; \
16adf844
AM
840 for o in $(OBJ_FORMATS); do \
841 $(MULTI_CPU_OBJ_VALID) \
252b5132 842 if [ x$${valid} = xyes ]; then \
16adf844 843 echo '$$(DEPTC_'"$${c}_$${o}"') \' >> DEPTCA; \
252b5132 844 else true; fi; \
16adf844
AM
845 done; \
846 echo '' >> DEPTCA; \
252b5132 847 done
04ad1543 848 mv -f DEPTCA DEPTC
252b5132
RH
849
850# Work out the special dependencies for the obj-*.c files.
04ad1543
ILT
851DEPOBJ: $(OBJ_FORMAT_CFILES)
852 rm -f DEPOBJA
853 if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
252b5132 854 srcdir=`cd $(srcdir); pwd`; \
04ad1543 855 cd DEPDIR; \
252b5132
RH
856 for c in $(CPU_TYPES); do \
857 for o in $(OBJ_FORMATS); do \
858 $(CPU_OBJ_VALID) \
859 if [ x$${valid} = xyes ]; then \
860 echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
861 echo '#include "obj-'"$${o}"'.h"' > obj-format.h; \
862 echo '#include "te-generic.h"' > targ-env.h; \
863 echo '' > itbl-cpu.h; \
6104f0a0 864 echo '' > itbl-parse.h; \
252b5132
RH
865 rm -f dummy.c; \
866 cp $${srcdir}/config/obj-$${o}.c dummy.c; \
3817f222 867 $(MKDEP) $(DEP_FLAGS) dummy.c | \
41b49281 868 sed -e "s/dummy.o: dummy.c/DEPOBJ_$${c}_$${o} =/" >> ../DEPOBJA; \
252b5132
RH
869 rm -f dummy.c; \
870 else true; fi; \
871 done; \
872 done
04ad1543
ILT
873 echo 'DEPOBJ_hppa_som = $$(srcdir)/config/obj-som.h subsegs.h \' >> DEPOBJA
874 echo ' $$(INCDIR)/obstack.h $$(BFDDIR)/libhppa.h \' >> DEPOBJA
875 echo ' $$(BFDDIR)/som.h $$(INCDIR)/aout/stab_gnu.h \' >> DEPOBJA
876 echo ' $$(INCDIR)/aout/stab.def' >> DEPOBJA
16adf844 877 for c in $(MULTI_CPU_TYPES); do \
ad4d6ccf 878 echo "DEPOBJ_$${c}"'_multi = \' >> DEPOBJA; \
16adf844
AM
879 for o in $(OBJ_FORMATS); do \
880 $(MULTI_CPU_OBJ_VALID) \
252b5132 881 if [ x$${valid} = xyes ]; then \
16adf844 882 echo '$$(DEPOBJ_'"$${c}_$${o}"') \' >> DEPOBJA; \
252b5132 883 else true; fi; \
16adf844
AM
884 done; \
885 echo '' >> DEPOBJA; \
252b5132 886 done
04ad1543 887 mv -f DEPOBJA DEPOBJ
252b5132
RH
888
889# Work out the dependencies for each CPU/OBJ combination.
890# Note that SOM is a special case, because it only works native.
04ad1543 891DEP2: $(TARGET_CPU_HFILES) $(OBJ_FORMAT_HFILES)
ad4d6ccf 892 rm -f DEP2A
04ad1543 893 if [ -d DEPDIR ]; then true; else mkdir DEPDIR; fi
252b5132 894 srcdir=`cd $(srcdir); pwd`; \
04ad1543 895 cd DEPDIR; \
252b5132
RH
896 for c in $(CPU_TYPES); do \
897 for o in $(OBJ_FORMATS); do \
898 $(CPU_OBJ_VALID) \
899 if [ x$${valid} = xyes ]; then \
900 echo '#include "tc-'"$${c}"'.h"' > targ-cpu.h; \
901 echo '#include "obj-'"$${o}"'.h"' > dummy.c; \
3817f222 902 $(MKDEP) $(DEP_FLAGS) dummy.c | \
ad4d6ccf 903 sed -e "s/dummy.o: dummy.c/DEP_$${c}_$${o} =/" >> ../DEP2A; \
252b5132
RH
904 else true; fi; \
905 done; \
906 done
ad4d6ccf 907 echo 'DEP_hppa_som = $$(BFDDIR)/som.h' >> DEP2A
16adf844 908 for c in $(MULTI_CPU_TYPES); do \
ad4d6ccf 909 echo "DEP_$${c}"'_multi = \' >> DEP2A; \
16adf844
AM
910 for o in $(OBJ_FORMATS); do \
911 $(MULTI_CPU_OBJ_VALID) \
252b5132 912 if [ x$${valid} = xyes ]; then \
ad4d6ccf 913 echo '$$(DEP_'"$${c}_$${o}"') \' >> DEP2A; \
252b5132 914 else true; fi; \
16adf844 915 done; \
ad4d6ccf 916 echo '' >> DEP2A; \
252b5132 917 done
ad4d6ccf 918 mv -f DEP2A DEP2
252b5132
RH
919
920dep.sed: dep-in.sed config.status
921 srcdir=`cd $(srcdir); pwd`; \
922 sed <$(srcdir)/dep-in.sed >dep.sed \
923 -e "s!@INCDIR@!$${srcdir}/../include!" \
924 -e "s!@BFDDIR@!$${srcdir}/../bfd!" \
8e42bcb6
AM
925 -e "s!@SRCDIR@!$${srcdir}!" \
926 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/gas,,`'!'
252b5132 927
04ad1543 928dep: DEP
ad4d6ccf
AM
929 sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
930 < Makefile > tmp-Makefile
04ad1543 931 cat DEP >> tmp-Makefile
252b5132
RH
932 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
933
04ad1543 934dep-in: DEP
ad4d6ccf
AM
935 sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
936 < $(srcdir)/Makefile.in > tmp-Makefile.in
04ad1543 937 cat DEP >> tmp-Makefile.in
252b5132
RH
938 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
939
04ad1543 940dep-am: DEP
ad4d6ccf
AM
941 sed -e '/^.MKDEP.*WARNING BELOW./,/^.MKDEP.*WARNING ABOVE./d' \
942 < $(srcdir)/Makefile.am > tmp-Makefile.am
04ad1543 943 cat DEP >> tmp-Makefile.am
252b5132
RH
944 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
945
ad4d6ccf
AM
946# HEED THE MKDEP WARNINGS.
947# ANYTHING CHANGED OR ADDED BETWEEN THE WARNING LINES MAY GO AWAY.
252b5132
RH
948.PHONY: dep dep-in dep-am
949
ad4d6ccf 950AMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
b898a385
L
951DEPTC_alpha_coff = $(INCDIR)/symcat.h ./targ-env.h \
952 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
953 $(srcdir)/config/tc-alpha.h $(INCDIR)/coff/internal.h \
954 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
ceae3e33
AM
955 struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h dw2gencfi.h \
956 $(INCDIR)/elf/dwarf2.h $(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
b898a385
L
957DEPTC_alpha_ecoff = $(INCDIR)/symcat.h ./targ-env.h \
958 ./obj-format.h $(srcdir)/config/obj-ecoff.h ./targ-cpu.h \
403487ec
AM
959 $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \
960 $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \
b898a385 961 struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h dw2gencfi.h \
ceae3e33 962 $(INCDIR)/elf/dwarf2.h $(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
b898a385
L
963DEPTC_alpha_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
964 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
965 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
966 ./targ-cpu.h $(srcdir)/config/tc-alpha.h subsegs.h \
967 $(INCDIR)/obstack.h struc-symbol.h ecoff.h $(INCDIR)/coff/sym.h \
968 $(INCDIR)/coff/ecoff.h $(INCDIR)/opcode/alpha.h $(INCDIR)/elf/alpha.h \
969 $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h dw2gencfi.h \
970 $(INCDIR)/elf/dwarf2.h $(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
971DEPTC_alpha_evax = $(INCDIR)/symcat.h ./targ-env.h \
972 ./obj-format.h $(srcdir)/config/obj-evax.h ./targ-cpu.h \
403487ec 973 $(srcdir)/config/tc-alpha.h subsegs.h $(INCDIR)/obstack.h \
ceae3e33
AM
974 struc-symbol.h ecoff.h $(INCDIR)/opcode/alpha.h dw2gencfi.h \
975 $(INCDIR)/elf/dwarf2.h $(INCDIR)/safe-ctype.h $(srcdir)/config/atof-vax.c
b898a385
L
976DEPTC_arc_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
977 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-arc.h \
978 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
979 struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
528a2d4a
HPN
980 $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
981 $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
b898a385
L
982DEPTC_arc_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
983 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
984 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
985 ./targ-cpu.h $(srcdir)/config/tc-arc.h dwarf2dbg.h \
403487ec 986 struc-symbol.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
528a2d4a
HPN
987 $(INCDIR)/opcode/arc.h $(srcdir)/../opcodes/arc-ext.h \
988 $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
b898a385
L
989DEPTC_arm_aout = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
990 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-arm.h \
991 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
992 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h $(INCDIR)/opcode/arm.h
993DEPTC_arm_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
994 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-arm.h \
995 $(INCDIR)/coff/internal.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \
528a2d4a 996 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
b898a385
L
997 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h $(INCDIR)/opcode/arm.h
998DEPTC_arm_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
999 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1000 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1001 ./targ-cpu.h $(srcdir)/config/tc-arm.h $(INCDIR)/safe-ctype.h \
1002 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h $(INCDIR)/opcode/arm.h \
1003 $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h \
1004 dw2gencfi.h $(INCDIR)/elf/dwarf2.h
1005DEPTC_avr_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1006 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-avr.h \
1007 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
528a2d4a
HPN
1008 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1009 $(INCDIR)/opcode/avr.h
b898a385
L
1010DEPTC_avr_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1011 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1012 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1013 ./targ-cpu.h $(srcdir)/config/tc-avr.h dwarf2dbg.h \
528a2d4a 1014 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1015 $(INCDIR)/opcode/avr.h
1016DEPTC_bfin_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1017 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-bfin.h \
1018 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1019 struc-symbol.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1020 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1021 dwarf2dbg.h $(srcdir)/config/bfin-defs.h $(INCDIR)/obstack.h \
1022 $(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/obstack.h \
1023 $(srcdir)/config/bfin-aux.h $(srcdir)/config/bfin-defs.h \
1024 $(INCDIR)/opcode/bfin.h
1025DEPTC_bfin_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1026 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1027 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1028 ./targ-cpu.h $(srcdir)/config/tc-bfin.h dwarf2dbg.h \
1029 struc-symbol.h $(srcdir)/config/obj-elf.h $(srcdir)/config/bfin-defs.h \
1030 $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h dwarf2dbg.h \
1031 $(INCDIR)/obstack.h $(srcdir)/config/bfin-aux.h $(srcdir)/config/bfin-defs.h \
1032 $(INCDIR)/opcode/bfin.h
1033DEPTC_cris_aout = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1034 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-cris.h \
1035 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1036 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/cris.h \
1037 dwarf2dbg.h
1038DEPTC_cris_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1039 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1040 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1041 ./targ-cpu.h $(srcdir)/config/tc-cris.h dwarf2dbg.h \
403487ec
AM
1042 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1043 $(INCDIR)/opcode/cris.h dwarf2dbg.h
b898a385
L
1044DEPTC_crx_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1045 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-crx.h \
1046 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
8ea2b00f
AM
1047 $(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/opcode/crx.h \
1048 $(INCDIR)/elf/crx.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1049DEPTC_crx_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1050 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1051 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1052 ./targ-cpu.h $(srcdir)/config/tc-crx.h dwarf2dbg.h \
1053 $(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/opcode/crx.h \
1054 $(INCDIR)/elf/crx.h $(INCDIR)/elf/reloc-macros.h
1055DEPTC_d10v_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1056 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-d10v.h \
1057 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
528a2d4a 1058 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
403487ec 1059 $(INCDIR)/opcode/d10v.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1060DEPTC_d10v_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1061 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1062 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1063 ./targ-cpu.h $(srcdir)/config/tc-d10v.h $(INCDIR)/safe-ctype.h \
1064 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d10v.h \
1065 $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h
1066DEPTC_d30v_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1067 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-d30v.h \
1068 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
528a2d4a 1069 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
403487ec 1070 $(INCDIR)/opcode/d30v.h
b898a385
L
1071DEPTC_d30v_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1072 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1073 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1074 ./targ-cpu.h $(srcdir)/config/tc-d30v.h $(INCDIR)/safe-ctype.h \
1075 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/d30v.h
194b5210 1076DEPTC_dlx_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
b898a385
L
1077 ./targ-env.h ./obj-format.h $(srcdir)/config/obj-coff.h \
1078 ./targ-cpu.h $(srcdir)/config/tc-dlx.h $(INCDIR)/coff/internal.h \
1079 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(srcdir)/config/tc-dlx.h \
d172d4ba 1080 $(INCDIR)/opcode/dlx.h
194b5210 1081DEPTC_dlx_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
b898a385
L
1082 ./targ-env.h ./obj-format.h $(srcdir)/config/obj-elf.h \
1083 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1084 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1085 $(srcdir)/config/tc-dlx.h dwarf2dbg.h $(srcdir)/config/tc-dlx.h \
1086 $(INCDIR)/opcode/dlx.h
1087DEPTC_fr30_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1088 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-fr30.h \
1089 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1090 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1091 $(INCDIR)/symcat.h $(srcdir)/../opcodes/fr30-desc.h \
1092 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/fr30-opc.h \
1093 cgen.h
1094DEPTC_fr30_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
194b5210
AM
1095 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1096 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
b898a385
L
1097 ./targ-cpu.h $(srcdir)/config/tc-fr30.h dwarf2dbg.h \
1098 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1099 $(INCDIR)/symcat.h $(srcdir)/../opcodes/fr30-desc.h \
45f85b08
L
1100 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/fr30-opc.h \
1101 cgen.h
b898a385
L
1102DEPTC_frv_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1103 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-frv.h \
1104 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1105 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/symcat.h $(srcdir)/../opcodes/frv-desc.h \
ce4f7385 1106 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/frv-opc.h \
b898a385
L
1107 cgen.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h $(INCDIR)/elf/common.h \
1108 $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h
1109DEPTC_frv_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1110 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1111 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1112 ./targ-cpu.h $(srcdir)/config/tc-frv.h subsegs.h $(INCDIR)/obstack.h \
1113 $(INCDIR)/symcat.h $(srcdir)/../opcodes/frv-desc.h \
1114 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/frv-opc.h \
1115 cgen.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h $(INCDIR)/elf/common.h \
1116 $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h
1117DEPTC_h8300_coff = $(INCDIR)/symcat.h ./targ-env.h \
1118 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1119 $(srcdir)/config/tc-h8300.h $(INCDIR)/coff/internal.h \
1120 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
54cfded0
AM
1121 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \
1122 $(INCDIR)/opcode/h8300.h $(INCDIR)/safe-ctype.h
b898a385
L
1123DEPTC_h8300_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1124 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1125 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1126 ./targ-cpu.h $(srcdir)/config/tc-h8300.h dwarf2dbg.h \
54cfded0
AM
1127 subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h $(INCDIR)/opcode/h8300.h \
1128 $(INCDIR)/safe-ctype.h $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1129DEPTC_hppa_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1130 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-hppa.h \
1131 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1132 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1133 $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h
1134DEPTC_hppa_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1135 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1136 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1137 ./targ-cpu.h $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h \
1138 $(BFDDIR)/elf-bfd.h $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h \
403487ec 1139 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
b898a385 1140 subsegs.h $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h \
403487ec 1141 dwarf2dbg.h
b898a385
L
1142DEPTC_ia64_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1143 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-ia64.h \
8e42bcb6 1144 $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \
b898a385
L
1145 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1146 $(INCDIR)/safe-ctype.h dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h \
1147 $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h
1148DEPTC_ia64_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1149 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1150 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1151 ./targ-cpu.h $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
1152 $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
1153 dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/ia64.h \
1154 $(INCDIR)/elf/ia64.h
1155DEPTC_i370_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1156 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-i370.h \
1157 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1158 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1159 struc-symbol.h $(INCDIR)/opcode/i370.h
1160DEPTC_i370_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1161 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1162 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1163 ./targ-cpu.h $(srcdir)/config/tc-i370.h dwarf2dbg.h \
528a2d4a 1164 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
6539b54b
AM
1165 struc-symbol.h $(INCDIR)/opcode/i370.h $(INCDIR)/elf/i370.h \
1166 $(INCDIR)/elf/reloc-macros.h
b898a385
L
1167DEPTC_i386_aout = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1168 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-i386.h \
1169 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1170 subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h dw2gencfi.h \
1171 $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/i386.h $(INCDIR)/elf/x86-64.h \
1172 $(INCDIR)/elf/reloc-macros.h
1173DEPTC_i386_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1174 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-i386.h \
1175 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1176 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1177 subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h dw2gencfi.h \
1178 $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/i386.h $(INCDIR)/elf/x86-64.h \
1179 $(INCDIR)/elf/reloc-macros.h
1180DEPTC_i386_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1181 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1182 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1183 ./targ-cpu.h $(srcdir)/config/tc-i386.h dwarf2dbg.h \
528a2d4a 1184 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
3c55da70
AM
1185 dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/i386.h \
1186 $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1187DEPTC_i860_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1188 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1189 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1190 ./targ-cpu.h $(srcdir)/config/tc-i860.h dwarf2dbg.h \
528a2d4a 1191 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
403487ec 1192 $(INCDIR)/opcode/i860.h $(INCDIR)/elf/i860.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1193DEPTC_i960_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1194 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-i960.h \
1195 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h \
1196 $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
1197 $(INCDIR)/opcode/i960.h
1198DEPTC_i960_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1199 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1200 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1201 ./targ-cpu.h $(srcdir)/config/tc-i960.h dwarf2dbg.h \
403487ec 1202 $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h $(INCDIR)/opcode/i960.h
b898a385
L
1203DEPTC_ip2k_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1204 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-ip2k.h \
1205 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1206 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/symcat.h $(srcdir)/../opcodes/ip2k-desc.h \
55eab186 1207 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/ip2k-opc.h \
b898a385
L
1208 cgen.h $(INCDIR)/elf/common.h $(INCDIR)/elf/ip2k.h \
1209 $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h
1210DEPTC_ip2k_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1211 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1212 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1213 ./targ-cpu.h $(srcdir)/config/tc-ip2k.h dwarf2dbg.h \
1214 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/symcat.h $(srcdir)/../opcodes/ip2k-desc.h \
1215 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/ip2k-opc.h \
1216 cgen.h $(INCDIR)/elf/common.h $(INCDIR)/elf/ip2k.h \
1217 $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h
1218DEPTC_m32c_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1219 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-m32c.h \
1220 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1221 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/symcat.h $(srcdir)/../opcodes/m32c-desc.h \
0f82ff91
AM
1222 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/m32c-opc.h \
1223 $(srcdir)/../opcodes/cgen-types.h $(srcdir)/../opcodes/cgen-ops.h \
b898a385
L
1224 cgen.h $(INCDIR)/elf/common.h $(INCDIR)/elf/m32c.h \
1225 $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h \
1226 $(INCDIR)/safe-ctype.h
1227DEPTC_m32c_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1228 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1229 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1230 ./targ-cpu.h $(srcdir)/config/tc-m32c.h dwarf2dbg.h \
1231 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/symcat.h $(srcdir)/../opcodes/m32c-desc.h \
1232 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/m32c-opc.h \
1233 $(srcdir)/../opcodes/cgen-types.h $(srcdir)/../opcodes/cgen-ops.h \
1234 cgen.h $(INCDIR)/elf/common.h $(INCDIR)/elf/m32c.h \
1235 $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h \
1236 $(INCDIR)/safe-ctype.h
1237DEPTC_m32r_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1238 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-m32r.h \
1239 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1240 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1241 $(INCDIR)/symcat.h $(srcdir)/../opcodes/m32r-desc.h \
45f85b08 1242 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/m32r-opc.h \
6e1772d5 1243 cgen.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1244DEPTC_m32r_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1245 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1246 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1247 ./targ-cpu.h $(srcdir)/config/tc-m32r.h dwarf2dbg.h \
403487ec 1248 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1249 $(INCDIR)/symcat.h $(srcdir)/../opcodes/m32r-desc.h \
1250 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/m32r-opc.h \
1251 cgen.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/reloc-macros.h
1252DEPTC_m68hc11_coff = $(INCDIR)/symcat.h ./targ-env.h \
1253 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1254 $(srcdir)/config/tc-m68hc11.h $(INCDIR)/coff/internal.h \
1255 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
1256 $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
6539b54b
AM
1257 $(INCDIR)/obstack.h $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h \
1258 $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1259DEPTC_m68hc11_elf = $(INCDIR)/symcat.h ./targ-env.h \
1260 ./obj-format.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1261 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1262 $(INCDIR)/bfdlink.h ./targ-cpu.h $(srcdir)/config/tc-m68hc11.h \
1263 dwarf2dbg.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
6539b54b
AM
1264 $(INCDIR)/opcode/m68hc11.h dwarf2dbg.h $(INCDIR)/elf/m68hc11.h \
1265 $(INCDIR)/elf/reloc-macros.h
b898a385
L
1266DEPTC_m68k_aout = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1267 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-m68k.h \
1268 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1269 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \
1270 dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \
da64f3bf 1271 $(srcdir)/config/m68k-parse.h
b898a385
L
1272DEPTC_m68k_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1273 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-m68k.h \
1274 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
1275 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1276 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \
1277 dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \
1278 $(srcdir)/config/m68k-parse.h
1279DEPTC_m68k_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1280 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1281 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1282 ./targ-cpu.h $(srcdir)/config/tc-m68k.h $(INCDIR)/safe-ctype.h \
1283 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h dwarf2dbg.h \
1284 dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/m68k.h \
da64f3bf
AM
1285 $(srcdir)/config/m68k-parse.h $(INCDIR)/elf/m68k.h \
1286 $(INCDIR)/elf/reloc-macros.h
b898a385
L
1287DEPTC_mcore_coff = $(INCDIR)/symcat.h ./targ-env.h \
1288 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1289 $(srcdir)/config/tc-mcore.h $(INCDIR)/coff/internal.h \
1290 $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
1291 $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
1292 $(INCDIR)/safe-ctype.h
b898a385
L
1293DEPTC_mcore_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1294 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1295 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1296 ./targ-cpu.h $(srcdir)/config/tc-mcore.h dwarf2dbg.h \
403487ec 1297 subsegs.h $(INCDIR)/obstack.h $(srcdir)/../opcodes/mcore-opc.h \
528a2d4a 1298 $(INCDIR)/safe-ctype.h $(INCDIR)/elf/mcore.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1299DEPTC_mips_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1300 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-mips.h \
1301 $(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \
1302 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
1303 $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h itbl-ops.h \
1304 ./itbl-cpu.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1305 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1306 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h \
1307 $(INCDIR)/elf/reloc-macros.h ecoff.h $(INCDIR)/coff/sym.h \
1308 $(INCDIR)/coff/ecoff.h
1309DEPTC_mips_ecoff = $(INCDIR)/symcat.h ./targ-env.h \
1310 ./obj-format.h $(srcdir)/config/obj-ecoff.h ./targ-cpu.h \
403487ec
AM
1311 $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \
1312 $(INCDIR)/coff/ecoff.h subsegs.h $(INCDIR)/obstack.h \
528a2d4a 1313 $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h itbl-ops.h \
b898a385
L
1314 ./itbl-cpu.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1315 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1316 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1317 $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h ecoff.h
1318DEPTC_mips_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1319 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1320 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1321 ./targ-cpu.h $(srcdir)/config/tc-mips.h subsegs.h $(INCDIR)/obstack.h \
1322 $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/mips.h itbl-ops.h \
1323 ./itbl-cpu.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1324 $(srcdir)/config/obj-elf.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
ceae3e33 1325 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
b898a385
L
1326DEPTC_mmix_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1327 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1328 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1329 ./targ-cpu.h $(srcdir)/config/tc-mmix.h dwarf2dbg.h \
dcc46170
HPN
1330 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/mmix.h \
1331 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \
b898a385
L
1332 $(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/obstack.h
1333DEPTC_mn10200_coff = $(INCDIR)/symcat.h ./targ-env.h \
1334 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1335 $(srcdir)/config/tc-mn10200.h $(INCDIR)/coff/internal.h \
1336 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1337 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10200.h
b898a385
L
1338DEPTC_mn10200_elf = $(INCDIR)/symcat.h ./targ-env.h \
1339 ./obj-format.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1340 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1341 $(INCDIR)/bfdlink.h ./targ-cpu.h $(srcdir)/config/tc-mn10200.h \
1342 dwarf2dbg.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
528a2d4a 1343 $(INCDIR)/opcode/mn10200.h
b898a385
L
1344DEPTC_mn10300_coff = $(INCDIR)/symcat.h ./targ-env.h \
1345 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1346 $(srcdir)/config/tc-mn10300.h $(INCDIR)/coff/internal.h \
1347 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
528a2d4a
HPN
1348 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/mn10300.h \
1349 dwarf2dbg.h
b898a385
L
1350DEPTC_mn10300_elf = $(INCDIR)/symcat.h ./targ-env.h \
1351 ./obj-format.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1352 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1353 $(INCDIR)/bfdlink.h ./targ-cpu.h $(srcdir)/config/tc-mn10300.h \
1354 dwarf2dbg.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
403487ec 1355 $(INCDIR)/opcode/mn10300.h dwarf2dbg.h
b898a385
L
1356DEPTC_msp430_coff = $(INCDIR)/symcat.h ./targ-env.h \
1357 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
f62ba8f2
AM
1358 $(srcdir)/config/tc-msp430.h $(INCDIR)/coff/internal.h \
1359 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1360 $(INCDIR)/opcode/msp430.h $(INCDIR)/safe-ctype.h dwarf2dbg.h
1361DEPTC_msp430_elf = $(INCDIR)/symcat.h ./targ-env.h \
1362 ./obj-format.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1363 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1364 $(INCDIR)/bfdlink.h ./targ-cpu.h $(srcdir)/config/tc-msp430.h \
1365 dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/msp430.h \
1366 $(INCDIR)/safe-ctype.h dwarf2dbg.h
1367DEPTC_ns32k_aout = $(INCDIR)/symcat.h ./targ-env.h \
1368 ./obj-format.h $(srcdir)/config/obj-aout.h ./targ-cpu.h \
403487ec 1369 $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
45f85b08 1370 $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
b898a385
L
1371DEPTC_ns32k_coff = $(INCDIR)/symcat.h ./targ-env.h \
1372 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1373 $(srcdir)/config/tc-ns32k.h $(INCDIR)/coff/internal.h \
1374 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ns32k.h \
01580992 1375 $(INCDIR)/obstack.h
b898a385
L
1376DEPTC_ns32k_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1377 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1378 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1379 ./targ-cpu.h $(srcdir)/config/tc-ns32k.h dwarf2dbg.h \
403487ec 1380 $(INCDIR)/opcode/ns32k.h $(INCDIR)/obstack.h
b898a385
L
1381DEPTC_openrisc_coff = $(INCDIR)/symcat.h ./targ-env.h \
1382 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1383 $(srcdir)/config/tc-openrisc.h $(INCDIR)/coff/internal.h \
1384 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
b898a385 1385 $(INCDIR)/symcat.h $(srcdir)/../opcodes/openrisc-desc.h \
c7e40348
NC
1386 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/openrisc-opc.h \
1387 cgen.h
b898a385
L
1388DEPTC_openrisc_elf = $(INCDIR)/symcat.h ./targ-env.h \
1389 ./obj-format.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1390 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1391 $(INCDIR)/bfdlink.h ./targ-cpu.h $(srcdir)/config/tc-openrisc.h \
1392 dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/symcat.h \
1393 $(srcdir)/../opcodes/openrisc-desc.h $(INCDIR)/opcode/cgen.h \
1394 $(srcdir)/../opcodes/openrisc-opc.h cgen.h
ba323545 1395DEPTC_or32_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
b898a385
L
1396 ./targ-env.h ./obj-format.h $(srcdir)/config/obj-coff.h \
1397 ./targ-cpu.h $(srcdir)/config/tc-or32.h $(INCDIR)/coff/internal.h \
1398 $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1399 $(INCDIR)/opcode/or32.h $(INCDIR)/elf/or32.h $(INCDIR)/elf/reloc-macros.h
ba323545 1400DEPTC_or32_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
b898a385
L
1401 ./targ-env.h ./obj-format.h $(srcdir)/config/obj-elf.h \
1402 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1403 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1404 $(srcdir)/config/tc-or32.h dwarf2dbg.h $(INCDIR)/opcode/or32.h \
ba323545 1405 $(INCDIR)/elf/or32.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1406DEPTC_pdp11_aout = $(INCDIR)/symcat.h ./targ-env.h \
1407 ./obj-format.h $(srcdir)/config/obj-aout.h ./targ-cpu.h \
403487ec 1408 $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
528a2d4a 1409 $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
b898a385
L
1410DEPTC_pdp11_coff = $(INCDIR)/symcat.h ./targ-env.h \
1411 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1412 $(srcdir)/config/tc-pdp11.h $(INCDIR)/coff/internal.h \
1413 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
528a2d4a 1414 $(INCDIR)/opcode/pdp11.h
b898a385
L
1415DEPTC_pdp11_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1416 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1417 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1418 ./targ-cpu.h $(srcdir)/config/tc-pdp11.h dwarf2dbg.h \
403487ec 1419 $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pdp11.h
b898a385
L
1420DEPTC_pj_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1421 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-pj.h \
1422 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
403487ec 1423 $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/pj.h
b898a385
L
1424DEPTC_pj_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1425 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1426 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1427 ./targ-cpu.h $(srcdir)/config/tc-pj.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1428 $(INCDIR)/opcode/pj.h
1429DEPTC_ppc_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1430 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-ppc.h \
1431 $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h \
1432 $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
1433 $(INCDIR)/obstack.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1434 $(INCDIR)/opcode/ppc.h
1435DEPTC_ppc_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1436 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1437 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1438 ./targ-cpu.h $(srcdir)/config/tc-ppc.h dwarf2dbg.h \
403487ec 1439 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
da64f3bf
AM
1440 dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/opcode/ppc.h \
1441 $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h
b898a385
L
1442DEPTC_s390_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1443 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-s390.h \
1444 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
403487ec 1445 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
da64f3bf
AM
1446 struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1447 $(INCDIR)/opcode/s390.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h
b898a385
L
1448DEPTC_s390_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1449 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1450 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1451 ./targ-cpu.h $(srcdir)/config/tc-s390.h dwarf2dbg.h \
1452 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
1453 struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1454 $(INCDIR)/opcode/s390.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h
1455DEPTC_sh_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1456 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-sh.h \
1457 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h \
1458 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
1459 $(srcdir)/../opcodes/sh-opc.h $(INCDIR)/safe-ctype.h \
1460 struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
1461DEPTC_sh_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1462 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1463 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1464 ./targ-cpu.h $(srcdir)/config/tc-sh.h subsegs.h $(INCDIR)/obstack.h \
1465 $(srcdir)/../opcodes/sh-opc.h $(INCDIR)/safe-ctype.h \
1466 struc-symbol.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
1467 dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
1468DEPTC_sh64_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1469 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1470 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1471 ./targ-cpu.h $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
1472 $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf32-sh64.h \
1473 $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/sh64-opc.h \
d5b32339 1474 $(srcdir)/config/tc-sh.c subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1475 $(srcdir)/../opcodes/sh-opc.h $(INCDIR)/safe-ctype.h \
1476 struc-symbol.h dwarf2dbg.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
1477DEPTC_sparc_aout = $(INCDIR)/symcat.h ./targ-env.h \
1478 ./obj-format.h $(srcdir)/config/obj-aout.h ./targ-cpu.h \
403487ec
AM
1479 $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
1480 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
9fa06c65 1481 $(INCDIR)/opcode/sparc.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h
b898a385
L
1482DEPTC_sparc_coff = $(INCDIR)/symcat.h ./targ-env.h \
1483 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1484 $(srcdir)/config/tc-sparc.h $(INCDIR)/coff/internal.h \
1485 $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
1486 $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h subsegs.h \
9fa06c65
AM
1487 $(INCDIR)/obstack.h $(INCDIR)/opcode/sparc.h dw2gencfi.h \
1488 $(INCDIR)/elf/dwarf2.h
b898a385
L
1489DEPTC_sparc_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1490 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1491 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1492 ./targ-cpu.h $(srcdir)/config/tc-sparc.h dwarf2dbg.h \
403487ec 1493 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
9fa06c65
AM
1494 $(INCDIR)/opcode/sparc.h dw2gencfi.h $(INCDIR)/elf/dwarf2.h \
1495 $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
528a2d4a 1496 dwarf2dbg.h
b898a385
L
1497DEPTC_tic30_aout = $(INCDIR)/symcat.h ./targ-env.h \
1498 ./obj-format.h $(srcdir)/config/obj-aout.h ./targ-cpu.h \
403487ec
AM
1499 $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h \
1500 $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
b898a385
L
1501DEPTC_tic30_coff = $(INCDIR)/symcat.h ./targ-env.h \
1502 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1503 $(srcdir)/config/tc-tic30.h $(INCDIR)/coff/internal.h \
1504 $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
1505 $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
b898a385
L
1506DEPTC_tic30_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1507 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1508 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1509 ./targ-cpu.h $(srcdir)/config/tc-tic30.h dwarf2dbg.h \
403487ec 1510 $(INCDIR)/safe-ctype.h $(INCDIR)/opcode/tic30.h
da64f3bf 1511DEPTC_tic4x_coff = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
b898a385
L
1512 ./targ-env.h ./obj-format.h $(srcdir)/config/obj-coff.h \
1513 ./targ-cpu.h $(srcdir)/config/tc-tic4x.h $(INCDIR)/coff/internal.h \
1514 $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
1515 $(INCDIR)/bfdlink.h $(INCDIR)/opcode/tic4x.h subsegs.h \
1516 $(INCDIR)/obstack.h $(INCDIR)/obstack.h
da64f3bf 1517DEPTC_tic4x_elf = $(INCDIR)/safe-ctype.h $(INCDIR)/symcat.h \
b898a385
L
1518 ./targ-env.h ./obj-format.h $(srcdir)/config/obj-elf.h \
1519 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1520 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1521 $(srcdir)/config/tc-tic4x.h dwarf2dbg.h $(INCDIR)/opcode/tic4x.h \
1522 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h
1523DEPTC_tic54x_coff = $(INCDIR)/symcat.h ./targ-env.h \
1524 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
403487ec
AM
1525 $(srcdir)/config/tc-tic54x.h $(INCDIR)/coff/internal.h \
1526 $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
1527 $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h sb.h macro.h \
b898a385
L
1528 sb.h subsegs.h $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/tic54x.h \
1529 $(srcdir)/config/obj-coff.h
1530DEPTC_tic54x_elf = $(INCDIR)/symcat.h ./targ-env.h \
1531 ./obj-format.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1532 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1533 $(INCDIR)/bfdlink.h ./targ-cpu.h $(srcdir)/config/tc-tic54x.h \
1534 $(INCDIR)/safe-ctype.h sb.h macro.h sb.h subsegs.h \
1535 $(INCDIR)/obstack.h struc-symbol.h $(INCDIR)/opcode/tic54x.h \
1536 $(srcdir)/config/obj-coff.h $(INCDIR)/coff/internal.h \
1537 $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h
1538DEPTC_vax_aout = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1539 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-vax.h \
1540 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(srcdir)/config/vax-inst.h \
1541 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h \
403487ec 1542 $(INCDIR)/safe-ctype.h
b898a385
L
1543DEPTC_vax_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1544 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-vax.h \
8e42bcb6 1545 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
b898a385
L
1546 $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \
1547 $(INCDIR)/obstack.h $(INCDIR)/opcode/vax.h $(INCDIR)/safe-ctype.h
1548DEPTC_vax_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1549 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1550 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1551 ./targ-cpu.h $(srcdir)/config/tc-vax.h dwarf2dbg.h \
1552 $(srcdir)/config/vax-inst.h $(INCDIR)/obstack.h subsegs.h \
1553 $(INCDIR)/obstack.h $(INCDIR)/elf/vax.h $(INCDIR)/elf/reloc-macros.h \
1554 $(INCDIR)/opcode/vax.h $(INCDIR)/safe-ctype.h
1555DEPTC_v850_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1556 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-v850.h \
1557 $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
1558 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
8e42bcb6
AM
1559 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h \
1560 dwarf2dbg.h
b898a385
L
1561DEPTC_v850_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1562 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1563 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1564 ./targ-cpu.h $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h \
1565 $(INCDIR)/elf/reloc-macros.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1566 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/opcode/v850.h \
1567 dwarf2dbg.h
1568DEPTC_xstormy16_coff = $(INCDIR)/symcat.h ./targ-env.h \
1569 ./obj-format.h $(srcdir)/config/obj-coff.h ./targ-cpu.h \
c0ef99a7
AM
1570 $(srcdir)/config/tc-xstormy16.h $(INCDIR)/coff/internal.h \
1571 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h subsegs.h $(INCDIR)/obstack.h \
b898a385 1572 $(INCDIR)/symcat.h $(srcdir)/../opcodes/xstormy16-desc.h \
c0ef99a7
AM
1573 $(INCDIR)/opcode/cgen.h $(srcdir)/../opcodes/xstormy16-opc.h \
1574 cgen.h
b898a385
L
1575DEPTC_xstormy16_elf = $(INCDIR)/symcat.h ./targ-env.h \
1576 ./obj-format.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1577 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1578 $(INCDIR)/bfdlink.h ./targ-cpu.h $(srcdir)/config/tc-xstormy16.h \
1579 dwarf2dbg.h subsegs.h $(INCDIR)/obstack.h $(INCDIR)/symcat.h \
1580 $(srcdir)/../opcodes/xstormy16-desc.h $(INCDIR)/opcode/cgen.h \
1581 $(srcdir)/../opcodes/xstormy16-opc.h cgen.h
1582DEPTC_xtensa_elf = $(INCDIR)/symcat.h ./targ-env.h \
1583 ./obj-format.h $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h \
1584 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1585 $(INCDIR)/bfdlink.h ./targ-cpu.h $(srcdir)/config/tc-xtensa.h \
43cd72b9 1586 $(INCDIR)/xtensa-isa.h $(INCDIR)/xtensa-config.h sb.h \
b898a385
L
1587 $(INCDIR)/safe-ctype.h $(srcdir)/config/tc-xtensa.h \
1588 subsegs.h $(INCDIR)/obstack.h $(srcdir)/config/xtensa-relax.h \
1589 $(srcdir)/config/xtensa-istack.h dwarf2dbg.h dwarf2dbg.h \
1590 struc-symbol.h $(INCDIR)/xtensa-config.h
1591DEPTC_z8k_coff = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1592 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-z8k.h \
1593 $(INCDIR)/coff/internal.h $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h \
1594 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h \
1595 $(srcdir)/../opcodes/z8k-opc.h
1596DEPTC_z8k_elf = $(INCDIR)/symcat.h ./targ-env.h ./obj-format.h \
1597 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1598 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1599 ./targ-cpu.h $(srcdir)/config/tc-z8k.h dwarf2dbg.h \
dcc46170 1600 $(INCDIR)/safe-ctype.h $(srcdir)/../opcodes/z8k-opc.h
04ad1543 1601DEPTC_hppa_som = $(srcdir)/config/tc-hppa.h subsegs.h \
252b5132
RH
1602 $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(INCDIR)/opcode/hppa.h \
1603 $(BFDDIR)/som.h
16adf844
AM
1604DEPTC_i386_multi = $(DEPTC_i386_aout) $(DEPTC_i386_coff) \
1605 $(DEPTC_i386_elf)
04ad1543
ILT
1606DEPTC_mips_multi = $(DEPTC_mips_coff) $(DEPTC_mips_ecoff) \
1607 $(DEPTC_mips_elf)
3bcbcc3d 1608DEPTC_cris_multi = $(DEPTC_cris_aout) $(DEPTC_cris_elf)
b898a385
L
1609DEPOBJ_alpha_coff = $(INCDIR)/symcat.h ./targ-env.h \
1610 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-alpha.h \
1611 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1612 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1613DEPOBJ_alpha_ecoff = $(INCDIR)/symcat.h ./targ-env.h \
1614 $(srcdir)/config/obj-ecoff.h ./targ-cpu.h $(srcdir)/config/tc-alpha.h \
1615 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
1616 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1617 $(BFDDIR)/libecoff.h
1618DEPOBJ_alpha_elf = $(INCDIR)/symcat.h ./targ-env.h \
1619 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1620 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1621 ./targ-cpu.h $(srcdir)/config/tc-alpha.h $(INCDIR)/safe-ctype.h \
1622 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1623 dwarf2dbg.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
1624 $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
403487ec 1625 $(INCDIR)/aout/aout64.h
b898a385
L
1626DEPOBJ_alpha_evax = $(INCDIR)/symcat.h ./targ-env.h \
1627 $(srcdir)/config/obj-evax.h ./targ-cpu.h $(srcdir)/config/tc-alpha.h
1628DEPOBJ_arc_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
1629 ./targ-cpu.h $(srcdir)/config/tc-arc.h $(INCDIR)/coff/internal.h \
795bb480 1630 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1631 subsegs.h $(INCDIR)/obstack.h
1632DEPOBJ_arc_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1633 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1634 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1635 $(srcdir)/config/tc-arc.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1636 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1637 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1638DEPOBJ_arm_aout = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-aout.h \
1639 ./targ-cpu.h $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h \
1640 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
1641DEPOBJ_arm_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
1642 ./targ-cpu.h $(srcdir)/config/tc-arm.h $(INCDIR)/coff/internal.h \
795bb480 1643 $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
b898a385
L
1644 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1645DEPOBJ_arm_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1646 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1647 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1648 $(srcdir)/config/tc-arm.h $(INCDIR)/safe-ctype.h subsegs.h \
1649 $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1650 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1651DEPOBJ_avr_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
1652 ./targ-cpu.h $(srcdir)/config/tc-avr.h $(INCDIR)/coff/internal.h \
8ea2b00f 1653 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1654 subsegs.h $(INCDIR)/obstack.h
1655DEPOBJ_avr_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1656 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1657 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1658 $(srcdir)/config/tc-avr.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1659 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1660 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1661DEPOBJ_bfin_coff = $(INCDIR)/symcat.h ./targ-env.h \
1662 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-bfin.h \
1663 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1664 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1665DEPOBJ_bfin_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1666 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1667 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1668 $(srcdir)/config/tc-bfin.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1669 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1670 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1671DEPOBJ_cris_aout = $(INCDIR)/symcat.h ./targ-env.h \
1672 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-cris.h \
1673 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1674 $(INCDIR)/obstack.h
1675DEPOBJ_cris_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1676 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1677 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1678 $(srcdir)/config/tc-cris.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1679 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1680 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1681DEPOBJ_crx_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
1682 ./targ-cpu.h $(srcdir)/config/tc-crx.h $(INCDIR)/coff/internal.h \
795bb480 1683 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1684 subsegs.h $(INCDIR)/obstack.h
1685DEPOBJ_crx_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1686 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1687 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1688 $(srcdir)/config/tc-crx.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1689 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1690 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1691DEPOBJ_d10v_coff = $(INCDIR)/symcat.h ./targ-env.h \
1692 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-d10v.h \
1693 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1694 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1695DEPOBJ_d10v_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1696 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1697 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1698 $(srcdir)/config/tc-d10v.h $(INCDIR)/safe-ctype.h subsegs.h \
1699 $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1700 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1701DEPOBJ_d30v_coff = $(INCDIR)/symcat.h ./targ-env.h \
1702 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-d30v.h \
1703 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1704 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1705DEPOBJ_d30v_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1706 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1707 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1708 $(srcdir)/config/tc-d30v.h $(INCDIR)/safe-ctype.h subsegs.h \
1709 $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1710 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1711DEPOBJ_dlx_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
1712 ./targ-cpu.h $(srcdir)/config/tc-dlx.h $(INCDIR)/coff/internal.h \
795bb480 1713 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1714 subsegs.h $(INCDIR)/obstack.h
1715DEPOBJ_dlx_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1716 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1717 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1718 $(srcdir)/config/tc-dlx.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1719 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1720 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1721DEPOBJ_fr30_coff = $(INCDIR)/symcat.h ./targ-env.h \
1722 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-fr30.h \
1723 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1724 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1725DEPOBJ_fr30_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1726 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1727 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1728 $(srcdir)/config/tc-fr30.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1729 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1730 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1731DEPOBJ_frv_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
1732 ./targ-cpu.h $(srcdir)/config/tc-frv.h $(INCDIR)/coff/internal.h \
795bb480 1733 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1734 subsegs.h $(INCDIR)/obstack.h
1735DEPOBJ_frv_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1736 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1737 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1738 $(srcdir)/config/tc-frv.h $(INCDIR)/safe-ctype.h subsegs.h \
1739 $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1740 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1741DEPOBJ_h8300_coff = $(INCDIR)/symcat.h ./targ-env.h \
1742 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-h8300.h \
1743 $(INCDIR)/coff/internal.h $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h \
795bb480 1744 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1745 subsegs.h $(INCDIR)/obstack.h
1746DEPOBJ_h8300_elf = $(INCDIR)/symcat.h ./targ-env.h \
1747 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1748 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1749 ./targ-cpu.h $(srcdir)/config/tc-h8300.h dwarf2dbg.h \
0ebb9a87 1750 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1751 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1752DEPOBJ_hppa_coff = $(INCDIR)/symcat.h ./targ-env.h \
1753 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-hppa.h \
1754 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1755 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1756DEPOBJ_hppa_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
403487ec 1757 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
1758 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1759 $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h $(BFDDIR)/elf-bfd.h \
1760 $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h \
403487ec 1761 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1762 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1763DEPOBJ_ia64_coff = $(INCDIR)/symcat.h ./targ-env.h \
1764 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-ia64.h \
1765 $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \
1766 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1767 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1768DEPOBJ_ia64_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
403487ec 1769 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385 1770 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
795bb480 1771 $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
b898a385
L
1772 $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/safe-ctype.h \
1773 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1774 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1775DEPOBJ_i370_coff = $(INCDIR)/symcat.h ./targ-env.h \
1776 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-i370.h \
1777 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1778 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1779DEPOBJ_i370_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
403487ec 1780 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
1781 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1782 $(srcdir)/config/tc-i370.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1783 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1784 dwarf2dbg.h $(INCDIR)/elf/i370.h $(INCDIR)/elf/reloc-macros.h \
6539b54b 1785 $(INCDIR)/aout/aout64.h
b898a385
L
1786DEPOBJ_i386_aout = $(INCDIR)/symcat.h ./targ-env.h \
1787 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-i386.h \
1788 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1789 $(INCDIR)/obstack.h
1790DEPOBJ_i386_coff = $(INCDIR)/symcat.h ./targ-env.h \
1791 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-i386.h \
1792 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
795bb480 1793 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1794 subsegs.h $(INCDIR)/obstack.h
1795DEPOBJ_i386_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
a40cbfa3 1796 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
1797 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1798 $(srcdir)/config/tc-i386.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1799 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1800 dwarf2dbg.h $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h \
1801 $(INCDIR)/aout/aout64.h
1802DEPOBJ_i860_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1803 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1804 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1805 $(srcdir)/config/tc-i860.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1806 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1807 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1808DEPOBJ_i960_coff = $(INCDIR)/symcat.h ./targ-env.h \
1809 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-i960.h \
1810 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h \
1811 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1812DEPOBJ_i960_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1813 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1814 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1815 $(srcdir)/config/tc-i960.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1816 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1817 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1818DEPOBJ_ip2k_coff = $(INCDIR)/symcat.h ./targ-env.h \
1819 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-ip2k.h \
1820 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1821 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1822DEPOBJ_ip2k_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1823 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1824 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1825 $(srcdir)/config/tc-ip2k.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1826 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1827 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1828DEPOBJ_m32c_coff = $(INCDIR)/symcat.h ./targ-env.h \
1829 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-m32c.h \
1830 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1831 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1832DEPOBJ_m32c_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1833 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1834 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1835 $(srcdir)/config/tc-m32c.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1836 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1837 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1838DEPOBJ_m32r_coff = $(INCDIR)/symcat.h ./targ-env.h \
1839 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-m32r.h \
1840 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1841 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1842DEPOBJ_m32r_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1843 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1844 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1845 $(srcdir)/config/tc-m32r.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1846 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1847 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1848DEPOBJ_m68hc11_coff = $(INCDIR)/symcat.h ./targ-env.h \
1849 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-m68hc11.h \
1850 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
0f82ff91 1851 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1852 subsegs.h $(INCDIR)/obstack.h
1853DEPOBJ_m68hc11_elf = $(INCDIR)/symcat.h ./targ-env.h \
1854 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1855 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1856 ./targ-cpu.h $(srcdir)/config/tc-m68hc11.h dwarf2dbg.h \
0f82ff91 1857 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1858 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1859DEPOBJ_m68k_aout = $(INCDIR)/symcat.h ./targ-env.h \
1860 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-m68k.h \
1861 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1862 $(INCDIR)/obstack.h
1863DEPOBJ_m68k_coff = $(INCDIR)/symcat.h ./targ-env.h \
1864 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-m68k.h \
1865 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
795bb480 1866 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1867 subsegs.h $(INCDIR)/obstack.h
1868DEPOBJ_m68k_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1869 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1870 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1871 $(srcdir)/config/tc-m68k.h $(INCDIR)/safe-ctype.h subsegs.h \
1872 $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1873 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1874DEPOBJ_mcore_coff = $(INCDIR)/symcat.h ./targ-env.h \
1875 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-mcore.h \
1876 $(INCDIR)/coff/internal.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \
795bb480 1877 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1878 subsegs.h $(INCDIR)/obstack.h
1879DEPOBJ_mcore_elf = $(INCDIR)/symcat.h ./targ-env.h \
1880 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1881 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1882 ./targ-cpu.h $(srcdir)/config/tc-mcore.h dwarf2dbg.h \
403487ec 1883 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1884 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1885DEPOBJ_mips_coff = $(INCDIR)/symcat.h ./targ-env.h \
1886 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-mips.h \
1887 $(INCDIR)/coff/internal.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \
795bb480 1888 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1889 subsegs.h $(INCDIR)/obstack.h
1890DEPOBJ_mips_ecoff = $(INCDIR)/symcat.h ./targ-env.h \
1891 $(srcdir)/config/obj-ecoff.h ./targ-cpu.h $(srcdir)/config/tc-mips.h \
1892 ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
1893 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1894 $(BFDDIR)/libecoff.h
1895DEPOBJ_mips_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1896 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1897 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1898 $(srcdir)/config/tc-mips.h $(INCDIR)/safe-ctype.h subsegs.h \
1899 $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1900 dwarf2dbg.h ecoff.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h \
1901 $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/aout/aout64.h
1902DEPOBJ_mmix_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1903 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1904 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1905 $(srcdir)/config/tc-mmix.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1906 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1907 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1908DEPOBJ_mn10200_coff = $(INCDIR)/symcat.h ./targ-env.h \
1909 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-mn10200.h \
1910 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1911 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1912DEPOBJ_mn10200_elf = $(INCDIR)/symcat.h ./targ-env.h \
1913 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1914 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1915 ./targ-cpu.h $(srcdir)/config/tc-mn10200.h dwarf2dbg.h \
528a2d4a 1916 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1917 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1918DEPOBJ_mn10300_coff = $(INCDIR)/symcat.h ./targ-env.h \
1919 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-mn10300.h \
1920 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1921 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1922DEPOBJ_mn10300_elf = $(INCDIR)/symcat.h ./targ-env.h \
1923 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1924 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1925 ./targ-cpu.h $(srcdir)/config/tc-mn10300.h dwarf2dbg.h \
f62ba8f2 1926 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1927 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1928DEPOBJ_msp430_coff = $(INCDIR)/symcat.h ./targ-env.h \
1929 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-msp430.h \
1930 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1931 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1932DEPOBJ_msp430_elf = $(INCDIR)/symcat.h ./targ-env.h \
1933 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1934 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1935 ./targ-cpu.h $(srcdir)/config/tc-msp430.h dwarf2dbg.h \
403487ec 1936 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1937 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1938DEPOBJ_ns32k_aout = $(INCDIR)/symcat.h ./targ-env.h \
1939 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-ns32k.h \
1940 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1941 $(INCDIR)/obstack.h
1942DEPOBJ_ns32k_coff = $(INCDIR)/symcat.h ./targ-env.h \
1943 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-ns32k.h \
1944 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1945 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1946DEPOBJ_ns32k_elf = $(INCDIR)/symcat.h ./targ-env.h \
1947 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1948 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1949 ./targ-cpu.h $(srcdir)/config/tc-ns32k.h dwarf2dbg.h \
403487ec 1950 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1951 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1952DEPOBJ_openrisc_coff = $(INCDIR)/symcat.h ./targ-env.h \
1953 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-openrisc.h \
1954 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1955 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1956DEPOBJ_openrisc_elf = $(INCDIR)/symcat.h ./targ-env.h \
1957 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1958 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1959 ./targ-cpu.h $(srcdir)/config/tc-openrisc.h dwarf2dbg.h \
ba323545 1960 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1961 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1962DEPOBJ_or32_coff = $(INCDIR)/symcat.h ./targ-env.h \
1963 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-or32.h \
1964 $(INCDIR)/coff/internal.h $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h \
1965 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1966DEPOBJ_or32_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1967 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1968 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1969 $(srcdir)/config/tc-or32.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1970 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1971 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1972DEPOBJ_pdp11_aout = $(INCDIR)/symcat.h ./targ-env.h \
1973 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-pdp11.h \
1974 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1975 $(INCDIR)/obstack.h
1976DEPOBJ_pdp11_coff = $(INCDIR)/symcat.h ./targ-env.h \
1977 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-pdp11.h \
1978 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
1979 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
1980DEPOBJ_pdp11_elf = $(INCDIR)/symcat.h ./targ-env.h \
1981 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
1982 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1983 ./targ-cpu.h $(srcdir)/config/tc-pdp11.h dwarf2dbg.h \
403487ec 1984 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
1985 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
1986DEPOBJ_pj_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
1987 ./targ-cpu.h $(srcdir)/config/tc-pj.h $(INCDIR)/coff/internal.h \
3438adb3 1988 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
1989 subsegs.h $(INCDIR)/obstack.h
1990DEPOBJ_pj_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
1991 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1992 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
1993 $(srcdir)/config/tc-pj.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
1994 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
1995 dwarf2dbg.h $(INCDIR)/aout/aout64.h
1996DEPOBJ_ppc_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
1997 ./targ-cpu.h $(srcdir)/config/tc-ppc.h $(INCDIR)/coff/internal.h \
403487ec 1998 $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
b898a385
L
1999 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
2000DEPOBJ_ppc_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
403487ec 2001 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2002 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2003 $(srcdir)/config/tc-ppc.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
2004 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
2005 dwarf2dbg.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \
e90b95f6 2006 $(INCDIR)/aout/aout64.h
b898a385
L
2007DEPOBJ_s390_coff = $(INCDIR)/symcat.h ./targ-env.h \
2008 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-s390.h \
2009 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
2010 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
2011DEPOBJ_s390_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
2012 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2013 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2014 $(srcdir)/config/tc-s390.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
2015 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
2016 dwarf2dbg.h $(INCDIR)/aout/aout64.h
2017DEPOBJ_sh_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
2018 ./targ-cpu.h $(srcdir)/config/tc-sh.h $(INCDIR)/coff/internal.h \
403487ec 2019 $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
b898a385
L
2020 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
2021DEPOBJ_sh_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
403487ec 2022 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2023 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2024 $(srcdir)/config/tc-sh.h $(INCDIR)/safe-ctype.h subsegs.h \
2025 $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
2026 dwarf2dbg.h $(INCDIR)/aout/aout64.h
2027DEPOBJ_sh64_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
403487ec 2028 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2029 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2030 $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
2031 $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf32-sh64.h \
403487ec 2032 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
2033 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
2034DEPOBJ_sparc_aout = $(INCDIR)/symcat.h ./targ-env.h \
2035 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-sparc.h \
2036 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
2037 $(INCDIR)/obstack.h
2038DEPOBJ_sparc_coff = $(INCDIR)/symcat.h ./targ-env.h \
2039 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-sparc.h \
2040 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h \
2041 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
2042 subsegs.h $(INCDIR)/obstack.h
2043DEPOBJ_sparc_elf = $(INCDIR)/symcat.h ./targ-env.h \
2044 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
2045 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
2046 ./targ-cpu.h $(srcdir)/config/tc-sparc.h dwarf2dbg.h \
403487ec 2047 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
2048 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
2049DEPOBJ_tic30_aout = $(INCDIR)/symcat.h ./targ-env.h \
2050 $(srcdir)/config/obj-aout.h ./targ-cpu.h $(srcdir)/config/tc-tic30.h \
2051 $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
2052 $(INCDIR)/obstack.h
2053DEPOBJ_tic30_coff = $(INCDIR)/symcat.h ./targ-env.h \
2054 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-tic30.h \
2055 $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h \
2056 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
2057 subsegs.h $(INCDIR)/obstack.h
2058DEPOBJ_tic30_elf = $(INCDIR)/symcat.h ./targ-env.h \
2059 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
2060 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
2061 ./targ-cpu.h $(srcdir)/config/tc-tic30.h dwarf2dbg.h \
f62ba8f2 2062 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
2063 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
2064DEPOBJ_tic4x_coff = $(INCDIR)/symcat.h ./targ-env.h \
2065 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-tic4x.h \
2066 $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \
2067 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
2068 subsegs.h $(INCDIR)/obstack.h
2069DEPOBJ_tic4x_elf = $(INCDIR)/symcat.h ./targ-env.h \
2070 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
2071 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
2072 ./targ-cpu.h $(srcdir)/config/tc-tic4x.h dwarf2dbg.h \
403487ec 2073 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
2074 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
2075DEPOBJ_tic54x_coff = $(INCDIR)/symcat.h ./targ-env.h \
2076 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-tic54x.h \
2077 $(INCDIR)/coff/internal.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \
3438adb3 2078 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
b898a385
L
2079 subsegs.h $(INCDIR)/obstack.h
2080DEPOBJ_tic54x_elf = $(INCDIR)/symcat.h ./targ-env.h \
2081 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
2082 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
2083 ./targ-cpu.h $(srcdir)/config/tc-tic54x.h $(INCDIR)/safe-ctype.h \
2084 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
2085 dwarf2dbg.h $(INCDIR)/aout/aout64.h
2086DEPOBJ_vax_aout = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-aout.h \
2087 ./targ-cpu.h $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h \
2088 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/obstack.h
2089DEPOBJ_vax_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
2090 ./targ-cpu.h $(srcdir)/config/tc-vax.h $(INCDIR)/coff/internal.h \
2091 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
2092 subsegs.h $(INCDIR)/obstack.h
2093DEPOBJ_vax_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
2094 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2095 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2096 $(srcdir)/config/tc-vax.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
2097 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
2098 dwarf2dbg.h $(INCDIR)/aout/aout64.h
2099DEPOBJ_v850_coff = $(INCDIR)/symcat.h ./targ-env.h \
2100 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-v850.h \
2101 $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
2102 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h \
2103 subsegs.h $(INCDIR)/obstack.h
2104DEPOBJ_v850_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
403487ec 2105 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385 2106 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
8e42bcb6 2107 $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \
b898a385
L
2108 dwarf2dbg.h $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
2109 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
2110DEPOBJ_xstormy16_coff = $(INCDIR)/symcat.h ./targ-env.h \
2111 $(srcdir)/config/obj-coff.h ./targ-cpu.h $(srcdir)/config/tc-xstormy16.h \
8e42bcb6 2112 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
b898a385
L
2113 $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
2114DEPOBJ_xstormy16_elf = $(INCDIR)/symcat.h ./targ-env.h \
2115 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
2116 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
2117 ./targ-cpu.h $(srcdir)/config/tc-xstormy16.h dwarf2dbg.h \
c0ef99a7 2118 $(INCDIR)/safe-ctype.h subsegs.h $(INCDIR)/obstack.h \
b898a385
L
2119 $(INCDIR)/obstack.h struc-symbol.h dwarf2dbg.h $(INCDIR)/aout/aout64.h
2120DEPOBJ_xtensa_elf = $(INCDIR)/symcat.h ./targ-env.h \
2121 $(srcdir)/config/obj-elf.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
2122 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
2123 ./targ-cpu.h $(srcdir)/config/tc-xtensa.h $(INCDIR)/xtensa-isa.h \
2124 $(INCDIR)/xtensa-config.h $(INCDIR)/safe-ctype.h subsegs.h \
2125 $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
2126 dwarf2dbg.h $(INCDIR)/aout/aout64.h
2127DEPOBJ_z8k_coff = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-coff.h \
2128 ./targ-cpu.h $(srcdir)/config/tc-z8k.h $(INCDIR)/coff/internal.h \
403487ec 2129 $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
b898a385
L
2130 $(INCDIR)/bfdlink.h $(INCDIR)/obstack.h subsegs.h $(INCDIR)/obstack.h
2131DEPOBJ_z8k_elf = $(INCDIR)/symcat.h ./targ-env.h $(srcdir)/config/obj-elf.h \
403487ec 2132 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2133 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2134 $(srcdir)/config/tc-z8k.h dwarf2dbg.h $(INCDIR)/safe-ctype.h \
2135 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/obstack.h struc-symbol.h \
2136 dwarf2dbg.h $(INCDIR)/aout/aout64.h
04ad1543 2137DEPOBJ_hppa_som = $(srcdir)/config/obj-som.h subsegs.h \
252b5132
RH
2138 $(INCDIR)/obstack.h $(BFDDIR)/libhppa.h $(BFDDIR)/som.h \
2139 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
16adf844
AM
2140DEPOBJ_i386_multi = $(DEPOBJ_i386_aout) $(DEPOBJ_i386_coff) \
2141 $(DEPOBJ_i386_elf)
04ad1543
ILT
2142DEPOBJ_mips_multi = $(DEPOBJ_mips_coff) $(DEPOBJ_mips_ecoff) \
2143 $(DEPOBJ_mips_elf)
3bcbcc3d 2144DEPOBJ_cris_multi = $(DEPOBJ_cris_aout) $(DEPOBJ_cris_elf)
b898a385
L
2145DEP_alpha_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2146 $(srcdir)/config/tc-alpha.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2147 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
2148DEP_alpha_ecoff = $(srcdir)/config/obj-ecoff.h ./targ-cpu.h \
2149 $(srcdir)/config/tc-alpha.h ecoff.h $(INCDIR)/coff/sym.h \
2150 $(INCDIR)/coff/ecoff.h
403487ec
AM
2151DEP_alpha_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2152 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2153 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2154 $(srcdir)/config/tc-alpha.h
2155DEP_alpha_evax = $(srcdir)/config/obj-evax.h ./targ-cpu.h \
2156 $(srcdir)/config/tc-alpha.h
2157DEP_arc_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2158 $(srcdir)/config/tc-arc.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2159 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2160DEP_arc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2161 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2162 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2163 $(srcdir)/config/tc-arc.h dwarf2dbg.h ./targ-env.h \
2164 ./obj-format.h $(srcdir)/config/obj-elf.h
2165DEP_arm_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2166 $(srcdir)/config/tc-arm.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
2167DEP_arm_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2168 $(srcdir)/config/tc-arm.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2169 $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2170 $(INCDIR)/bfdlink.h
403487ec
AM
2171DEP_arm_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2172 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2173 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2174 $(srcdir)/config/tc-arm.h
2175DEP_avr_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2176 $(srcdir)/config/tc-avr.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2177 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2178DEP_avr_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2179 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2180 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2181 $(srcdir)/config/tc-avr.h dwarf2dbg.h ./targ-env.h \
2182 ./obj-format.h $(srcdir)/config/obj-elf.h
2183DEP_bfin_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2184 $(srcdir)/config/tc-bfin.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2185 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
07c1b327
CM
2186DEP_bfin_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2187 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2188 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2189 $(srcdir)/config/tc-bfin.h dwarf2dbg.h ./targ-env.h \
2190 ./obj-format.h $(srcdir)/config/obj-elf.h
2191DEP_cris_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2192 $(srcdir)/config/tc-cris.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
403487ec
AM
2193DEP_cris_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2194 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2195 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2196 $(srcdir)/config/tc-cris.h dwarf2dbg.h ./targ-env.h \
2197 ./obj-format.h $(srcdir)/config/obj-elf.h
2198DEP_crx_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2199 $(srcdir)/config/tc-crx.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2200 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
8ea2b00f
AM
2201DEP_crx_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2202 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2203 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2204 $(srcdir)/config/tc-crx.h dwarf2dbg.h ./targ-env.h \
2205 ./obj-format.h $(srcdir)/config/obj-elf.h
2206DEP_d10v_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2207 $(srcdir)/config/tc-d10v.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2208 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2209DEP_d10v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2210 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2211 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2212 $(srcdir)/config/tc-d10v.h
2213DEP_d30v_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2214 $(srcdir)/config/tc-d30v.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2215 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2216DEP_d30v_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2217 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2218 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2219 $(srcdir)/config/tc-d30v.h
2220DEP_dlx_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2221 $(srcdir)/config/tc-dlx.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2222 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
d172d4ba
NC
2223DEP_dlx_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2224 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2225 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2226 $(srcdir)/config/tc-dlx.h dwarf2dbg.h ./targ-env.h \
2227 ./obj-format.h $(srcdir)/config/obj-elf.h
2228DEP_fr30_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2229 $(srcdir)/config/tc-fr30.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2230 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2231DEP_fr30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2232 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2233 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2234 $(srcdir)/config/tc-fr30.h dwarf2dbg.h ./targ-env.h \
2235 ./obj-format.h $(srcdir)/config/obj-elf.h
2236DEP_frv_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2237 $(srcdir)/config/tc-frv.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2238 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
0ebb9a87
DB
2239DEP_frv_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2240 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2241 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2242 $(srcdir)/config/tc-frv.h
2243DEP_h8300_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2244 $(srcdir)/config/tc-h8300.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2245 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2246 $(INCDIR)/bfdlink.h
403487ec
AM
2247DEP_h8300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2248 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2249 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2250 $(srcdir)/config/tc-h8300.h dwarf2dbg.h ./targ-env.h \
2251 ./obj-format.h $(srcdir)/config/obj-elf.h
2252DEP_hppa_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2253 $(srcdir)/config/tc-hppa.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2254 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2255DEP_hppa_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2256 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2257 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2258 $(srcdir)/config/tc-hppa.h $(BFDDIR)/elf32-hppa.h $(BFDDIR)/elf-bfd.h \
2259 $(BFDDIR)/libhppa.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h
2260DEP_ia64_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2261 $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
2262 $(INCDIR)/symcat.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h \
2263 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2264DEP_ia64_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2265 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2266 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2267 $(srcdir)/config/tc-ia64.h $(INCDIR)/opcode/ia64.h \
2268 $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h
2269DEP_i370_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2270 $(srcdir)/config/tc-i370.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2271 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2272DEP_i370_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2273 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2274 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2275 $(srcdir)/config/tc-i370.h dwarf2dbg.h ./targ-env.h \
2276 ./obj-format.h $(srcdir)/config/obj-elf.h
2277DEP_i386_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2278 $(srcdir)/config/tc-i386.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
2279DEP_i386_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2280 $(srcdir)/config/tc-i386.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2281 $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2282 $(INCDIR)/bfdlink.h
403487ec
AM
2283DEP_i386_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2284 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2285 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2286 $(srcdir)/config/tc-i386.h dwarf2dbg.h ./targ-env.h \
2287 ./obj-format.h $(srcdir)/config/obj-elf.h
403487ec
AM
2288DEP_i860_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2289 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2290 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2291 $(srcdir)/config/tc-i860.h dwarf2dbg.h ./targ-env.h \
2292 ./obj-format.h $(srcdir)/config/obj-elf.h
2293DEP_i960_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2294 $(srcdir)/config/tc-i960.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2295 $(INCDIR)/coff/i960.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2296DEP_i960_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2297 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2298 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2299 $(srcdir)/config/tc-i960.h dwarf2dbg.h ./targ-env.h \
2300 ./obj-format.h $(srcdir)/config/obj-elf.h
2301DEP_ip2k_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2302 $(srcdir)/config/tc-ip2k.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2303 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
a40cbfa3
NC
2304DEP_ip2k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2305 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2306 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2307 $(srcdir)/config/tc-ip2k.h dwarf2dbg.h ./targ-env.h \
2308 ./obj-format.h $(srcdir)/config/obj-elf.h
2309DEP_m32c_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2310 $(srcdir)/config/tc-m32c.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2311 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
0f82ff91
AM
2312DEP_m32c_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2313 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2314 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2315 $(srcdir)/config/tc-m32c.h dwarf2dbg.h ./targ-env.h \
2316 ./obj-format.h $(srcdir)/config/obj-elf.h
2317DEP_m32r_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2318 $(srcdir)/config/tc-m32r.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2319 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2320DEP_m32r_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2321 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2322 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2323 $(srcdir)/config/tc-m32r.h dwarf2dbg.h ./targ-env.h \
2324 ./obj-format.h $(srcdir)/config/obj-elf.h
2325DEP_m68hc11_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2326 $(srcdir)/config/tc-m68hc11.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2327 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2328 $(INCDIR)/bfdlink.h
403487ec
AM
2329DEP_m68hc11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2330 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2331 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2332 $(srcdir)/config/tc-m68hc11.h dwarf2dbg.h ./targ-env.h \
2333 ./obj-format.h $(srcdir)/config/obj-elf.h
2334DEP_m68k_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2335 $(srcdir)/config/tc-m68k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
2336DEP_m68k_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2337 $(srcdir)/config/tc-m68k.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2338 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2339 $(INCDIR)/bfdlink.h
403487ec
AM
2340DEP_m68k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2341 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2342 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2343 $(srcdir)/config/tc-m68k.h
2344DEP_mcore_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2345 $(srcdir)/config/tc-mcore.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2346 $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2347 $(INCDIR)/bfdlink.h
403487ec
AM
2348DEP_mcore_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2349 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2350 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2351 $(srcdir)/config/tc-mcore.h dwarf2dbg.h ./targ-env.h \
2352 ./obj-format.h $(srcdir)/config/obj-elf.h
2353DEP_mips_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2354 $(srcdir)/config/tc-mips.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2355 $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2356 $(INCDIR)/bfdlink.h
2357DEP_mips_ecoff = $(srcdir)/config/obj-ecoff.h ./targ-cpu.h \
2358 $(srcdir)/config/tc-mips.h ecoff.h $(INCDIR)/coff/sym.h \
2359 $(INCDIR)/coff/ecoff.h
403487ec
AM
2360DEP_mips_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2361 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2362 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2363 $(srcdir)/config/tc-mips.h
dcc46170
HPN
2364DEP_mmix_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2365 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2366 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2367 $(srcdir)/config/tc-mmix.h dwarf2dbg.h ./targ-env.h \
2368 ./obj-format.h $(srcdir)/config/obj-elf.h
2369DEP_mn10200_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2370 $(srcdir)/config/tc-mn10200.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2371 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2372DEP_mn10200_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2373 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2374 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2375 $(srcdir)/config/tc-mn10200.h dwarf2dbg.h ./targ-env.h \
2376 ./obj-format.h $(srcdir)/config/obj-elf.h
2377DEP_mn10300_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2378 $(srcdir)/config/tc-mn10300.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2379 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2380DEP_mn10300_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2381 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2382 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2383 $(srcdir)/config/tc-mn10300.h dwarf2dbg.h ./targ-env.h \
2384 ./obj-format.h $(srcdir)/config/obj-elf.h
2385DEP_msp430_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2386 $(srcdir)/config/tc-msp430.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2387 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
f62ba8f2
AM
2388DEP_msp430_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2389 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2390 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2391 $(srcdir)/config/tc-msp430.h dwarf2dbg.h ./targ-env.h \
2392 ./obj-format.h $(srcdir)/config/obj-elf.h
2393DEP_ns32k_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2394 $(srcdir)/config/tc-ns32k.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
2395DEP_ns32k_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2396 $(srcdir)/config/tc-ns32k.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2397 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2398DEP_ns32k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2399 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2400 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2401 $(srcdir)/config/tc-ns32k.h dwarf2dbg.h ./targ-env.h \
2402 ./obj-format.h $(srcdir)/config/obj-elf.h
2403DEP_openrisc_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2404 $(srcdir)/config/tc-openrisc.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2405 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2406DEP_openrisc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2407 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2408 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2409 $(srcdir)/config/tc-openrisc.h dwarf2dbg.h ./targ-env.h \
2410 ./obj-format.h $(srcdir)/config/obj-elf.h
2411DEP_or32_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2412 $(srcdir)/config/tc-or32.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2413 $(INCDIR)/coff/or32.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
ba323545
AM
2414DEP_or32_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2415 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2416 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2417 $(srcdir)/config/tc-or32.h dwarf2dbg.h ./targ-env.h \
2418 ./obj-format.h $(srcdir)/config/obj-elf.h
2419DEP_pdp11_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2420 $(srcdir)/config/tc-pdp11.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
2421DEP_pdp11_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2422 $(srcdir)/config/tc-pdp11.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2423 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2424DEP_pdp11_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2425 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2426 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2427 $(srcdir)/config/tc-pdp11.h dwarf2dbg.h ./targ-env.h \
2428 ./obj-format.h $(srcdir)/config/obj-elf.h
2429DEP_pj_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2430 $(srcdir)/config/tc-pj.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2431 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2432DEP_pj_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2433 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2434 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2435 $(srcdir)/config/tc-pj.h dwarf2dbg.h ./targ-env.h ./obj-format.h \
2436 $(srcdir)/config/obj-elf.h
2437DEP_ppc_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2438 $(srcdir)/config/tc-ppc.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2439 $(INCDIR)/coff/rs6000.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2440DEP_ppc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2441 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2442 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2443 $(srcdir)/config/tc-ppc.h dwarf2dbg.h ./targ-env.h \
2444 ./obj-format.h $(srcdir)/config/obj-elf.h
2445DEP_s390_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2446 $(srcdir)/config/tc-s390.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2447 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2448DEP_s390_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2449 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2450 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2451 $(srcdir)/config/tc-s390.h dwarf2dbg.h ./targ-env.h \
2452 ./obj-format.h $(srcdir)/config/obj-elf.h
2453DEP_sh_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2454 $(srcdir)/config/tc-sh.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2455 $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2456 $(INCDIR)/bfdlink.h
403487ec
AM
2457DEP_sh_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2458 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2459 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2460 $(srcdir)/config/tc-sh.h
eb1e0e80
NC
2461DEP_sh64_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2462 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2463 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2464 $(srcdir)/config/tc-sh64.h $(srcdir)/config/tc-sh.h \
2465 $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(BFDDIR)/elf32-sh64.h
2466DEP_sparc_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2467 $(srcdir)/config/tc-sparc.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
2468DEP_sparc_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2469 $(srcdir)/config/tc-sparc.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2470 $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2471 $(INCDIR)/bfdlink.h
403487ec
AM
2472DEP_sparc_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2473 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2474 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2475 $(srcdir)/config/tc-sparc.h dwarf2dbg.h ./targ-env.h \
2476 ./obj-format.h $(srcdir)/config/obj-elf.h
2477DEP_tic30_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2478 $(srcdir)/config/tc-tic30.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
2479DEP_tic30_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2480 $(srcdir)/config/tc-tic30.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2481 $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2482 $(INCDIR)/bfdlink.h
403487ec
AM
2483DEP_tic30_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2484 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2485 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2486 $(srcdir)/config/tc-tic30.h dwarf2dbg.h ./targ-env.h \
2487 ./obj-format.h $(srcdir)/config/obj-elf.h
2488DEP_tic4x_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2489 $(srcdir)/config/tc-tic4x.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2490 $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
2491 $(INCDIR)/bfdlink.h
f62ba8f2
AM
2492DEP_tic4x_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2493 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2494 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2495 $(srcdir)/config/tc-tic4x.h dwarf2dbg.h ./targ-env.h \
2496 ./obj-format.h $(srcdir)/config/obj-elf.h
2497DEP_tic54x_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2498 $(srcdir)/config/tc-tic54x.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2499 $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h $(BFDDIR)/libcoff.h \
2500 $(INCDIR)/bfdlink.h
403487ec
AM
2501DEP_tic54x_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2502 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2503 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2504 $(srcdir)/config/tc-tic54x.h
2505DEP_vax_aout = $(srcdir)/config/obj-aout.h ./targ-cpu.h \
2506 $(srcdir)/config/tc-vax.h $(BFDDIR)/libaout.h $(INCDIR)/bfdlink.h
2507DEP_vax_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2508 $(srcdir)/config/tc-vax.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2509 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
403487ec
AM
2510DEP_vax_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2511 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2512 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2513 $(srcdir)/config/tc-vax.h dwarf2dbg.h ./targ-env.h \
2514 ./obj-format.h $(srcdir)/config/obj-elf.h
2515DEP_v850_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2516 $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \
c0ef99a7
AM
2517 $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
2518 $(INCDIR)/bfdlink.h
b898a385
L
2519DEP_v850_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2520 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
2521 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2522 $(srcdir)/config/tc-v850.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \
2523 dwarf2dbg.h ./targ-env.h ./obj-format.h $(srcdir)/config/obj-elf.h
2524DEP_xstormy16_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2525 $(srcdir)/config/tc-xstormy16.h $(INCDIR)/symcat.h \
2526 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
c0ef99a7
AM
2527DEP_xstormy16_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2528 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2529 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2530 $(srcdir)/config/tc-xstormy16.h dwarf2dbg.h ./targ-env.h \
2531 ./obj-format.h $(srcdir)/config/obj-elf.h
e0001a05
NC
2532DEP_xtensa_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2533 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2534 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2535 $(srcdir)/config/tc-xtensa.h $(INCDIR)/xtensa-isa.h \
2536 $(INCDIR)/xtensa-config.h
2537DEP_z8k_coff = $(srcdir)/config/obj-coff.h ./targ-cpu.h \
2538 $(srcdir)/config/tc-z8k.h $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h \
2539 $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h $(BFDDIR)/libcoff.h \
2540 $(INCDIR)/bfdlink.h
403487ec
AM
2541DEP_z8k_elf = $(srcdir)/config/obj-elf.h $(INCDIR)/symcat.h \
2542 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b898a385
L
2543 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h ./targ-cpu.h \
2544 $(srcdir)/config/tc-z8k.h dwarf2dbg.h ./targ-env.h \
2545 ./obj-format.h $(srcdir)/config/obj-elf.h
252b5132 2546DEP_hppa_som = $(BFDDIR)/som.h
16adf844
AM
2547DEP_i386_multi = $(DEP_i386_aout) $(DEP_i386_coff) \
2548 $(DEP_i386_elf)
252b5132
RH
2549DEP_mips_multi = $(DEP_mips_coff) $(DEP_mips_ecoff) \
2550 $(DEP_mips_elf)
3bcbcc3d 2551DEP_cris_multi = $(DEP_cris_aout) $(DEP_cris_elf)
ad4d6ccf
AM
2552BMKDEP = #DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.
2553#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING BELOW.
b898a385
L
2554app.o: app.c $(INCDIR)/symcat.h ./targ-env.h
2555as.o: as.c $(INCDIR)/symcat.h ./targ-env.h subsegs.h \
2556 $(INCDIR)/obstack.h output-file.h sb.h macro.h dwarf2dbg.h \
2557 dw2gencfi.h $(INCDIR)/elf/dwarf2.h $(BFDVER_H)
2558atof-generic.o: atof-generic.c $(INCDIR)/symcat.h ./targ-env.h \
2559 $(INCDIR)/safe-ctype.h
2560cond.o: cond.c $(INCDIR)/symcat.h ./targ-env.h macro.h \
2561 sb.h $(INCDIR)/obstack.h
2562depend.o: depend.c $(INCDIR)/symcat.h ./targ-env.h
2563dwarf2dbg.o: dwarf2dbg.c $(INCDIR)/symcat.h ./targ-env.h \
2564 $(INCDIR)/safe-ctype.h dwarf2dbg.h $(INCDIR)/filenames.h \
2565 subsegs.h $(INCDIR)/obstack.h $(INCDIR)/elf/dwarf2.h
2566dw2gencfi.o: dw2gencfi.c $(INCDIR)/symcat.h ./targ-env.h \
2567 dw2gencfi.h $(INCDIR)/elf/dwarf2.h
2568ecoff.o: ecoff.c $(INCDIR)/symcat.h ./targ-env.h ecoff.h
2569ehopt.o: ehopt.c $(INCDIR)/symcat.h ./targ-env.h subsegs.h \
2570 $(INCDIR)/obstack.h $(INCDIR)/elf/dwarf2.h
2571expr.o: expr.c $(INCDIR)/symcat.h ./targ-env.h $(INCDIR)/safe-ctype.h \
403487ec 2572 $(INCDIR)/obstack.h
b898a385 2573flonum-copy.o: flonum-copy.c $(INCDIR)/symcat.h ./targ-env.h
ad4d6ccf
AM
2574flonum-konst.o: flonum-konst.c
2575flonum-mult.o: flonum-mult.c
b898a385 2576frags.o: frags.c $(INCDIR)/symcat.h ./targ-env.h subsegs.h \
403487ec 2577 $(INCDIR)/obstack.h
b898a385
L
2578hash.o: hash.c $(INCDIR)/symcat.h ./targ-env.h $(INCDIR)/safe-ctype.h \
2579 $(INCDIR)/obstack.h
2580input-file.o: input-file.c $(INCDIR)/symcat.h ./targ-env.h \
2581 input-file.h $(INCDIR)/safe-ctype.h
2582input-scrub.o: input-scrub.c $(INCDIR)/symcat.h ./targ-env.h \
2583 input-file.h sb.h
2584listing.o: listing.c $(INCDIR)/symcat.h ./targ-env.h \
2585 $(INCDIR)/obstack.h $(INCDIR)/safe-ctype.h input-file.h \
2586 subsegs.h
2587literal.o: literal.c $(INCDIR)/symcat.h ./targ-env.h \
2588 subsegs.h $(INCDIR)/obstack.h
2589macro.o: macro.c $(INCDIR)/symcat.h ./targ-env.h $(INCDIR)/safe-ctype.h \
3c55da70 2590 sb.h macro.h
b898a385
L
2591messages.o: messages.c $(INCDIR)/symcat.h ./targ-env.h
2592output-file.o: output-file.c $(INCDIR)/symcat.h ./targ-env.h \
2593 output-file.h
2594read.o: read.c $(INCDIR)/symcat.h ./targ-env.h $(INCDIR)/safe-ctype.h \
54cfded0
AM
2595 subsegs.h $(INCDIR)/obstack.h sb.h macro.h ecoff.h \
2596 dw2gencfi.h $(INCDIR)/elf/dwarf2.h
b898a385
L
2597sb.o: sb.c sb.h $(INCDIR)/symcat.h ./targ-env.h
2598stabs.o: stabs.c $(INCDIR)/symcat.h ./targ-env.h $(INCDIR)/obstack.h \
403487ec 2599 subsegs.h ecoff.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
b898a385
L
2600subsegs.o: subsegs.c $(INCDIR)/symcat.h ./targ-env.h \
2601 subsegs.h $(INCDIR)/obstack.h
2602symbols.o: symbols.c $(INCDIR)/symcat.h ./targ-env.h \
2603 $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h subsegs.h \
2604 struc-symbol.h
2605write.o: write.c $(INCDIR)/symcat.h ./targ-env.h subsegs.h \
2606 $(INCDIR)/obstack.h output-file.h dwarf2dbg.h
2607itbl-ops.o: itbl-ops.c itbl-ops.h $(INCDIR)/symcat.h \
2608 ./targ-env.h ./itbl-parse.h
403487ec 2609e-crisaout.o: $(srcdir)/config/e-crisaout.c $(INCDIR)/symcat.h \
b898a385 2610 ./targ-env.h emul-target.h
403487ec 2611e-criself.o: $(srcdir)/config/e-criself.c $(INCDIR)/symcat.h \
b898a385 2612 ./targ-env.h emul-target.h
403487ec 2613e-i386aout.o: $(srcdir)/config/e-i386aout.c $(INCDIR)/symcat.h \
b898a385 2614 ./targ-env.h emul-target.h
403487ec 2615e-i386coff.o: $(srcdir)/config/e-i386coff.c $(INCDIR)/symcat.h \
b898a385 2616 ./targ-env.h emul-target.h
403487ec 2617e-i386elf.o: $(srcdir)/config/e-i386elf.c $(INCDIR)/symcat.h \
b898a385 2618 ./targ-env.h emul-target.h
403487ec 2619e-mipsecoff.o: $(srcdir)/config/e-mipsecoff.c $(INCDIR)/symcat.h \
b898a385 2620 ./targ-env.h emul-target.h
403487ec 2621e-mipself.o: $(srcdir)/config/e-mipself.c $(INCDIR)/symcat.h \
b898a385 2622 ./targ-env.h emul-target.h
252b5132 2623$(OBJS): $(DEP_@target_cpu_type@_@obj_format@)
04ad1543
ILT
2624$(TARG_CPU_O): $(DEPTC_@target_cpu_type@_@obj_format@)
2625$(OBJ_FORMAT_O): $(DEPOBJ_@target_cpu_type@_@obj_format@)
ad4d6ccf 2626#MKDEP DO NOT PUT ANYTHING BETWEEN THIS LINE AND THE MATCHING WARNING ABOVE.