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