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