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