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