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