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