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