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