daily update
[deliverable/binutils-gdb.git] / bfd / Makefile.am
CommitLineData
252b5132
RH
1## Process this file with automake to generate Makefile.in
2
3f85e526 3AUTOMAKE_OPTIONS = 1.9 cygnus
252b5132 4
bc286f95
BE
5# Uncomment the following line when doing a release.
6# RELEASE=y
7
252b5132
RH
8INCDIR = $(srcdir)/../include
9CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
41b49281 10MKDEP = gcc -MM
252b5132
RH
11
12SUBDIRS = doc po
13
14docdir = doc
a703a6ea
AM
15bfdlibdir = @bfdlibdir@
16bfdincludedir = @bfdincludedir@
252b5132 17
a703a6ea 18bfdlib_LTLIBRARIES = libbfd.la
252b5132 19
a2d91340 20WARN_CFLAGS = @WARN_CFLAGS@
9e9b66a9 21NO_WERROR = @NO_WERROR@
a2d91340
AC
22AM_CFLAGS = $(WARN_CFLAGS)
23
252b5132
RH
24# bfd.h goes here, for now
25BFD_H = bfd.h
26
27# Jim Kingdon notes:
28# Writing S-records should be included in all (or at least most)
29# *-*-coff, *-*-aout, etc., configurations, because people will want to
30# be able to use objcopy to create S-records. (S-records are not useful
31# for the debugger, so if you are downloading things as S-records you
32# need two copies of the executable, one to download and one for the
33# debugger).
36b45482 34BFD32_LIBS = \
93509525
KD
35 archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo \
36 cache.lo coffgen.lo corefile.lo \
252b5132
RH
37 format.lo init.lo libbfd.lo opncls.lo reloc.lo \
38 section.lo syms.lo targets.lo hash.lo linker.lo \
51db3708 39 srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo \
af39267e 40 merge.lo dwarf2.lo simple.lo
252b5132 41
36b45482
TS
42BFD64_LIBS = archive64.lo
43
44BFD32_LIBS_CFILES = \
93509525
KD
45 archive.c archures.c bfd.c bfdio.c bfdwin.c \
46 cache.c coffgen.c corefile.c \
252b5132
RH
47 format.c init.c libbfd.c opncls.c reloc.c \
48 section.c syms.c targets.c hash.c linker.c \
51db3708 49 srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c \
af39267e 50 merge.c dwarf2.c simple.c
252b5132 51
36b45482
TS
52BFD64_LIBS_CFILES = archive64.c
53
252b5132
RH
54# This list is alphabetized to make it easier to keep in sync
55# with the decls and initializer in archures.c.
56ALL_MACHINES = \
57 cpu-a29k.lo \
58 cpu-alpha.lo \
59 cpu-arc.lo \
60 cpu-arm.lo \
adde6300 61 cpu-avr.lo \
0949843d 62 cpu-cr16c.lo \
06c15ad7 63 cpu-cris.lo \
1fe1f39c 64 cpu-crx.lo \
252b5132
RH
65 cpu-d10v.lo \
66 cpu-d30v.lo \
d172d4ba 67 cpu-dlx.lo \
252b5132 68 cpu-fr30.lo \
4e5ba5b7 69 cpu-frv.lo \
252b5132
RH
70 cpu-h8300.lo \
71 cpu-h8500.lo \
72 cpu-hppa.lo \
800eeca4 73 cpu-ia64.lo \
5b93d8bb 74 cpu-i370.lo \
252b5132
RH
75 cpu-i386.lo \
76 cpu-i860.lo \
77 cpu-i960.lo \
cf88bb9f 78 cpu-ip2k.lo \
a75473eb 79 cpu-iq2000.lo \
252b5132 80 cpu-m32r.lo \
60bcf0fa
NC
81 cpu-m68hc11.lo \
82 cpu-m68hc12.lo \
252b5132
RH
83 cpu-m68k.lo \
84 cpu-m88k.lo \
85 cpu-m10200.lo \
86 cpu-m10300.lo \
7499d566 87 cpu-maxq.lo \
252b5132
RH
88 cpu-mcore.lo \
89 cpu-mips.lo \
3c3bdf30 90 cpu-mmix.lo \
de33e640 91 cpu-ms1.lo \
32d95f29 92 cpu-msp430.lo \
3b16e843 93 cpu-or32.lo \
252b5132 94 cpu-ns32k.lo \
b3baf5d0 95 cpu-openrisc.lo \
e135f41b 96 cpu-pdp11.lo \
0bcb993b 97 cpu-pj.lo \
252b5132
RH
98 cpu-powerpc.lo \
99 cpu-rs6000.lo \
a85d7ed0 100 cpu-s390.lo \
252b5132
RH
101 cpu-sh.lo \
102 cpu-sparc.lo \
103 cpu-tic30.lo \
026df7c5 104 cpu-tic4x.lo \
81635ce4 105 cpu-tic54x.lo \
252b5132
RH
106 cpu-tic80.lo \
107 cpu-v850.lo \
108 cpu-vax.lo \
109 cpu-we32k.lo \
110 cpu-w65.lo \
93fbbb04 111 cpu-xstormy16.lo \
e0001a05 112 cpu-xtensa.lo \
252b5132
RH
113 cpu-z8k.lo
114
115ALL_MACHINES_CFILES = \
116 cpu-a29k.c \
117 cpu-alpha.c \
118 cpu-arc.c \
119 cpu-arm.c \
adde6300 120 cpu-avr.c \
06c15ad7 121 cpu-cris.c \
0949843d 122 cpu-cr16c.c \
1fe1f39c 123 cpu-crx.c \
252b5132
RH
124 cpu-d10v.c \
125 cpu-d30v.c \
d172d4ba 126 cpu-dlx.c \
252b5132 127 cpu-fr30.c \
4e5ba5b7 128 cpu-frv.c \
252b5132
RH
129 cpu-h8300.c \
130 cpu-h8500.c \
131 cpu-hppa.c \
800eeca4 132 cpu-ia64.c \
5b93d8bb 133 cpu-i370.c \
252b5132
RH
134 cpu-i386.c \
135 cpu-i860.c \
136 cpu-i960.c \
cf88bb9f 137 cpu-ip2k.c \
a75473eb 138 cpu-iq2000.c \
252b5132 139 cpu-m32r.c \
60bcf0fa
NC
140 cpu-m68hc11.c \
141 cpu-m68hc12.c \
252b5132
RH
142 cpu-m68k.c \
143 cpu-m88k.c \
144 cpu-m10200.c \
145 cpu-m10300.c \
0306b3bf 146 cpu-maxq.c \
252b5132
RH
147 cpu-mcore.c \
148 cpu-mips.c \
3c3bdf30 149 cpu-mmix.c \
de33e640 150 cpu-ms1.c \
2469cfa2 151 cpu-msp430.c \
3b16e843 152 cpu-or32.c \
252b5132 153 cpu-ns32k.c \
b3baf5d0 154 cpu-openrisc.c \
e135f41b 155 cpu-pdp11.c \
0bcb993b 156 cpu-pj.c \
252b5132
RH
157 cpu-powerpc.c \
158 cpu-rs6000.c \
a85d7ed0 159 cpu-s390.c \
252b5132
RH
160 cpu-sh.c \
161 cpu-sparc.c \
162 cpu-tic30.c \
026df7c5 163 cpu-tic4x.c \
81635ce4 164 cpu-tic54x.c \
252b5132
RH
165 cpu-tic80.c \
166 cpu-v850.c \
167 cpu-vax.c \
168 cpu-we32k.c \
169 cpu-w65.c \
93fbbb04 170 cpu-xstormy16.c \
e0001a05 171 cpu-xtensa.c \
252b5132
RH
172 cpu-z8k.c
173
174# The .o files needed by all of the 32 bit vectors that are configured into
175# target_vector in targets.c if configured with --enable-targets=all.
176BFD32_BACKENDS = \
177 aout-adobe.lo \
178 aout-arm.lo \
06c15ad7 179 aout-cris.lo \
252b5132
RH
180 aout-ns32k.lo \
181 aout-sparcle.lo \
182 aout-tic30.lo \
183 aout0.lo \
184 aout32.lo \
021e3cc0 185 armnetbsd.lo \
252b5132
RH
186 bout.lo \
187 cf-i386lynx.lo \
188 cf-m68klynx.lo \
189 cf-sparclynx.lo \
190 coff-a29k.lo \
191 coff-apollo.lo \
192 coff-arm.lo \
193 coff-aux.lo \
194 coff-h8300.lo \
195 coff-h8500.lo \
196 coff-i386.lo \
197 coff-go32.lo \
198 coff-i860.lo \
199 coff-i960.lo \
200 coff-m68k.lo \
201 coff-m88k.lo \
7499d566 202 coff-maxq.lo \
252b5132 203 coff-mips.lo \
3b16e843 204 coff-or32.lo \
252b5132
RH
205 coff-rs6000.lo \
206 coff-sh.lo \
207 coff-sparc.lo \
208 coff-stgo32.lo \
209 coff-svm68k.lo \
210 coff-tic30.lo \
026df7c5 211 coff-tic4x.lo \
81635ce4 212 coff-tic54x.lo \
252b5132
RH
213 coff-tic80.lo \
214 coff-u68k.lo \
215 coff-we32k.lo \
216 coff-w65.lo \
217 coff-z8k.lo \
218 cofflink.lo \
4a54b465 219 dwarf1.lo \
252b5132
RH
220 ecoff.lo \
221 ecofflink.lo \
85e22c7e 222 efi-app-ia32.lo \
252b5132 223 elf.lo \
942e0f42 224 elf32-am33lin.lo \
252b5132 225 elf32-arc.lo \
7f266840 226 elf32-arm.lo \
adde6300 227 elf32-avr.lo \
0949843d 228 elf32-cr16c.lo \
06c15ad7 229 elf32-cris.lo \
1fe1f39c 230 elf32-crx.lo \
252b5132
RH
231 elf32-d10v.lo \
232 elf32-d30v.lo \
d172d4ba 233 elf32-dlx.lo \
252b5132 234 elf32-fr30.lo \
4e5ba5b7 235 elf32-frv.lo \
252b5132 236 elf32-gen.lo \
ee8a3a3b 237 elf32-h8300.lo \
e0afaebd 238 elf32-hppa.lo \
5b93d8bb 239 elf32-i370.lo \
252b5132
RH
240 elf32-i386.lo \
241 elf32-i860.lo \
b2ef150d 242 elf32-i960.lo \
58378160 243 elf32-ip2k.lo \
a75473eb 244 elf32-iq2000.lo \
252b5132 245 elf32-m32r.lo \
60bcf0fa
NC
246 elf32-m68hc11.lo \
247 elf32-m68hc12.lo \
f5a6f915 248 elf32-m68hc1x.lo \
252b5132
RH
249 elf32-m68k.lo \
250 elf32-m88k.lo \
251 elf-m10200.lo \
252 elf-m10300.lo \
253 elf32-mcore.lo \
c6e90b02 254 elfxx-mips.lo \
252b5132 255 elf32-mips.lo \
de33e640 256 elf32-ms1.lo \
32d95f29 257 elf32-msp430.lo \
b3baf5d0 258 elf32-openrisc.lo \
3b16e843 259 elf32-or32.lo \
0bcb993b 260 elf32-pj.lo \
252b5132 261 elf32-ppc.lo \
a85d7ed0 262 elf32-s390.lo \
252b5132 263 elf32-sh.lo \
85fbca6a 264 elf32-sh-symbian.lo \
fbca6ad9 265 elf32-sh64.lo \
9cba27b2 266 elf32-sh64-com.lo \
fa0d1cab 267 elfxx-sparc.lo \
252b5132
RH
268 elf32-sparc.lo \
269 elf32-v850.lo \
90ace9e9 270 elf32-vax.lo \
93fbbb04 271 elf32-xstormy16.lo \
e0001a05 272 elf32-xtensa.lo \
252b5132
RH
273 elf32.lo \
274 elflink.lo \
2b0f7ef9 275 elf-strtab.lo \
65765700 276 elf-eh-frame.lo \
eac338cf 277 elf-vxworks.lo \
10ab5357
NC
278 epoc-pe-arm.lo \
279 epoc-pei-arm.lo \
252b5132
RH
280 hp300bsd.lo \
281 hp300hpux.lo \
282 som.lo \
283 i386aout.lo \
284 i386bsd.lo \
285 i386dynix.lo \
286 i386freebsd.lo \
287 i386linux.lo \
288 i386lynx.lo \
289 i386msdos.lo \
290 i386netbsd.lo \
291 i386mach3.lo \
292 i386os9k.lo \
293 ieee.lo \
294 m68k4knetbsd.lo \
295 m68klinux.lo \
296 m68klynx.lo \
297 m68knetbsd.lo \
298 m88kmach3.lo \
c6f8758f 299 m88kopenbsd.lo \
3af9a47b 300 mach-o.lo \
252b5132
RH
301 mipsbsd.lo \
302 newsos3.lo \
303 nlm.lo \
304 nlm32-i386.lo \
305 nlm32-sparc.lo \
306 nlm32-ppc.lo \
307 nlm32.lo \
308 ns32knetbsd.lo \
309 oasys.lo \
310 pc532-mach.lo \
e135f41b 311 pdp11.lo \
3af9a47b 312 pef.lo \
252b5132
RH
313 pe-arm.lo \
314 pei-arm.lo \
315 pe-i386.lo \
316 pei-i386.lo \
317 pe-mcore.lo \
318 pei-mcore.lo \
319 pe-ppc.lo \
320 pei-ppc.lo \
17505c5c
NC
321 pe-sh.lo \
322 pei-sh.lo \
323 pe-mips.lo \
324 pei-mips.lo \
277d1b5e 325 peigen.lo \
252b5132
RH
326 ppcboot.lo \
327 reloc16.lo \
328 riscix.lo \
329 sparclinux.lo \
330 sparclynx.lo \
331 sparcnetbsd.lo \
332 sunos.lo \
333 vaxnetbsd.lo \
3c2bfad6 334 vax1knetbsd.lo \
ba26fd96 335 vaxbsd.lo \
252b5132
RH
336 versados.lo \
337 vms.lo \
338 vms-gsd.lo \
339 vms-hdr.lo \
340 vms-misc.lo \
341 vms-tir.lo \
3af9a47b 342 xcofflink.lo \
e0001a05
NC
343 xsym.lo \
344 xtensa-isa.lo \
345 xtensa-modules.lo
252b5132
RH
346
347BFD32_BACKENDS_CFILES = \
348 aout-adobe.c \
349 aout-arm.c \
06c15ad7 350 aout-cris.c \
252b5132
RH
351 aout-ns32k.c \
352 aout-sparcle.c \
353 aout-tic30.c \
354 aout0.c \
355 aout32.c \
021e3cc0 356 armnetbsd.c \
252b5132
RH
357 bout.c \
358 cf-i386lynx.c \
359 cf-m68klynx.c \
360 cf-sparclynx.c \
361 coff-a29k.c \
362 coff-apollo.c \
363 coff-arm.c \
364 coff-aux.c \
365 coff-h8300.c \
366 coff-h8500.c \
367 coff-i386.c \
368 coff-i860.c \
369 coff-go32.c \
370 coff-i960.c \
371 coff-m68k.c \
372 coff-m88k.c \
7499d566 373 coff-maxq.c \
252b5132 374 coff-mips.c \
3b16e843 375 coff-or32.c \
252b5132
RH
376 coff-rs6000.c \
377 coff-sh.c \
378 coff-sparc.c \
379 coff-stgo32.c \
380 coff-svm68k.c \
381 coff-tic30.c \
026df7c5 382 coff-tic4x.c \
81635ce4 383 coff-tic54x.c \
252b5132
RH
384 coff-tic80.c \
385 coff-u68k.c \
386 coff-we32k.c \
387 coff-w65.c \
388 coff-z8k.c \
389 cofflink.c \
4a54b465 390 dwarf1.c \
252b5132
RH
391 ecoff.c \
392 ecofflink.c \
85e22c7e 393 efi-app-ia32.c \
252b5132 394 elf.c \
942e0f42 395 elf32-am33lin.c \
252b5132 396 elf32-arc.c \
7f266840 397 elf32-arm.c \
adde6300 398 elf32-avr.c \
0949843d 399 elf32-cr16c.c \
06c15ad7 400 elf32-cris.c \
1fe1f39c 401 elf32-crx.c \
252b5132
RH
402 elf32-d10v.c \
403 elf32-d30v.c \
d172d4ba 404 elf32-dlx.c \
252b5132 405 elf32-fr30.c \
4e5ba5b7 406 elf32-frv.c \
252b5132 407 elf32-gen.c \
ee8a3a3b 408 elf32-h8300.c \
3f9b03b5 409 elf32-hppa.c \
5b93d8bb 410 elf32-i370.c \
252b5132
RH
411 elf32-i386.c \
412 elf32-i860.c \
b2ef150d 413 elf32-i960.c \
cf88bb9f 414 elf32-ip2k.c \
a75473eb 415 elf32-iq2000.c \
252b5132
RH
416 elf32-m32r.c \
417 elf32-m68k.c \
60bcf0fa
NC
418 elf32-m68hc11.c \
419 elf32-m68hc12.c \
f5a6f915 420 elf32-m68hc1x.c \
252b5132
RH
421 elf32-m88k.c \
422 elf-m10200.c \
423 elf-m10300.c \
424 elf32-mcore.c \
c6e90b02 425 elfxx-mips.c \
252b5132 426 elf32-mips.c \
de33e640 427 elf32-ms1.c \
2469cfa2 428 elf32-msp430.c \
b3baf5d0 429 elf32-openrisc.c \
3b16e843 430 elf32-or32.c \
0bcb993b 431 elf32-pj.c \
252b5132 432 elf32-ppc.c \
fbca6ad9 433 elf32-sh64.c \
9cba27b2 434 elf32-sh64-com.c \
a85d7ed0 435 elf32-s390.c \
252b5132 436 elf32-sh.c \
85fbca6a 437 elf32-sh-symbian.c \
fa0d1cab 438 elfxx-sparc.c \
252b5132
RH
439 elf32-sparc.c \
440 elf32-v850.c \
90ace9e9 441 elf32-vax.c \
93fbbb04 442 elf32-xstormy16.c \
e0001a05 443 elf32-xtensa.c \
252b5132
RH
444 elf32.c \
445 elflink.c \
2b0f7ef9 446 elf-strtab.c \
65765700 447 elf-eh-frame.c \
eac338cf 448 elf-vxworks.c \
10ab5357
NC
449 epoc-pe-arm.c \
450 epoc-pei-arm.c \
252b5132
RH
451 hp300bsd.c \
452 hp300hpux.c \
453 som.c \
454 i386aout.c \
455 i386bsd.c \
456 i386dynix.c \
457 i386freebsd.c \
458 i386linux.c \
459 i386lynx.c \
460 i386msdos.c \
461 i386netbsd.c \
462 i386mach3.c \
463 i386os9k.c \
464 ieee.c \
465 m68k4knetbsd.c \
466 m68klinux.c \
467 m68klynx.c \
468 m68knetbsd.c \
469 m88kmach3.c \
c6f8758f 470 m88kopenbsd.c \
3af9a47b 471 mach-o.c \
252b5132
RH
472 mipsbsd.c \
473 newsos3.c \
474 nlm.c \
475 nlm32-i386.c \
476 nlm32-sparc.c \
477 nlm32-ppc.c \
478 nlm32.c \
479 ns32knetbsd.c \
480 oasys.c \
481 pc532-mach.c \
e135f41b 482 pdp11.c \
3af9a47b 483 pef.c \
252b5132
RH
484 pe-arm.c \
485 pei-arm.c \
486 pe-i386.c \
487 pei-i386.c \
488 pe-mcore.c \
489 pei-mcore.c \
490 pe-ppc.c \
491 pei-ppc.c \
17505c5c
NC
492 pe-sh.c \
493 pei-sh.c \
494 pe-mips.c \
495 pei-mips.c \
252b5132
RH
496 ppcboot.c \
497 reloc16.c \
498 riscix.c \
499 sparclinux.c \
500 sparclynx.c \
501 sparcnetbsd.c \
502 sunos.c \
503 vaxnetbsd.c \
3c2bfad6 504 vax1knetbsd.c \
ba26fd96 505 vaxbsd.c \
252b5132
RH
506 versados.c \
507 vms.c \
508 vms-gsd.c \
509 vms-hdr.c \
510 vms-misc.c \
511 vms-tir.c \
3af9a47b 512 xcofflink.c \
e0001a05
NC
513 xsym.c \
514 xtensa-isa.c \
515 xtensa-modules.c
252b5132
RH
516
517# The .o files needed by all of the 64 bit vectors that are configured into
518# target_vector in targets.c if configured with --enable-targets=all
519# and --enable-64-bit-bfd.
074d327a
NC
520# elf32-ia64.c requires a 64-bit bfd_vma, and hence can not be put in
521# BFD32_BACKENDS.
252b5132 522BFD64_BACKENDS = \
eb1e0e80 523 aix5ppc-core.lo \
252b5132
RH
524 aout64.lo \
525 coff-alpha.lo \
14958a43 526 coff64-rs6000.lo \
252b5132 527 demo64.lo \
85e22c7e 528 efi-app-ia64.lo \
8d88c4ca 529 elf64-x86-64.lo \
252b5132 530 elf64-alpha.lo \
d403336c 531 elf64-hppa.lo \
074d327a 532 elf32-ia64.lo \
800eeca4 533 elf64-ia64.lo \
252b5132 534 elf64-gen.lo \
8a397dad 535 elfn32-mips.lo \
252b5132 536 elf64-mips.lo \
3c3bdf30 537 elf64-mmix.lo \
fbca6ad9 538 elf64-sh64.lo \
5bd4f169 539 elf64-ppc.lo \
a85d7ed0 540 elf64-s390.lo \
252b5132
RH
541 elf64-sparc.lo \
542 elf64.lo \
3c3bdf30 543 mmo.lo \
252b5132 544 nlm32-alpha.lo \
825b47db
NC
545 nlm64.lo \
546 pepigen.lo
252b5132
RH
547
548BFD64_BACKENDS_CFILES = \
eb1e0e80 549 aix5ppc-core.c \
252b5132
RH
550 aout64.c \
551 coff-alpha.c \
14958a43 552 coff64-rs6000.c \
252b5132 553 demo64.c \
85e22c7e 554 efi-app-ia64.c \
8d88c4ca 555 elf64-x86-64.c \
252b5132 556 elf64-alpha.c \
d403336c 557 elf64-hppa.c \
252b5132 558 elf64-gen.c \
8a397dad 559 elfn32-mips.c \
252b5132 560 elf64-mips.c \
3c3bdf30 561 elf64-mmix.c \
5bd4f169 562 elf64-ppc.c \
a85d7ed0 563 elf64-s390.c \
fbca6ad9 564 elf64-sh64.c \
252b5132
RH
565 elf64-sparc.c \
566 elf64.c \
3c3bdf30 567 mmo.c \
252b5132
RH
568 nlm32-alpha.c \
569 nlm64.c
570
571OPTIONAL_BACKENDS = \
572 aix386-core.lo \
573 hpux-core.lo \
574 irix-core.lo \
575 lynx-core.lo \
576 osf-core.lo \
577 sco5-core.lo \
578 trad-core.lo \
579 cisco-core.lo
580
581OPTIONAL_BACKENDS_CFILES = \
582 aix386-core.c \
583 hpux-core.c \
584 irix-core.c \
585 lynx-core.c \
586 osf-core.c \
587 sco5-core.c \
588 trad-core.c \
589 cisco-core.c
590
3f85e526
L
591# We want to rerun configure if configure.in, config.bfd or
592# configure.host change. configure.in is needed since the version
593# number in Makefile comes from configure.in.
594CONFIG_STATUS_DEPENDENCIES = \
595 $(srcdir)/configure.in \
596 $(srcdir)/config.bfd \
597 $(srcdir)/configure.host
598
252b5132
RH
599# These are defined by configure.in:
600WORDSIZE = @wordsize@
601ALL_BACKENDS = @all_backends@
602BFD_BACKENDS = @bfd_backends@
36b45482 603BFD_LIBS = @bfd_libs@
252b5132
RH
604BFD_MACHINES = @bfd_machines@
605TDEFAULTS = @tdefaults@
606
4a2a2686 607INCLUDES = @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) -I$(srcdir)/../intl -I../intl
252b5132
RH
608
609# C source files that correspond to .o's.
27b7e12d 610SOURCE_CFILES = \
36b45482
TS
611 $(BFD32_LIBS_CFILES) \
612 $(BFD64_LIBS_CFILES) \
252b5132
RH
613 $(ALL_MACHINES_CFILES) \
614 $(BFD32_BACKENDS_CFILES) \
615 $(BFD64_BACKENDS_CFILES) \
616 $(OPTIONAL_BACKENDS_CFILES)
617
55c80943 618BUILD_CFILES = \
27b7e12d
AM
619 elf32-ia64.c elf64-ia64.c peigen.c pepigen.c
620
55c80943
NC
621CFILES = $(SOURCE_CFILES) $(BUILD_CFILES)
622
252b5132
RH
623## This is a list of all .h files which are in the source tree.
624SOURCE_HFILES = \
3f9b03b5 625 aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \
0306b3bf 626 elf-bfd.h elf-hppa.h elf32-hppa.h \
c152c796 627 elf64-hppa.h elfcode.h elfcore.h \
2bc3c89a
AM
628 freebsd.h genlink.h go32stub.h \
629 libaout.h libbfd.h libcoff.h libecoff.h libhppa.h libieee.h \
3af9a47b 630 libnlm.h liboasys.h libpei.h libxcoff.h mach-o.h \
2bc3c89a 631 netbsd.h nlm-target.h nlmcode.h nlmswap.h ns32k.h \
3af9a47b
NC
632 pef.h pef-traceback.h peicode.h som.h version.h \
633 vms.h xcoff-target.h xsym.h
252b5132 634
55c80943
NC
635## ... and all .h files which are in the build tree.
636BUILD_HFILES = \
2bc3c89a 637 bfdver.h elf32-target.h elf64-target.h targmatch.h
55c80943
NC
638
639HFILES = $(SOURCE_HFILES) $(BUILD_HFILES)
640
641SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES)
642BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES)
252b5132 643
55c80943 644po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
fdc09da8
AM
645 for file in $(SRC_POTFILES); do echo $$file; done \
646 | LC_COLLATE= sort > tmp.src \
01467f2a 647 && mv tmp.src $(srcdir)/po/SRC-POTFILES.in
55c80943
NC
648
649po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
fdc09da8
AM
650 for file in $(BLD_POTFILES); do echo $$file; done \
651 | LC_COLLATE= sort > tmp.bld \
01467f2a 652 && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in
55c80943 653
e3e71e27 654all diststuff: info
252b5132
RH
655
656# Various kinds of .o files to put in libbfd.a:
657# BFD_BACKENDS Routines the configured targets need.
658# BFD_MACHINES Architecture-specific routines the configured targets need.
659# COREFILE Core file routines for a native configuration
660OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@
661
662stamp-ofiles: Makefile
663 rm -f tofiles
664 f=""; \
665 for i in $(OFILES) ; do \
666 case " $$f " in \
667 *" $$i "*) ;; \
668 *) f="$$f $$i" ;; \
669 esac ; \
670 done ; \
671 echo $$f > tofiles
672 $(SHELL) $(srcdir)/../move-if-change tofiles ofiles
673 touch stamp-ofiles
674
675ofiles: stamp-ofiles ; @true
676
36b45482 677libbfd_la_SOURCES = $(BFD32_LIBS_CFILES) $(BFD64_LIBS_CFILES)
252b5132
RH
678libbfd_la_DEPENDENCIES = $(OFILES) ofiles
679libbfd_la_LIBADD = `cat ofiles` @WIN32LIBADD@
680libbfd_la_LDFLAGS = -release $(VERSION) @WIN32LDFLAGS@
681
682# libtool will build .libs/libbfd.a. We create libbfd.a in the build
683# directory so that we don't have to convert all the programs that use
684# libbfd.a simultaneously. This is a hack which should be removed if
685# everything else starts using libtool. FIXME.
686
687noinst_LIBRARIES = libbfd.a
688libbfd_a_SOURCES =
689
690stamp-lib: libbfd.la
e56f75e9
ILT
691 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
692 if [ -f $$libtooldir/libbfd.a ]; then \
693 cp $$libtooldir/libbfd.a libbfd.tmp; \
9f93bca5 694 $(RANLIB) libbfd.tmp; \
252b5132
RH
695 $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \
696 else true; fi
697 touch stamp-lib
698
699libbfd.a: stamp-lib ; @true
700
701# This file holds an array associating configuration triplets and
702# vector names. It is built from config.bfd. It is not compiled by
703# itself, but is included by targets.c.
704targmatch.h: config.bfd targmatch.sed
705 rm -f targmatch.h
706 sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new
707 mv -f targmatch.new targmatch.h
708
709# When compiling archures.c and targets.c, supply the default target
710# info from configure.
711
840f0243 712targets.lo: targets.c Makefile
252b5132
RH
713 $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/targets.c
714
840f0243 715archures.lo: archures.c Makefile
252b5132
RH
716 $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/archures.c
717
718elf32-target.h : elfxx-target.h
719 rm -f elf32-target.h
720 sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new
721 mv -f elf32-target.new elf32-target.h
722
723elf64-target.h : elfxx-target.h
724 rm -f elf64-target.h
725 sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new
726 mv -f elf64-target.new elf64-target.h
727
bbe66d08
JW
728elf32-ia64.c : elfxx-ia64.c
729 rm -f elf32-ia64.c
730 sed -e s/NN/32/g < $(srcdir)/elfxx-ia64.c > elf32-ia64.new
731 mv -f elf32-ia64.new elf32-ia64.c
732
733elf64-ia64.c : elfxx-ia64.c
734 rm -f elf64-ia64.c
735 sed -e s/NN/64/g < $(srcdir)/elfxx-ia64.c > elf64-ia64.new
736 mv -f elf64-ia64.new elf64-ia64.c
737
825b47db
NC
738peigen.c : peXXigen.c
739 rm -f peigen.c
740 sed -e s/XX/pe/g < $(srcdir)/peXXigen.c > peigen.new
741 mv -f peigen.new peigen.c
742
743pepigen.c : peXXigen.c
744 rm -f pepigen.c
745 sed -e s/XX/pep/g < $(srcdir)/peXXigen.c > pepigen.new
746 mv -f pepigen.new pepigen.c
747
b13c7b49 748BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
252b5132 749LOCAL_H_DEPS= libbfd.h sysdep.h config.h
36b45482
TS
750$(BFD32_LIBS) \
751 $(BFD64_LIBS) \
b13c7b49
AM
752 $(ALL_MACHINES) \
753 $(BFD32_BACKENDS) \
754 $(BFD64_BACKENDS) \
755 $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
252b5132 756
a703a6ea 757install-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@install_libbfd
252b5132 758 @$(NORMAL_INSTALL)
a703a6ea
AM
759
760uninstall-bfdlibLTLIBRARIES: @INSTALL_LIBBFD_TRUE@uninstall_libbfd
761 @$(NORMAL_UNINSTALL)
762
763.PHONY: install_libbfd uninstall_libbfd
764install_libbfd: $(bfdlib_LTLIBRARIES) $(BFD_H)
765 $(mkinstalldirs) $(DESTDIR)$(bfdlibdir)
766 $(mkinstalldirs) $(DESTDIR)$(bfdincludedir)
767 @list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
768 if test -f $$p; then \
769 echo "$(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p"; \
770 $(LIBTOOL) --mode=install $(INSTALL) $$p $(DESTDIR)$(bfdlibdir)/$$p; \
771 else :; fi; \
772 done
773 $(INSTALL_DATA) $(BFD_H) $(DESTDIR)$(bfdincludedir)/bfd.h
774 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(DESTDIR)$(bfdincludedir)/ansidecl.h
775 $(INSTALL_DATA) $(INCDIR)/symcat.h $(DESTDIR)$(bfdincludedir)/symcat.h
776 $(INSTALL_DATA) $(INCDIR)/bfdlink.h $(DESTDIR)$(bfdincludedir)/bfdlink.h
777
778uninstall_libbfd:
779 list='$(bfdlib_LTLIBRARIES)'; for p in $$list; do \
780 $(LIBTOOL) --mode=uninstall rm -f $(DESTDIR)$(bfdlibdir)/$$p; \
781 done
782 rm -f $(DESTDIR)$(bfdincludedir)/bfd.h
783 rm -f $(DESTDIR)$(bfdincludedir)/ansidecl.h
784 rm -f $(DESTDIR)$(bfdincludedir)/symcat.h
785 rm -f $(DESTDIR)$(bfdincludedir)/bfdlink.h
ee0bebb8 786
74eeebea
ILT
787# Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
788DEP: dep.sed $(CFILES) $(HFILES) bfd.h
789 rm -f DEP1
41b49281 790 $(MAKE) MKDEP="$(MKDEP)" DEP1
0bdaf48b
AM
791 sed -f dep.sed < DEP1 > DEPA
792 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
793 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
1581f8c9
AM
794 echo 'make DEP failed!'; exit 1; \
795 else \
0bdaf48b 796 mv -f DEPA $@; \
1581f8c9 797 fi
41b49281 798
74eeebea 799DEP1: $(CFILES)
74eeebea 800 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
41b49281
AM
801 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
802 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
803 mv -f DEP2 $@
252b5132
RH
804
805dep.sed: dep-in.sed config.status
806 sed <$(srcdir)/dep-in.sed >dep.sed \
807 -e 's!@BFD_H@!$(BFD_H)!' \
830629ab
AM
808 -e 's!@SRCDIR@!$(srcdir)!' \
809 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/bfd$$,,`'!'
252b5132 810
74eeebea 811dep: DEP
252b5132 812 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
74eeebea 813 cat DEP >> tmp-Makefile
252b5132
RH
814 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
815
74eeebea 816dep-in: DEP
252b5132 817 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
74eeebea 818 cat DEP >> tmp-Makefile.in
252b5132
RH
819 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
820
74eeebea 821dep-am: DEP
252b5132 822 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
74eeebea 823 cat DEP >> tmp-Makefile.am
252b5132
RH
824 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
825
826host-aout.lo: Makefile
827
828# The following program can be used to generate a simple config file
829# which can be folded into an h-XXX file for a new host, with some editing.
830aout-params.h: gen-aout
831 ./gen-aout host > aout-params.h
832gen-aout: $(srcdir)/gen-aout.c Makefile
833 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
834
835$(BFD_H): stmp-bfd-h ; @true
836
837stmp-bfd-h: bfd-in3.h
838 rm -f bfd-tmp.h
839 cp bfd-in3.h bfd-tmp.h
840 $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H)
841 rm -f bfd-tmp.h
842 touch stmp-bfd-h
843
844BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
93509525
KD
845 reloc.c syms.c bfd.c bfdio.c bfdwin.c \
846 archive.c corefile.c targets.c format.c
36b45482 847BFD64_H_FILES = archive64.c
93509525
KD
848LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c bfdio.c bfdwin.c \
849 cache.c reloc.c archures.c elf.c
252b5132
RH
850LIBCOFF_H_FILES = libcoff-in.h coffcode.h
851
852# Could really use a "copy-if-change"...
853headers:
854 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
855 cp $(docdir)/bfd.h bfd-in2.h-new
856 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
857 cp $(docdir)/libbfd.h libbfd.h-new
858 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
859 cp $(docdir)/libcoff.h libcoff.h-new
860 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
861
862# We only rebuild the header files automatically if we have been
863# configured with --enable-maintainer-mode.
864
865$(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
36b45482 866stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES)
252b5132
RH
867 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h)
868 cp $(docdir)/bfd.h bfd-in2.h-new
869 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
870 touch stmp-bin2-h
871
872$(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
873stmp-lbfd-h: $(LIBBFD_H_FILES)
874 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h)
875 cp $(docdir)/libbfd.h libbfd.h-new
876 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
877 touch stmp-lbfd-h
878
879$(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true
880stmp-lcoff-h: $(LIBCOFF_H_FILES)
881 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h)
882 cp $(docdir)/libcoff.h libcoff.h-new
883 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
884 touch stmp-lcoff-h
885
55c80943 886MOSTLYCLEANFILES = ofiles stamp-ofiles
252b5132 887
0bdaf48b 888CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \
252b5132
RH
889 stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
890
55c80943
NC
891DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES)
892
d866f350 893bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in
bc286f95
BE
894 @echo "creating $@"
895 @bfd_version=`echo "$(VERSION)" | sed -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$$/\1\2\3\4\5/'` ;\
896 bfd_version_string="\"$(VERSION)\"" ;\
897 if test "x$(RELEASE)" = x ; then \
d866f350 898 bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\
bc286f95
BE
899 bfd_version_string="\"$(VERSION) $${bfd_version_date}\"" ;\
900 fi ;\
d866f350 901 sed -e "s/@bfd_version@/$$bfd_version/" -e "s/@bfd_version_string@/$$bfd_version_string/" < $(srcdir)/version.h > $@
bc286f95 902
252b5132
RH
903# What appears below is generated by a hacked mkdep using gcc -MM.
904
905# DO NOT DELETE THIS LINE -- mkdep uses it.
906# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
ceae3e33
AM
907archive.lo: archive.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
908 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h $(INCDIR)/safe-ctype.h
909archures.lo: archures.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
910 $(INCDIR)/safe-ctype.h
6a0735ef 911bfd.lo: bfd.c bfdver.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
ceae3e33
AM
912 $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h \
913 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h libcoff.h \
914 libecoff.h $(INCDIR)/coff/ecoff.h elf-bfd.h $(INCDIR)/elf/common.h \
915 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
916bfdio.lo: bfdio.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
917bfdwin.lo: bfdwin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
918cache.lo: cache.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
3f87cb70 919 $(INCDIR)/libiberty.h
ceae3e33
AM
920coffgen.lo: coffgen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
921 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h
922corefile.lo: corefile.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
923format.lo: format.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
924init.lo: init.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
925libbfd.lo: libbfd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
926opncls.lo: opncls.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h \
927 $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h
928reloc.lo: reloc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
929 $(INCDIR)/hashtab.h
930section.lo: section.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
931 $(INCDIR)/bfdlink.h
932syms.lo: syms.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
933 $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/stab_gnu.h \
934 $(INCDIR)/aout/stab.def
935targets.lo: targets.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
936 $(INCDIR)/fnmatch.h targmatch.h
937hash.lo: hash.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
938 $(INCDIR)/objalloc.h $(INCDIR)/libiberty.h
939linker.lo: linker.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
940 $(INCDIR)/bfdlink.h genlink.h
941srec.lo: srec.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
942 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
943binary.lo: binary.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
944 $(INCDIR)/hashtab.h
945tekhex.lo: tekhex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
871ec896 946 $(INCDIR)/libiberty.h
ceae3e33
AM
947ihex.lo: ihex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
948 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
949stabs.lo: stabs.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
950 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h
b13c7b49
AM
951stab-syms.lo: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \
952 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def
e90b95f6
AM
953merge.lo: merge.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
954 $(INCDIR)/libiberty.h
b13c7b49 955dwarf2.lo: dwarf2.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
ceae3e33
AM
956 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
957 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
958 $(INCDIR)/elf/dwarf2.h
959simple.lo: simple.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
b13c7b49 960 $(INCDIR)/bfdlink.h
ceae3e33
AM
961archive64.lo: archive64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
962 $(INCDIR)/aout/ar.h
963cpu-a29k.lo: cpu-a29k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
964cpu-alpha.lo: cpu-alpha.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
965cpu-arc.lo: cpu-arc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
966cpu-arm.lo: cpu-arm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
967 $(INCDIR)/libiberty.h
968cpu-avr.lo: cpu-avr.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
969cpu-cris.lo: cpu-cris.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
970cpu-cr16c.lo: cpu-cr16c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
971cpu-crx.lo: cpu-crx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
972cpu-d10v.lo: cpu-d10v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
973cpu-d30v.lo: cpu-d30v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
974cpu-dlx.lo: cpu-dlx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
975cpu-fr30.lo: cpu-fr30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
976cpu-frv.lo: cpu-frv.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
977cpu-h8300.lo: cpu-h8300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
978cpu-h8500.lo: cpu-h8500.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
979cpu-hppa.lo: cpu-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
980cpu-ia64.lo: cpu-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
981 cpu-ia64-opc.c $(srcdir)/../opcodes/ia64-opc.h $(INCDIR)/opcode/ia64.h
982cpu-i370.lo: cpu-i370.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
983cpu-i386.lo: cpu-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
984cpu-i860.lo: cpu-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
985cpu-i960.lo: cpu-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
986cpu-ip2k.lo: cpu-ip2k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
987cpu-iq2000.lo: cpu-iq2000.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
988cpu-m32r.lo: cpu-m32r.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
989cpu-m68hc11.lo: cpu-m68hc11.c $(INCDIR)/filenames.h \
990 $(INCDIR)/hashtab.h
991cpu-m68hc12.lo: cpu-m68hc12.c $(INCDIR)/filenames.h \
992 $(INCDIR)/hashtab.h
993cpu-m68k.lo: cpu-m68k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
994cpu-m88k.lo: cpu-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
995cpu-m10200.lo: cpu-m10200.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
996cpu-m10300.lo: cpu-m10300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
997cpu-maxq.lo: cpu-maxq.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
998cpu-mcore.lo: cpu-mcore.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
999cpu-mips.lo: cpu-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1000cpu-mmix.lo: cpu-mmix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1001cpu-msp430.lo: cpu-msp430.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1002cpu-or32.lo: cpu-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1003cpu-ns32k.lo: cpu-ns32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1004 ns32k.h
1005cpu-openrisc.lo: cpu-openrisc.c $(INCDIR)/filenames.h \
1006 $(INCDIR)/hashtab.h
1007cpu-pdp11.lo: cpu-pdp11.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1008cpu-pj.lo: cpu-pj.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1009cpu-powerpc.lo: cpu-powerpc.c $(INCDIR)/filenames.h \
1010 $(INCDIR)/hashtab.h
1011cpu-rs6000.lo: cpu-rs6000.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1012cpu-s390.lo: cpu-s390.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1013cpu-sh.lo: cpu-sh.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1014 $(srcdir)/../opcodes/sh-opc.h
1015cpu-sparc.lo: cpu-sparc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1016cpu-tic30.lo: cpu-tic30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1017cpu-tic4x.lo: cpu-tic4x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1018cpu-tic54x.lo: cpu-tic54x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1019cpu-tic80.lo: cpu-tic80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1020cpu-v850.lo: cpu-v850.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1021 $(INCDIR)/safe-ctype.h
1022cpu-vax.lo: cpu-vax.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1023cpu-we32k.lo: cpu-we32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1024cpu-w65.lo: cpu-w65.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1025cpu-xstormy16.lo: cpu-xstormy16.c $(INCDIR)/filenames.h \
1026 $(INCDIR)/hashtab.h
1027cpu-xtensa.lo: cpu-xtensa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1028cpu-z8k.lo: cpu-z8k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1029aout-adobe.lo: aout-adobe.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1030 $(INCDIR)/aout/adobe.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1031 libaout.h $(INCDIR)/bfdlink.h
b13c7b49
AM
1032aout-arm.lo: aout-arm.c $(INCDIR)/filenames.h libaout.h \
1033 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aoutx.h \
ceae3e33
AM
1034 $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h $(INCDIR)/aout/stab_gnu.h \
1035 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
b13c7b49 1036aout-cris.lo: aout-cris.c aout32.c aoutx.h $(INCDIR)/filenames.h \
e43d48cc 1037 $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h libaout.h \
ceae3e33
AM
1038 $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1039 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
b13c7b49
AM
1040aout-ns32k.lo: aout-ns32k.c $(INCDIR)/aout/aout64.h \
1041 ns32k.h libaout.h $(INCDIR)/bfdlink.h aoutx.h $(INCDIR)/filenames.h \
ceae3e33
AM
1042 $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h $(INCDIR)/aout/stab_gnu.h \
1043 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
b13c7b49 1044aout-sparcle.lo: aout-sparcle.c $(INCDIR)/bfdlink.h \
ceae3e33
AM
1045 libaout.h aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1046 $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1047 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
b13c7b49
AM
1048aout-tic30.lo: aout-tic30.c $(INCDIR)/filenames.h libaout.h \
1049 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1050 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aoutx.h \
ceae3e33
AM
1051 $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h
1052aout0.lo: aout0.c aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1053 $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \
1054 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1055 $(INCDIR)/aout/ar.h aout-target.h
b13c7b49 1056aout32.lo: aout32.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
ceae3e33 1057 $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
b13c7b49
AM
1058 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1059armnetbsd.lo: armnetbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1060 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1061 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1062 $(INCDIR)/aout/ar.h
1063bout.lo: bout.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1064 $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/bout.h $(INCDIR)/libiberty.h \
1065 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
b13c7b49 1066cf-i386lynx.lo: cf-i386lynx.c $(INCDIR)/filenames.h \
ceae3e33
AM
1067 coff-i386.c $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h \
1068 $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1069 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1070cf-m68klynx.lo: cf-m68klynx.c coff-m68k.c $(INCDIR)/filenames.h \
1071 $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
8a5cc6be
AM
1072 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1073 coffcode.h coffswap.h
b13c7b49 1074cf-sparclynx.lo: cf-sparclynx.c coff-sparc.c $(INCDIR)/filenames.h \
ceae3e33
AM
1075 $(INCDIR)/hashtab.h $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h \
1076 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1077 coffcode.h coffswap.h
1078coff-a29k.lo: coff-a29k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1079 $(INCDIR)/coff/a29k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
2114f57b 1080 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
b13c7b49 1081coff-apollo.lo: coff-apollo.c $(INCDIR)/filenames.h \
ceae3e33
AM
1082 $(INCDIR)/hashtab.h $(INCDIR)/coff/apollo.h $(INCDIR)/coff/external.h \
1083 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1084 coffcode.h coffswap.h
1085coff-arm.lo: coff-arm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1086 $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
b13c7b49
AM
1087 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1088coff-aux.lo: coff-aux.c $(INCDIR)/filenames.h $(INCDIR)/coff/aux-coff.h \
1089 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
ceae3e33 1090 coff-m68k.c $(INCDIR)/hashtab.h libcoff.h $(INCDIR)/bfdlink.h \
04c9666a 1091 coffcode.h coffswap.h
ceae3e33
AM
1092coff-h8300.lo: coff-h8300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1093 $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/coff/h8300.h \
b13c7b49 1094 $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
ceae3e33
AM
1095 libcoff.h $(INCDIR)/libiberty.h coffcode.h coffswap.h
1096coff-h8500.lo: coff-h8500.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1097 $(INCDIR)/bfdlink.h $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h \
1098 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1099coff-i386.lo: coff-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1100 $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
8a5cc6be 1101 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
ceae3e33
AM
1102coff-i860.lo: coff-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1103 $(INCDIR)/coff/i860.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
b13c7b49
AM
1104 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1105coff-go32.lo: coff-go32.c coff-i386.c $(INCDIR)/filenames.h \
ceae3e33 1106 $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
2114f57b 1107 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
252b5132 1108 coffcode.h coffswap.h
ceae3e33
AM
1109coff-i960.lo: coff-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1110 $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h \
1111 $(INCDIR)/bfdlink.h coffcode.h coffswap.h
1112coff-m68k.lo: coff-m68k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1113 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
8a5cc6be 1114 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
ceae3e33
AM
1115coff-m88k.lo: coff-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1116 $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
8a5cc6be 1117 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
ceae3e33
AM
1118coff-maxq.lo: coff-maxq.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1119 $(INCDIR)/coff/maxq.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
d25604af 1120 libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h \
7499d566 1121 coffcode.h coffswap.h
b13c7b49 1122coff-mips.lo: coff-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1123 $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1124 $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h \
1125 $(INCDIR)/coff/external.h libcoff.h libecoff.h coffswap.h \
1126 ecoffswap.h
1127coff-or32.lo: coff-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1128 $(INCDIR)/coff/or32.h $(INCDIR)/coff/internal.h libcoff.h \
1129 $(INCDIR)/bfdlink.h coffcode.h coffswap.h
b13c7b49 1130coff-rs6000.lo: coff-rs6000.c $(INCDIR)/filenames.h \
ceae3e33
AM
1131 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \
1132 $(INCDIR)/coff/xcoff.h $(INCDIR)/coff/rs6000.h libcoff.h \
1133 libxcoff.h coffcode.h coffswap.h
b13c7b49 1134coff-sh.lo: coff-sh.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
ceae3e33 1135 $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \
8a5cc6be 1136 $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
ceae3e33
AM
1137 libcoff.h coffcode.h coffswap.h
1138coff-sparc.lo: coff-sparc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1139 $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
e43d48cc 1140 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
b13c7b49 1141coff-stgo32.lo: coff-stgo32.c coff-i386.c $(INCDIR)/filenames.h \
ceae3e33
AM
1142 $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1143 $(INCDIR)/coff/internal.h $(INCDIR)/coff/go32exe.h \
1144 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h \
1145 go32stub.h
b13c7b49 1146coff-svm68k.lo: coff-svm68k.c coff-m68k.c $(INCDIR)/filenames.h \
ceae3e33
AM
1147 $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
1148 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1149 coffcode.h coffswap.h
1150coff-tic30.lo: coff-tic30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1151 $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h \
252b5132 1152 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
ceae3e33
AM
1153coff-tic4x.lo: coff-tic4x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1154 $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \
1155 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1156coff-tic54x.lo: coff-tic54x.c $(INCDIR)/filenames.h \
1157 $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic54x.h \
1158 $(INCDIR)/coff/ti.h $(INCDIR)/coff/internal.h libcoff.h \
1159 coffcode.h coffswap.h
b13c7b49 1160coff-tic80.lo: coff-tic80.c $(INCDIR)/bfdlink.h $(INCDIR)/filenames.h \
ceae3e33
AM
1161 $(INCDIR)/hashtab.h $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h \
1162 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
b13c7b49 1163coff-u68k.lo: coff-u68k.c coff-m68k.c $(INCDIR)/filenames.h \
ceae3e33
AM
1164 $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \
1165 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
1166 coffcode.h coffswap.h
1167coff-we32k.lo: coff-we32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1168 $(INCDIR)/coff/we32k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
b13c7b49 1169 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
ceae3e33
AM
1170coff-w65.lo: coff-w65.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1171 $(INCDIR)/bfdlink.h $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h \
1172 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
1173coff-z8k.lo: coff-z8k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1174 $(INCDIR)/bfdlink.h $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h \
1175 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
b13c7b49 1176cofflink.lo: cofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1177 $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h libcoff.h \
1178 $(INCDIR)/safe-ctype.h
b13c7b49 1179dwarf1.lo: dwarf1.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
ceae3e33
AM
1180 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1181 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1182 $(INCDIR)/elf/dwarf.h
b13c7b49 1183ecoff.lo: ecoff.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1184 $(INCDIR)/hashtab.h $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h \
1185 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h \
1186 $(INCDIR)/aout/aout64.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1187 $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h libcoff.h \
1188 libecoff.h $(INCDIR)/libiberty.h
b13c7b49 1189ecofflink.lo: ecofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1190 $(INCDIR)/hashtab.h $(INCDIR)/objalloc.h $(INCDIR)/aout/stab_gnu.h \
1191 $(INCDIR)/aout/stab.def $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1192 $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h libcoff.h \
1193 libecoff.h
b13c7b49 1194efi-app-ia32.lo: efi-app-ia32.c $(INCDIR)/filenames.h \
ceae3e33
AM
1195 coff-i386.c $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h \
1196 $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1197 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1198 peicode.h libpei.h
b13c7b49 1199elf.lo: elf.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1200 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1201 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/libiberty.h
942e0f42 1202elf32-am33lin.lo: elf32-am33lin.c elf-m10300.c $(INCDIR)/filenames.h \
ceae3e33 1203 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
b13c7b49 1204 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
ceae3e33 1205 $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/reloc-macros.h \
7f266840 1206 elf32-target.h
ceae3e33
AM
1207elf32-arc.lo: elf32-arc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1208 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1209 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h \
1210 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
b13c7b49 1211 elf32-target.h
ceae3e33
AM
1212elf32-arm.lo: elf32-arm.c $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \
1213 $(INCDIR)/filenames.h $(INCDIR)/hashtab.h elf-bfd.h \
1214 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1215 $(INCDIR)/bfdlink.h elf32-target.h
1216elf32-avr.lo: elf32-avr.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1217 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1218 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h \
1219 $(INCDIR)/elf/reloc-macros.h elf32-target.h
f6f9408f 1220elf32-cr16c.lo: elf32-cr16c.c $(INCDIR)/filenames.h \
ceae3e33
AM
1221 $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/cr16c.h \
1222 $(INCDIR)/elf/reloc-macros.h elf-bfd.h $(INCDIR)/elf/common.h \
1223 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-target.h
1224elf32-cris.lo: elf32-cris.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
f6f9408f 1225 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33
AM
1226 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/cris.h \
1227 $(INCDIR)/elf/reloc-macros.h elf32-target.h
90c0a373 1228elf32-crx.lo: elf32-crx.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1229 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1230 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/crx.h \
1231 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1232elf32-d10v.lo: elf32-d10v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
90c0a373 1233 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33
AM
1234 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/d10v.h \
1235 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1236elf32-d30v.lo: elf32-d30v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
923f08ff 1237 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33 1238 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/d30v.h \
923f08ff 1239 $(INCDIR)/elf/reloc-macros.h elf32-target.h
ceae3e33 1240elf32-dlx.lo: elf32-dlx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
2114f57b 1241 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33
AM
1242 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dlx.h \
1243 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1244elf32-fr30.lo: elf32-fr30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1245 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1246 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/fr30.h \
1247 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1248elf32-frv.lo: elf32-frv.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1249 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1250 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/frv.h \
1251 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/dwarf2.h \
37f45cf8 1252 elf32-target.h
ceae3e33
AM
1253elf32-gen.lo: elf32-gen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1254 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1255 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h elf32-target.h
1256elf32-h8300.lo: elf32-h8300.c $(INCDIR)/filenames.h \
1257 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1258 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1259 $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
1260elf32-hppa.lo: elf32-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1261 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1262 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h \
1263 $(INCDIR)/elf/reloc-macros.h libhppa.h elf32-hppa.h \
1264 elf-hppa.h elf32-target.h
1265elf32-i370.lo: elf32-i370.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1266 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1267 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/i370.h \
1268 $(INCDIR)/elf/reloc-macros.h elf32-target.h
b13c7b49 1269elf32-i386.lo: elf32-i386.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33 1270 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
b2b09913
JB
1271 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf-vxworks.h \
1272 $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
ceae3e33 1273elf32-i860.lo: elf32-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
2114f57b 1274 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33
AM
1275 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/i860.h \
1276 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1277elf32-i960.lo: elf32-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
04c9666a 1278 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33 1279 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/i960.h \
04c9666a 1280 $(INCDIR)/elf/reloc-macros.h elf32-target.h
ceae3e33 1281elf32-ip2k.lo: elf32-ip2k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
2114f57b 1282 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33
AM
1283 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/ip2k.h \
1284 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1285elf32-iq2000.lo: elf32-iq2000.c $(INCDIR)/filenames.h \
1286 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1287 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1288 $(INCDIR)/elf/iq2000.h $(INCDIR)/elf/reloc-macros.h \
b13c7b49 1289 elf32-target.h
ceae3e33
AM
1290elf32-m32r.lo: elf32-m32r.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1291 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1292 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32r.h \
1293 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1294elf32-m68k.lo: elf32-m68k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1295 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1296 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/m68k.h \
1297 $(INCDIR)/elf/reloc-macros.h elf32-target.h
b13c7b49 1298elf32-m68hc11.lo: elf32-m68hc11.c $(INCDIR)/filenames.h \
ceae3e33 1299 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
795bb480
AM
1300 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-m68hc1x.h \
1301 $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \
1302 $(INCDIR)/opcode/m68hc11.h elf32-target.h
b13c7b49 1303elf32-m68hc12.lo: elf32-m68hc12.c $(INCDIR)/filenames.h \
ceae3e33 1304 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
795bb480
AM
1305 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-m68hc1x.h \
1306 $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \
1307 $(INCDIR)/opcode/m68hc11.h elf32-target.h
f5a6f915 1308elf32-m68hc1x.lo: elf32-m68hc1x.c $(INCDIR)/filenames.h \
ceae3e33 1309 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
795bb480
AM
1310 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elf32-m68hc1x.h \
1311 $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \
1312 $(INCDIR)/opcode/m68hc11.h
ceae3e33
AM
1313elf32-m88k.lo: elf32-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1314 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1315 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h elf32-target.h
1316elf-m10200.lo: elf-m10200.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1317 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1318 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h elf32-target.h
1319elf-m10300.lo: elf-m10300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1320 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1321 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h \
1322 $(INCDIR)/elf/reloc-macros.h elf32-target.h
b13c7b49 1323elf32-mcore.lo: elf32-mcore.c $(INCDIR)/filenames.h \
ceae3e33 1324 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
b13c7b49 1325 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/mcore.h \
e43d48cc 1326 $(INCDIR)/elf/reloc-macros.h elf32-target.h
ceae3e33 1327elfxx-mips.lo: elfxx-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
04c9666a
AM
1328 $(INCDIR)/libiberty.h elf-bfd.h $(INCDIR)/elf/common.h \
1329 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1330 elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1331 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
1332 $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h
1333elf32-mips.lo: elf32-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1334 $(INCDIR)/bfdlink.h genlink.h elf-bfd.h $(INCDIR)/elf/common.h \
1335 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elfxx-mips.h \
1336 $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/sym.h \
1337 $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
1338 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \
1339 ecoffswap.h elf32-target.h
de33e640
AH
1340elf32-ms1.lo: elf32-ms1.c elf-bfd.h $(INCDIR)/elf/common.h \
1341 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1342 $(INCDIR)/elf/ms1.h $(INCDIR)/elf/reloc-macros.h \
1343 elf32-target.h
ceae3e33
AM
1344elf32-msp430.lo: elf32-msp430.c $(INCDIR)/filenames.h \
1345 $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h elf-bfd.h \
1346 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1347 $(INCDIR)/bfdlink.h $(INCDIR)/elf/msp430.h $(INCDIR)/elf/reloc-macros.h \
2469cfa2 1348 elf32-target.h
b13c7b49 1349elf32-openrisc.lo: elf32-openrisc.c $(INCDIR)/filenames.h \
ceae3e33
AM
1350 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1351 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1352 $(INCDIR)/elf/openrisc.h $(INCDIR)/elf/reloc-macros.h \
1353 $(INCDIR)/libiberty.h elf32-target.h
1354elf32-or32.lo: elf32-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
2114f57b 1355 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33 1356 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/or32.h \
b13c7b49 1357 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
2114f57b 1358 elf32-target.h
b13c7b49 1359elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1360 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1361 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/pj.h \
1362 $(INCDIR)/elf/reloc-macros.h elf32-target.h
b13c7b49 1363elf32-ppc.lo: elf32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1364 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1365 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/ppc.h \
1366 $(INCDIR)/elf/reloc-macros.h elf32-ppc.h elf32-target.h
54327882
AM
1367elf32-sh64.lo: elf32-sh64.c $(INCDIR)/filenames.h elf-bfd.h \
1368 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1369 $(INCDIR)/bfdlink.h $(srcdir)/../opcodes/sh64-opc.h \
ceae3e33
AM
1370 elf32-sh64.h elf32-sh.c $(INCDIR)/hashtab.h $(INCDIR)/elf/sh.h \
1371 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1372 $(srcdir)/../opcodes/sh-opc.h elf32-target.h
9cba27b2 1373elf32-sh64-com.lo: elf32-sh64-com.c $(INCDIR)/filenames.h \
ceae3e33
AM
1374 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1375 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1376 $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf32-sh64.h \
1377 $(srcdir)/../opcodes/sh64-opc.h
b13c7b49 1378elf32-s390.lo: elf32-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1379 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1380 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/s390.h \
1381 $(INCDIR)/elf/reloc-macros.h elf32-target.h
b13c7b49 1382elf32-sh.lo: elf32-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1383 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1384 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h \
1385 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
1386 $(srcdir)/../opcodes/sh-opc.h elf32-target.h
1387elf32-sh-symbian.lo: elf32-sh-symbian.c elf32-sh.c \
1388 $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h \
2114f57b 1389 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
b13c7b49 1390 $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
871ec896
JR
1391 $(INCDIR)/libiberty.h $(srcdir)/../opcodes/sh-opc.h \
1392 elf32-target.h
fa0d1cab 1393elfxx-sparc.lo: elfxx-sparc.c $(INCDIR)/filenames.h \
b2b09913
JB
1394 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1395 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sparc.h \
1396 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/sparc.h \
1397 elfxx-sparc.h
b13c7b49 1398elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \
ceae3e33 1399 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
2114f57b 1400 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sparc.h \
b2b09913
JB
1401 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/sparc.h \
1402 elfxx-sparc.h elf32-target.h
b13c7b49 1403elf32-v850.lo: elf32-v850.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1404 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1405 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/v850.h \
c0ef99a7 1406 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \
93fbbb04 1407 elf32-target.h
ceae3e33
AM
1408elf32-vax.lo: elf32-vax.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1409 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1410 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/vax.h \
1411 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1412elf32-xstormy16.lo: elf32-xstormy16.c $(INCDIR)/filenames.h \
1413 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1414 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1415 $(INCDIR)/elf/xstormy16.h $(INCDIR)/elf/reloc-macros.h \
1416 $(INCDIR)/libiberty.h elf32-target.h
795bb480 1417elf32-xtensa.lo: elf32-xtensa.c $(INCDIR)/filenames.h \
ceae3e33 1418 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
795bb480
AM
1419 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/xtensa.h \
1420 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/xtensa-isa.h \
1421 $(INCDIR)/xtensa-config.h elf32-target.h
b13c7b49 1422elf32.lo: elf32.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
ceae3e33 1423 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
f6f9408f 1424 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elfcore.h
b13c7b49 1425elflink.lo: elflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1426 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1427 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/safe-ctype.h \
1428 $(INCDIR)/libiberty.h
1429elf-strtab.lo: elf-strtab.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
b13c7b49 1430 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33 1431 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h
c0ef99a7 1432elf-eh-frame.lo: elf-eh-frame.c $(INCDIR)/filenames.h \
ceae3e33
AM
1433 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1434 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1435 $(INCDIR)/elf/dwarf2.h
b2b09913 1436elf-vxworks.lo: elf-vxworks.c $(INCDIR)/filenames.h \
eac338cf 1437 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
b2b09913
JB
1438 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1439 elf-vxworks.h
b13c7b49 1440epoc-pe-arm.lo: epoc-pe-arm.c pe-arm.c $(INCDIR)/filenames.h \
ceae3e33
AM
1441 coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \
1442 $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1443 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1444 peicode.h libpei.h
b13c7b49 1445epoc-pei-arm.lo: epoc-pei-arm.c pei-arm.c $(INCDIR)/filenames.h \
ceae3e33
AM
1446 coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \
1447 $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1448 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1449 peicode.h libpei.h
1450hp300bsd.lo: hp300bsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1451 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
2114f57b 1452 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
252b5132 1453hp300hpux.lo: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \
b13c7b49 1454 aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
ceae3e33 1455 $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
923f08ff
AM
1456 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1457 aout-target.h
b13c7b49 1458som.lo: som.c $(INCDIR)/alloca-conf.h $(INCDIR)/filenames.h
ceae3e33
AM
1459i386aout.lo: i386aout.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1460 $(INCDIR)/aout/aout64.h libaout.h $(INCDIR)/bfdlink.h \
1461 aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1462 $(INCDIR)/aout/ar.h
1463i386bsd.lo: i386bsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1464 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
2114f57b 1465 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
e43d48cc 1466i386dynix.lo: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \
b13c7b49 1467 $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \
ceae3e33 1468 libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
2114f57b 1469 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
ceae3e33
AM
1470 aout-target.h
1471i386freebsd.lo: i386freebsd.c freebsd.h $(INCDIR)/filenames.h \
1472 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1473 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1474 $(INCDIR)/aout/ar.h
1475i386linux.lo: i386linux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1476 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1477 $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1478i386lynx.lo: i386lynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1479 libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1480 aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1481 $(INCDIR)/aout/ar.h
1482i386msdos.lo: i386msdos.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1483 libaout.h $(INCDIR)/bfdlink.h
b13c7b49 1484i386netbsd.lo: i386netbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1485 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1486 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1487 $(INCDIR)/aout/ar.h
1488i386mach3.lo: i386mach3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1489 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1490 $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1491i386os9k.lo: i386os9k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1492 $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/os9k.h
1493ieee.lo: ieee.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1494 $(INCDIR)/ieee.h libieee.h $(INCDIR)/safe-ctype.h
b13c7b49 1495m68k4knetbsd.lo: m68k4knetbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1496 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1497 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1498 $(INCDIR)/aout/ar.h
1499m68klinux.lo: m68klinux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1500 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1501 $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1502m68klynx.lo: m68klynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1503 libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1504 aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1505 $(INCDIR)/aout/ar.h
b13c7b49 1506m68knetbsd.lo: m68knetbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1507 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1508 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1509 $(INCDIR)/aout/ar.h
1510m88kmach3.lo: m88kmach3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
b13c7b49
AM
1511 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1512 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
c6f8758f 1513m88kopenbsd.lo: m88kopenbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1514 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1515 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1516 $(INCDIR)/aout/ar.h
3af9a47b 1517mach-o.lo: mach-o.c mach-o.h $(INCDIR)/filenames.h \
ceae3e33
AM
1518 $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h mach-o-target.c
1519mipsbsd.lo: mipsbsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1520 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
b13c7b49 1521 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
ceae3e33
AM
1522newsos3.lo: newsos3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1523 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1524 $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1525nlm.lo: nlm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
252b5132 1526 libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
ceae3e33
AM
1527 $(INCDIR)/nlm/external.h
1528nlm32-i386.lo: nlm32-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1529 $(INCDIR)/nlm/i386-ext.h libnlm.h $(INCDIR)/nlm/common.h \
1530 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \
1531 nlm-target.h
b13c7b49 1532nlm32-sparc.lo: nlm32-sparc.c $(INCDIR)/filenames.h \
ceae3e33
AM
1533 $(INCDIR)/hashtab.h $(INCDIR)/nlm/sparc32-ext.h libnlm.h \
1534 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \
1535 nlmswap.h nlm-target.h
1536nlm32-ppc.lo: nlm32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1537 $(INCDIR)/nlm/ppc-ext.h libnlm.h $(INCDIR)/nlm/common.h \
2114f57b
AM
1538 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \
1539 nlm-target.h
ceae3e33 1540nlm32.lo: nlm32.c nlmcode.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
252b5132 1541 libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
ceae3e33 1542 $(INCDIR)/nlm/external.h
b13c7b49 1543ns32knetbsd.lo: ns32knetbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1544 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1545 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1546 $(INCDIR)/aout/ar.h
b13c7b49 1547oasys.lo: oasys.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
ceae3e33 1548 $(INCDIR)/hashtab.h $(INCDIR)/oasys.h liboasys.h
b13c7b49 1549pc532-mach.lo: pc532-mach.c $(INCDIR)/filenames.h libaout.h \
ceae3e33
AM
1550 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
1551 aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1552 $(INCDIR)/aout/ar.h
1553pdp11.lo: pdp11.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1554 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1555 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1556 $(INCDIR)/safe-ctype.h
795bb480 1557pef.lo: pef.c $(INCDIR)/safe-ctype.h pef.h pef-traceback.h \
ceae3e33 1558 $(INCDIR)/filenames.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h
b13c7b49 1559pe-arm.lo: pe-arm.c $(INCDIR)/filenames.h coff-arm.c \
ceae3e33
AM
1560 $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \
1561 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1562 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
b13c7b49 1563pei-arm.lo: pei-arm.c $(INCDIR)/filenames.h coff-arm.c \
ceae3e33
AM
1564 $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \
1565 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1566 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
b13c7b49 1567pe-i386.lo: pe-i386.c $(INCDIR)/filenames.h coff-i386.c \
ceae3e33
AM
1568 $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1569 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1570 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
b13c7b49 1571pei-i386.lo: pei-i386.c $(INCDIR)/filenames.h coff-i386.c \
ceae3e33
AM
1572 $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1573 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1574 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
b13c7b49 1575pe-mcore.lo: pe-mcore.c $(INCDIR)/filenames.h coff-mcore.c \
ceae3e33
AM
1576 $(INCDIR)/hashtab.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \
1577 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1578 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
b13c7b49 1579pei-mcore.lo: pei-mcore.c $(INCDIR)/filenames.h coff-mcore.c \
ceae3e33
AM
1580 $(INCDIR)/hashtab.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \
1581 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1582 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
b13c7b49 1583pe-ppc.lo: pe-ppc.c $(INCDIR)/filenames.h coff-ppc.c \
ceae3e33 1584 $(INCDIR)/hashtab.h $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \
e43d48cc
AM
1585 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1586 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
b13c7b49 1587pei-ppc.lo: pei-ppc.c $(INCDIR)/filenames.h coff-ppc.c \
ceae3e33 1588 $(INCDIR)/hashtab.h $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \
e43d48cc
AM
1589 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1590 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
b13c7b49 1591pe-sh.lo: pe-sh.c $(INCDIR)/filenames.h coff-sh.c $(INCDIR)/libiberty.h \
ceae3e33 1592 $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \
b13c7b49 1593 $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
e43d48cc
AM
1594 $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \
1595 libpei.h
ceae3e33
AM
1596pei-sh.lo: pei-sh.c $(INCDIR)/filenames.h coff-sh.c \
1597 $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h \
1598 $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1599 $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \
1600 libpei.h
1601pe-mips.lo: pe-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
8a5cc6be
AM
1602 $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1603 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1604 peicode.h libpei.h
ceae3e33
AM
1605pei-mips.lo: pei-mips.c $(INCDIR)/filenames.h pe-mips.c \
1606 $(INCDIR)/hashtab.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \
1607 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1608 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1609ppcboot.lo: ppcboot.c $(INCDIR)/safe-ctype.h $(INCDIR)/filenames.h \
1610 $(INCDIR)/hashtab.h
1611reloc16.lo: reloc16.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1612 $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/coff/internal.h \
1613 libcoff.h
1614riscix.lo: riscix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
252b5132 1615 libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
ceae3e33
AM
1616 aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1617 $(INCDIR)/aout/ar.h
1618sparclinux.lo: sparclinux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1619 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1620 $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h
1621sparclynx.lo: sparclynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1622 $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \
1623 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1624 $(INCDIR)/aout/ar.h aout-target.h
b13c7b49 1625sparcnetbsd.lo: sparcnetbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1626 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1627 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1628 $(INCDIR)/aout/ar.h
b13c7b49 1629sunos.lo: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \
ceae3e33
AM
1630 $(INCDIR)/filenames.h $(INCDIR)/hashtab.h $(INCDIR)/aout/sun4.h \
1631 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1632 $(INCDIR)/aout/ar.h aout-target.h
b13c7b49 1633vaxnetbsd.lo: vaxnetbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1634 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1635 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1636 $(INCDIR)/aout/ar.h
3c2bfad6 1637vax1knetbsd.lo: vax1knetbsd.c netbsd.h $(INCDIR)/filenames.h \
ceae3e33
AM
1638 $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \
1639 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1640 $(INCDIR)/aout/ar.h
1641vaxbsd.lo: vaxbsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
3c2bfad6
JT
1642 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1643 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
ceae3e33
AM
1644versados.lo: versados.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1645 $(INCDIR)/libiberty.h
b13c7b49 1646vms.lo: vms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33 1647 $(INCDIR)/hashtab.h vms.h
b13c7b49 1648vms-gsd.lo: vms-gsd.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33 1649 $(INCDIR)/hashtab.h vms.h
6a0735ef 1650vms-hdr.lo: vms-hdr.c bfdver.h $(INCDIR)/filenames.h \
ceae3e33 1651 $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h \
b13c7b49 1652 vms.h
ceae3e33
AM
1653vms-misc.lo: vms-misc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1654 $(INCDIR)/hashtab.h vms.h
b13c7b49 1655vms-tir.lo: vms-tir.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33 1656 $(INCDIR)/hashtab.h vms.h
b13c7b49 1657xcofflink.lo: xcofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1658 $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/xcoff.h \
1659 libcoff.h libxcoff.h
1660xsym.lo: xsym.c xsym.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1661xtensa-isa.lo: xtensa-isa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1662 $(INCDIR)/xtensa-isa.h $(INCDIR)/xtensa-isa-internal.h
7d3f158f
AM
1663xtensa-modules.lo: xtensa-modules.c $(INCDIR)/xtensa-isa.h \
1664 $(INCDIR)/xtensa-isa-internal.h
54327882 1665aix5ppc-core.lo: aix5ppc-core.c
b13c7b49 1666aout64.lo: aout64.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \
ceae3e33 1667 $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \
b13c7b49
AM
1668 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1669coff-alpha.lo: coff-alpha.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1670 $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
1671 $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h \
1672 $(INCDIR)/aout/ar.h libcoff.h libecoff.h coffswap.h \
1673 ecoffswap.h
b13c7b49 1674coff64-rs6000.lo: coff64-rs6000.c $(INCDIR)/filenames.h \
ceae3e33
AM
1675 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \
1676 $(INCDIR)/coff/xcoff.h $(INCDIR)/coff/rs6k64.h libcoff.h \
1677 libxcoff.h coffcode.h coffswap.h
b13c7b49 1678demo64.lo: demo64.c aoutf1.h $(INCDIR)/filenames.h \
ceae3e33
AM
1679 $(INCDIR)/hashtab.h $(INCDIR)/aout/sun4.h libaout.h \
1680 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1681 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
b13c7b49 1682efi-app-ia64.lo: efi-app-ia64.c $(INCDIR)/filenames.h \
ceae3e33
AM
1683 coff-ia64.c $(INCDIR)/hashtab.h $(INCDIR)/coff/ia64.h \
1684 $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \
1685 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1686 peicode.h libpei.h
b13c7b49 1687elf64-x86-64.lo: elf64-x86-64.c $(INCDIR)/filenames.h \
ceae3e33 1688 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
54327882 1689 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/x86-64.h \
b13c7b49
AM
1690 $(INCDIR)/elf/reloc-macros.h elf64-target.h
1691elf64-alpha.lo: elf64-alpha.c $(INCDIR)/filenames.h \
ceae3e33 1692 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
b13c7b49 1693 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1694 $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
1695 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
1696 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h \
1697 libcoff.h libecoff.h ecoffswap.h elf64-target.h
1698elf64-hppa.lo: elf64-hppa.c $(INCDIR)/alloca-conf.h \
1699 $(INCDIR)/filenames.h $(INCDIR)/hashtab.h elf-bfd.h \
2114f57b 1700 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
ceae3e33
AM
1701 $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h \
1702 libhppa.h elf64-hppa.h elf-hppa.h elf64-target.h
1703elf64-gen.lo: elf64-gen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1704 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1705 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h elf64-target.h
37f45cf8 1706elfn32-mips.lo: elfn32-mips.c $(INCDIR)/filenames.h \
ceae3e33
AM
1707 $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h genlink.h elf-bfd.h \
1708 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1709 elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1710 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
37f45cf8
AM
1711 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \
1712 ecoffswap.h elf32-target.h
ceae3e33
AM
1713elf64-mips.lo: elf64-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1714 $(INCDIR)/aout/ar.h $(INCDIR)/bfdlink.h genlink.h elf-bfd.h \
1715 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1716 elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1717 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
830629ab
AM
1718 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h ecoffswap.h \
1719 elf64-target.h
ceae3e33 1720elf64-mmix.lo: elf64-mmix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
b13c7b49 1721 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
ceae3e33
AM
1722 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mmix.h \
1723 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \
b13c7b49 1724 elf64-target.h
ceae3e33
AM
1725elf64-ppc.lo: elf64-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1726 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1727 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/ppc64.h \
1728 $(INCDIR)/elf/reloc-macros.h elf64-ppc.h elf64-target.h
1729elf64-s390.lo: elf64-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1730 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1731 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/s390.h \
1732 $(INCDIR)/elf/reloc-macros.h elf64-target.h
2c73f9d8 1733elf64-sh64.lo: elf64-sh64.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
ceae3e33
AM
1734 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
1735 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h \
1736 $(INCDIR)/elf/reloc-macros.h elf64-target.h
b13c7b49 1737elf64-sparc.lo: elf64-sparc.c $(INCDIR)/filenames.h \
b2b09913 1738 $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
ceae3e33 1739 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
b2b09913
JB
1740 $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
1741 $(INCDIR)/opcode/sparc.h elfxx-sparc.h elf64-target.h
b13c7b49 1742elf64.lo: elf64.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
ceae3e33 1743 $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \
f6f9408f 1744 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h elfcore.h
ceae3e33
AM
1745mmo.lo: mmo.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1746 $(INCDIR)/libiberty.h $(INCDIR)/elf/mmix.h $(INCDIR)/elf/reloc-macros.h \
1747 $(INCDIR)/opcode/mmix.h
b13c7b49 1748nlm32-alpha.lo: nlm32-alpha.c $(INCDIR)/filenames.h \
ceae3e33
AM
1749 $(INCDIR)/hashtab.h $(INCDIR)/nlm/alpha-ext.h libnlm.h \
1750 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \
1751 nlmswap.h nlm-target.h
1752nlm64.lo: nlm64.c nlmcode.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1753 libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
1754 $(INCDIR)/nlm/external.h
b13c7b49 1755aix386-core.lo: aix386-core.c $(INCDIR)/filenames.h \
ceae3e33
AM
1756 $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1757 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h
1758hpux-core.lo: hpux-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1759irix-core.lo: irix-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1760lynx-core.lo: lynx-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1761osf-core.lo: osf-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1762sco5-core.lo: sco5-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1763 libaout.h $(INCDIR)/bfdlink.h
1764trad-core.lo: trad-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1765 libaout.h $(INCDIR)/bfdlink.h
1766cisco-core.lo: cisco-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h
1767elf32-ia64.lo: elf32-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1768 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1769 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h \
1770 $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/objalloc.h \
9fa06c65 1771 elf32-target.h
ceae3e33
AM
1772elf64-ia64.lo: elf64-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1773 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1774 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h \
1775 $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/objalloc.h \
9fa06c65 1776 elf64-target.h
ceae3e33
AM
1777peigen.lo: peigen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1778 $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \
1779 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h
1780pepigen.lo: pepigen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \
1781 $(INCDIR)/coff/internal.h $(INCDIR)/coff/ia64.h $(INCDIR)/coff/external.h \
1782 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h
252b5132 1783# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.376517 seconds and 4 git commands to generate.