OSDN Git Service

daily update
[pf3gnuchains/pf3gnuchains4x.git] / bfd / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2
3 AUTOMAKE_OPTIONS = 1.11 no-dist foreign
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
12 SUBDIRS = doc po
13
14 bfddocdir = doc
15
16 libbfd_la_LDFLAGS =
17 if INSTALL_LIBBFD
18 bfdlibdir = @bfdlibdir@
19 bfdincludedir = @bfdincludedir@
20 bfdlib_LTLIBRARIES = libbfd.la
21 bfdinclude_HEADERS = $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/bfdlink.h
22 else !INSTALL_LIBBFD
23 # Empty these so that the respective installation directories will not be created.
24 bfdlibdir =
25 bfdincludedir =
26 bfdinclude_HEADERS =
27 rpath_bfdlibdir = @bfdlibdir@
28 noinst_LTLIBRARIES = libbfd.la
29 libbfd_la_LDFLAGS += -rpath $(rpath_bfdlibdir)
30 endif
31
32 WARN_CFLAGS = @WARN_CFLAGS@
33 NO_WERROR = @NO_WERROR@
34 AM_CFLAGS = $(WARN_CFLAGS)
35 AM_CPPFLAGS = -DBINDIR='"$(bindir)"'
36 if PLUGINS
37 bfdinclude_HEADERS += $(INCDIR)/plugin-api.h
38 LIBDL = -ldl
39 endif
40
41 # bfd.h goes here, for now
42 BFD_H = bfd.h
43
44 # Jim Kingdon notes:
45 # Writing S-records should be included in all (or at least most)
46 # *-*-coff, *-*-aout, etc., configurations, because people will want to
47 # be able to use objcopy to create S-records.  (S-records are not useful
48 # for the debugger, so if you are downloading things as S-records you
49 # need two copies of the executable, one to download and one for the
50 # debugger).
51 BFD32_LIBS = \
52         archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo \
53         cache.lo coffgen.lo corefile.lo \
54         format.lo init.lo libbfd.lo opncls.lo reloc.lo \
55         section.lo syms.lo targets.lo hash.lo linker.lo \
56         srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo \
57         merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
58
59 BFD64_LIBS = archive64.lo
60
61 BFD32_LIBS_CFILES = \
62         archive.c archures.c bfd.c bfdio.c bfdwin.c \
63         cache.c coffgen.c corefile.c \
64         format.c init.c libbfd.c opncls.c reloc.c \
65         section.c syms.c targets.c hash.c linker.c \
66         srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c \
67         merge.c dwarf2.c simple.c compress.c verilog.c
68
69 BFD64_LIBS_CFILES = archive64.c
70
71 # This list is alphabetized to make it easier to keep in sync
72 # with the decls and initializer in archures.c.
73 ALL_MACHINES = \
74         cpu-alpha.lo \
75         cpu-arc.lo \
76         cpu-arm.lo \
77         cpu-avr.lo \
78         cpu-bfin.lo \
79         cpu-cr16.lo \
80         cpu-cr16c.lo \
81         cpu-cris.lo \
82         cpu-crx.lo \
83         cpu-d10v.lo \
84         cpu-d30v.lo \
85         cpu-dlx.lo \
86         cpu-epiphany.lo \
87         cpu-fr30.lo \
88         cpu-frv.lo \
89         cpu-h8300.lo \
90         cpu-h8500.lo \
91         cpu-hppa.lo \
92         cpu-i370.lo \
93         cpu-i386.lo \
94         cpu-l1om.lo \
95         cpu-k1om.lo \
96         cpu-i860.lo \
97         cpu-i960.lo \
98         cpu-ia64.lo \
99         cpu-ip2k.lo \
100         cpu-iq2000.lo \
101         cpu-lm32.lo \
102         cpu-m10200.lo \
103         cpu-m10300.lo \
104         cpu-m32c.lo \
105         cpu-m32r.lo \
106         cpu-m68hc11.lo \
107         cpu-m68hc12.lo \
108         cpu-m68k.lo \
109         cpu-m88k.lo \
110         cpu-mcore.lo \
111         cpu-mep.lo \
112         cpu-microblaze.lo \
113         cpu-mips.lo \
114         cpu-mmix.lo \
115         cpu-moxie.lo \
116         cpu-msp430.lo \
117         cpu-mt.lo \
118         cpu-ns32k.lo \
119         cpu-openrisc.lo \
120         cpu-or32.lo \
121         cpu-pdp11.lo \
122         cpu-pj.lo \
123         cpu-plugin.lo \
124         cpu-powerpc.lo \
125         cpu-rs6000.lo \
126         cpu-rl78.lo \
127         cpu-rx.lo \
128         cpu-s390.lo \
129         cpu-score.lo \
130         cpu-sh.lo \
131         cpu-sparc.lo \
132         cpu-spu.lo \
133         cpu-tic30.lo \
134         cpu-tic4x.lo \
135         cpu-tic54x.lo \
136         cpu-tic6x.lo \
137         cpu-tic80.lo \
138         cpu-tilegx.lo \
139         cpu-tilepro.lo \
140         cpu-v850.lo \
141         cpu-vax.lo \
142         cpu-w65.lo \
143         cpu-we32k.lo \
144         cpu-xc16x.lo \
145         cpu-xstormy16.lo \
146         cpu-xtensa.lo \
147         cpu-z80.lo \
148         cpu-z8k.lo
149
150 ALL_MACHINES_CFILES = \
151         cpu-alpha.c \
152         cpu-arc.c \
153         cpu-arm.c \
154         cpu-avr.c \
155         cpu-bfin.c \
156         cpu-cr16.c \
157         cpu-cr16c.c \
158         cpu-cris.c \
159         cpu-crx.c \
160         cpu-d10v.c \
161         cpu-d30v.c \
162         cpu-dlx.c \
163         cpu-epiphany.c \
164         cpu-fr30.c \
165         cpu-frv.c \
166         cpu-h8300.c \
167         cpu-h8500.c \
168         cpu-hppa.c \
169         cpu-i370.c \
170         cpu-i386.c \
171         cpu-l1om.c \
172         cpu-k1om.c \
173         cpu-i860.c \
174         cpu-i960.c \
175         cpu-ia64.c \
176         cpu-ip2k.c \
177         cpu-iq2000.c \
178         cpu-lm32.c \
179         cpu-m10200.c \
180         cpu-m10300.c \
181         cpu-m32c.c \
182         cpu-m32r.c \
183         cpu-m68hc11.c \
184         cpu-m68hc12.c \
185         cpu-m68k.c \
186         cpu-m88k.c \
187         cpu-mcore.c \
188         cpu-mep.c \
189         cpu-microblaze.c \
190         cpu-mips.c \
191         cpu-mmix.c \
192         cpu-moxie.c \
193         cpu-msp430.c \
194         cpu-mt.c \
195         cpu-ns32k.c \
196         cpu-openrisc.c \
197         cpu-or32.c \
198         cpu-pdp11.c \
199         cpu-pj.c \
200         cpu-plugin.c \
201         cpu-powerpc.c \
202         cpu-rs6000.c \
203         cpu-rl78.c \
204         cpu-rx.c \
205         cpu-s390.c \
206         cpu-score.c \
207         cpu-sh.c \
208         cpu-sparc.c \
209         cpu-spu.c \
210         cpu-tic30.c \
211         cpu-tic4x.c \
212         cpu-tic54x.c \
213         cpu-tic6x.c \
214         cpu-tic80.c \
215         cpu-tilegx.c \
216         cpu-tilepro.c \
217         cpu-v850.c \
218         cpu-vax.c \
219         cpu-w65.c \
220         cpu-we32k.c \
221         cpu-xc16x.c \
222         cpu-xstormy16.c \
223         cpu-xtensa.c \
224         cpu-z80.c \
225         cpu-z8k.c
226
227 # The .o files needed by all of the 32 bit vectors that are configured into
228 # target_vector in targets.c if configured with --enable-targets=all.
229 BFD32_BACKENDS = \
230         aout-adobe.lo \
231         aout-arm.lo \
232         aout-cris.lo \
233         aout-ns32k.lo \
234         aout-sparcle.lo \
235         aout-tic30.lo \
236         aout0.lo \
237         aout32.lo \
238         armnetbsd.lo \
239         bout.lo \
240         cf-i386lynx.lo \
241         cf-sparclynx.lo \
242         coff-apollo.lo \
243         coff-arm.lo \
244         coff-aux.lo \
245         coff-go32.lo \
246         coff-h8300.lo \
247         coff-h8500.lo \
248         coff-i386.lo \
249         coff-i860.lo \
250         coff-i960.lo \
251         coff-m68k.lo \
252         coff-m88k.lo \
253         coff-mips.lo \
254         coff-or32.lo \
255         coff-rs6000.lo \
256         coff-sh.lo \
257         coff-sparc.lo \
258         coff-stgo32.lo \
259         coff-svm68k.lo \
260         coff-tic30.lo \
261         coff-tic4x.lo \
262         coff-tic54x.lo \
263         coff-tic80.lo \
264         coff-u68k.lo \
265         coff-w65.lo \
266         coff-we32k.lo \
267         coff-z80.lo \
268         coff-z8k.lo \
269         cofflink.lo \
270         dwarf1.lo \
271         ecoff.lo \
272         ecofflink.lo \
273         elf-attrs.lo \
274         elf-eh-frame.lo \
275         elf-ifunc.lo \
276         elf-m10200.lo \
277         elf-m10300.lo \
278         elf-strtab.lo \
279         elf-vxworks.lo \
280         elf.lo \
281         elf32-am33lin.lo \
282         elf32-arc.lo \
283         elf32-arm.lo \
284         elf32-avr.lo \
285         elf32-bfin.lo \
286         elf32-cr16.lo \
287         elf32-cr16c.lo \
288         elf32-cris.lo \
289         elf32-crx.lo \
290         elf32-d10v.lo \
291         elf32-d30v.lo \
292         elf32-dlx.lo \
293         elf32-epiphany.lo \
294         elf32-fr30.lo \
295         elf32-frv.lo \
296         elf32-gen.lo \
297         elf32-h8300.lo \
298         elf32-hppa.lo \
299         elf32-i370.lo \
300         elf32-i386.lo \
301         elf32-i860.lo \
302         elf32-i960.lo \
303         elf32-ip2k.lo \
304         elf32-iq2000.lo \
305         elf32-lm32.lo \
306         elf32-m32c.lo \
307         elf32-m32r.lo \
308         elf32-m68hc11.lo \
309         elf32-m68hc12.lo \
310         elf32-m68hc1x.lo \
311         elf32-m68k.lo \
312         elf32-m88k.lo \
313         elf32-mcore.lo \
314         elf32-mep.lo \
315         elf32-microblaze.lo \
316         elf32-mips.lo \
317         elf32-moxie.lo \
318         elf32-msp430.lo \
319         elf32-mt.lo \
320         elf32-openrisc.lo \
321         elf32-or32.lo \
322         elf32-pj.lo \
323         elf32-ppc.lo \
324         elf32-rl78.lo \
325         elf32-rx.lo \
326         elf32-s390.lo \
327         elf32-sh-symbian.lo \
328         elf32-sh.lo \
329         elf32-sh64-com.lo \
330         elf32-sh64.lo \
331         elf32-sparc.lo \
332         elf32-spu.lo \
333         elf32-tic6x.lo \
334         elf32-tilegx.lo \
335         elf32-tilepro.lo \
336         elf32-v850.lo \
337         elf32-vax.lo \
338         elf32-xc16x.lo \
339         elf32-xstormy16.lo \
340         elf32-xtensa.lo \
341         elf32.lo \
342         elflink.lo \
343         elfxx-mips.lo \
344         elfxx-sparc.lo \
345         elfxx-tilegx.lo \
346         epoc-pe-arm.lo \
347         epoc-pei-arm.lo \
348         hp300bsd.lo \
349         hp300hpux.lo \
350         i386aout.lo \
351         i386bsd.lo \
352         i386dynix.lo \
353         i386freebsd.lo \
354         i386linux.lo \
355         i386lynx.lo \
356         i386mach3.lo \
357         i386msdos.lo \
358         i386netbsd.lo \
359         i386os9k.lo \
360         ieee.lo \
361         m68k4knetbsd.lo \
362         m68klinux.lo \
363         m68knetbsd.lo \
364         m88kmach3.lo \
365         m88kopenbsd.lo \
366         mach-o.lo \
367         mach-o-i386.lo \
368         mipsbsd.lo \
369         newsos3.lo \
370         nlm.lo \
371         nlm32-i386.lo \
372         nlm32-ppc.lo \
373         nlm32-sparc.lo \
374         nlm32.lo \
375         ns32knetbsd.lo \
376         oasys.lo \
377         pc532-mach.lo \
378         pdp11.lo \
379         pe-arm-wince.lo \
380         pe-arm.lo \
381         pe-i386.lo \
382         pe-mcore.lo \
383         pe-mips.lo \
384         pe-ppc.lo \
385         pe-sh.lo \
386         pef.lo \
387         pei-arm-wince.lo \
388         pei-arm.lo \
389         pei-i386.lo \
390         pei-mcore.lo \
391         pei-mips.lo \
392         pei-ppc.lo \
393         pei-sh.lo \
394         peigen.lo \
395         plugin.lo \
396         ppcboot.lo \
397         reloc16.lo \
398         riscix.lo \
399         som.lo \
400         sparclinux.lo \
401         sparclynx.lo \
402         sparcnetbsd.lo \
403         sunos.lo \
404         vax1knetbsd.lo \
405         vaxbsd.lo \
406         vaxnetbsd.lo \
407         versados.lo \
408         vms-lib.lo \
409         vms-misc.lo \
410         xcofflink.lo \
411         xsym.lo \
412         xtensa-isa.lo \
413         xtensa-modules.lo
414
415 BFD32_BACKENDS_CFILES = \
416         aout-adobe.c \
417         aout-arm.c \
418         aout-cris.c \
419         aout-ns32k.c \
420         aout-sparcle.c \
421         aout-tic30.c \
422         aout0.c \
423         aout32.c \
424         armnetbsd.c \
425         bout.c \
426         cf-i386lynx.c \
427         cf-sparclynx.c \
428         coff-apollo.c \
429         coff-arm.c \
430         coff-aux.c \
431         coff-go32.c \
432         coff-h8300.c \
433         coff-h8500.c \
434         coff-i386.c \
435         coff-i860.c \
436         coff-i960.c \
437         coff-m68k.c \
438         coff-m88k.c \
439         coff-mips.c \
440         coff-or32.c \
441         coff-rs6000.c \
442         coff-sh.c \
443         coff-sparc.c \
444         coff-stgo32.c \
445         coff-svm68k.c \
446         coff-tic30.c \
447         coff-tic4x.c \
448         coff-tic54x.c \
449         coff-tic80.c \
450         coff-u68k.c \
451         coff-w65.c \
452         coff-we32k.c \
453         coff-z80.c \
454         coff-z8k.c \
455         cofflink.c \
456         dwarf1.c \
457         ecoff.c \
458         ecofflink.c \
459         elf-attrs.c \
460         elf-eh-frame.c \
461         elf-ifunc.c \
462         elf-m10200.c \
463         elf-m10300.c \
464         elf-strtab.c \
465         elf-vxworks.c \
466         elf.c \
467         elf32-am33lin.c \
468         elf32-arc.c \
469         elf32-arm.c \
470         elf32-avr.c \
471         elf32-bfin.c \
472         elf32-cr16.c \
473         elf32-cr16c.c \
474         elf32-cris.c \
475         elf32-crx.c \
476         elf32-d10v.c \
477         elf32-d30v.c \
478         elf32-dlx.c \
479         elf32-epiphany.c \
480         elf32-fr30.c \
481         elf32-frv.c \
482         elf32-gen.c \
483         elf32-h8300.c \
484         elf32-hppa.c \
485         elf32-i370.c \
486         elf32-i386.c \
487         elf32-i860.c \
488         elf32-i960.c \
489         elf32-ip2k.c \
490         elf32-iq2000.c \
491         elf32-lm32.c \
492         elf32-m32c.c \
493         elf32-m32r.c \
494         elf32-m68hc11.c \
495         elf32-m68hc12.c \
496         elf32-m68hc1x.c \
497         elf32-m68k.c \
498         elf32-m88k.c \
499         elf32-mcore.c \
500         elf32-mep.c \
501         elf32-microblaze.c \
502         elf32-mips.c \
503         elf32-moxie.c \
504         elf32-msp430.c \
505         elf32-mt.c \
506         elf32-openrisc.c \
507         elf32-or32.c \
508         elf32-pj.c \
509         elf32-ppc.c \
510         elf32-rl78.c \
511         elf32-rx.c \
512         elf32-s390.c \
513         elf32-sh-symbian.c \
514         elf32-sh.c \
515         elf32-sh64-com.c \
516         elf32-sh64.c \
517         elf32-sparc.c \
518         elf32-spu.c \
519         elf32-tic6x.c \
520         elf32-tilegx.c \
521         elf32-tilepro.c \
522         elf32-v850.c \
523         elf32-vax.c \
524         elf32-xc16x.c \
525         elf32-xstormy16.c \
526         elf32-xtensa.c \
527         elf32.c \
528         elflink.c \
529         elfxx-mips.c \
530         elfxx-sparc.c \
531         elfxx-tilegx.c \
532         epoc-pe-arm.c \
533         epoc-pei-arm.c \
534         hp300bsd.c \
535         hp300hpux.c \
536         i386aout.c \
537         i386bsd.c \
538         i386dynix.c \
539         i386freebsd.c \
540         i386linux.c \
541         i386lynx.c \
542         i386mach3.c \
543         i386msdos.c \
544         i386netbsd.c \
545         i386os9k.c \
546         ieee.c \
547         m68k4knetbsd.c \
548         m68klinux.c \
549         m68knetbsd.c \
550         m88kmach3.c \
551         m88kopenbsd.c \
552         mach-o.c \
553         mach-o-i386.c \
554         mipsbsd.c \
555         newsos3.c \
556         nlm.c \
557         nlm32-i386.c \
558         nlm32-ppc.c \
559         nlm32-sparc.c \
560         nlm32.c \
561         ns32knetbsd.c \
562         oasys.c \
563         pc532-mach.c \
564         pdp11.c \
565         pe-arm-wince.c \
566         pe-arm.c \
567         pe-i386.c \
568         pe-mcore.c \
569         pe-mips.c \
570         pe-ppc.c \
571         pe-sh.c \
572         pef.c \
573         pei-arm-wince.c \
574         pei-arm.c \
575         pei-i386.c \
576         pei-mcore.c \
577         pei-mips.c \
578         pei-ppc.c \
579         pei-sh.c \
580         plugin.c \
581         ppcboot.c \
582         reloc16.c \
583         riscix.c \
584         som.c \
585         sparclinux.c \
586         sparclynx.c \
587         sparcnetbsd.c \
588         sunos.c \
589         vax1knetbsd.c \
590         vaxbsd.c \
591         vaxnetbsd.c \
592         versados.c \
593         vms-lib.c \
594         vms-misc.c \
595         xcofflink.c \
596         xsym.c \
597         xtensa-isa.c \
598         xtensa-modules.c
599
600 # The .o files needed by all of the 64 bit vectors that are configured into
601 # target_vector in targets.c if configured with --enable-targets=all
602 # and --enable-64-bit-bfd.
603 # elf32-ia64.c requires a 64-bit bfd_vma, and hence can not be put in
604 # BFD32_BACKENDS.
605 BFD64_BACKENDS = \
606         aix5ppc-core.lo \
607         aout64.lo \
608         coff-alpha.lo \
609         coff-x86_64.lo \
610         coff64-rs6000.lo \
611         demo64.lo \
612         elf32-ia64.lo \
613         elf32-score.lo \
614         elf32-score7.lo \
615         elf64-alpha.lo \
616         elf64-gen.lo \
617         elf64-hppa.lo \
618         elf64-ia64.lo \
619         elf64-mips.lo \
620         elf64-mmix.lo \
621         elf64-ppc.lo \
622         elf64-s390.lo \
623         elf64-sh64.lo \
624         elf64-sparc.lo \
625         elf64-tilegx.lo \
626         elf64-x86-64.lo \
627         elf64.lo \
628         elfn32-mips.lo \
629         elfxx-ia64.lo \
630         mach-o-x86-64.lo \
631         mmo.lo \
632         nlm32-alpha.lo \
633         nlm64.lo \
634         pe-x86_64.lo \
635         pei-ia64.lo \
636         pei-x86_64.lo \
637         pepigen.lo \
638         pex64igen.lo \
639         vms-alpha.lo
640
641 BFD64_BACKENDS_CFILES = \
642         aix5ppc-core.c \
643         aout64.c \
644         coff-alpha.c \
645         coff-x86_64.c \
646         coff64-rs6000.c \
647         demo64.c \
648         elf32-score.c \
649         elf32-score7.c \
650         elf64-alpha.c \
651         elf64-gen.c \
652         elf64-hppa.c \
653         elf64-mips.c \
654         elf64-mmix.c \
655         elf64-ppc.c \
656         elf64-s390.c \
657         elf64-sh64.c \
658         elf64-sparc.c \
659         elf64-tilegx.c \
660         elf64-x86-64.c \
661         elf64.c \
662         elfn32-mips.c \
663         elfxx-ia64.c \
664         mach-o-x86-64.c \
665         mmo.c \
666         nlm32-alpha.c \
667         nlm64.c \
668         pe-x86_64.c \
669         pei-ia64.c \
670         pei-x86_64.c \
671         vms-alpha.c
672
673 OPTIONAL_BACKENDS = \
674         aix386-core.lo \
675         cisco-core.lo \
676         hpux-core.lo \
677         irix-core.lo \
678         lynx-core.lo \
679         osf-core.lo \
680         rs6000-core.lo \
681         sco5-core.lo \
682         trad-core.lo
683
684 OPTIONAL_BACKENDS_CFILES = \
685         aix386-core.c \
686         cisco-core.c \
687         hpux-core.c \
688         irix-core.c \
689         lynx-core.c \
690         osf-core.c \
691         rs6000-core.c \
692         sco5-core.c \
693         trad-core.c
694
695 # We want to rerun configure if configure.in, config.bfd or
696 # configure.host change. configure.in is needed since the version
697 # number in Makefile comes from configure.in.
698 CONFIG_STATUS_DEPENDENCIES = \
699         $(srcdir)/configure.in \
700         $(srcdir)/config.bfd \
701         $(srcdir)/configure.host
702
703 # These are defined by configure.in:
704 WORDSIZE = @wordsize@
705 ALL_BACKENDS = @all_backends@
706 BFD_BACKENDS = @bfd_backends@
707 BFD_MACHINES = @bfd_machines@
708 TDEFAULTS = @tdefaults@
709 HAVEVECS = @havevecs@
710
711 INCLUDES = @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) \
712         $(HAVEVECS) @INCINTL@
713
714 # C source files that correspond to .o's.
715 SOURCE_CFILES = \
716         $(BFD32_LIBS_CFILES) \
717         $(BFD64_LIBS_CFILES) \
718         $(ALL_MACHINES_CFILES) \
719         $(BFD32_BACKENDS_CFILES) \
720         $(BFD64_BACKENDS_CFILES) \
721         $(OPTIONAL_BACKENDS_CFILES)
722
723 BUILD_CFILES = \
724         elf32-ia64.c elf64-ia64.c peigen.c pepigen.c pex64igen.c
725
726 CFILES = $(SOURCE_CFILES) $(BUILD_CFILES)
727
728 ## This is a list of all .h files which are in the source tree.
729 SOURCE_HFILES = \
730         aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \
731         elf-bfd.h elf-hppa.h elf32-hppa.h \
732         elf64-hppa.h elfcode.h elfcore.h \
733         freebsd.h genlink.h go32stub.h \
734         libaout.h libbfd.h libcoff.h libecoff.h libhppa.h libieee.h \
735         libnlm.h liboasys.h libpei.h libxcoff.h mach-o.h \
736         netbsd.h nlm-target.h nlmcode.h nlmswap.h ns32k.h \
737         pef.h pef-traceback.h peicode.h som.h version.h \
738         vms.h xsym.h
739
740 ## ... and all .h files which are in the build tree.
741 BUILD_HFILES = \
742         bfdver.h elf32-target.h elf64-target.h targmatch.h bfd_stdint.h
743
744 # Ensure they are built early:
745 BUILT_SOURCES = $(BUILD_HFILES)
746
747 HFILES = $(SOURCE_HFILES) $(BUILD_HFILES)
748
749 SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES)
750 BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES)
751
752 po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
753         for file in $(SRC_POTFILES); do echo $$file; done \
754           | LC_ALL=C sort > tmp.src \
755           && mv tmp.src $(srcdir)/po/SRC-POTFILES.in
756
757 po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
758         for file in $(BLD_POTFILES); do echo $$file; done \
759           | LC_ALL=C sort > tmp.bld \
760           && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in
761
762 all diststuff: info
763
764 # Various kinds of .o files to put in libbfd.a:
765 # BFD_BACKENDS  Routines the configured targets need.
766 # BFD_MACHINES  Architecture-specific routines the configured targets need.
767 # COREFILE      Core file routines for a native configuration
768 # bfd64_libs    Routines for 64bit support
769 OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@ @bfd64_libs@
770
771 stamp-ofiles: Makefile
772         rm -f tofiles
773         f=""; \
774         for i in $(OFILES) ; do \
775           case " $$f " in \
776             *" $$i "*) ;; \
777             *) f="$$f $$i" ;; \
778           esac ; \
779         done ; \
780         echo $$f > tofiles
781         $(SHELL) $(srcdir)/../move-if-change tofiles ofiles
782         touch stamp-ofiles
783
784 ofiles: stamp-ofiles ; @true
785
786 # Since BFD64_LIBS is optional and we can't have substitution in
787 # libbfd_la_SOURCES, we put BFD64_LIBS in OFILES instead.
788 # However, list all sources in EXTRA_libbfd_la_SOURCES so the
789 # dependency tracking fragments are picked up in the Makefile.
790 libbfd_la_SOURCES = $(BFD32_LIBS_CFILES)
791 EXTRA_libbfd_la_SOURCES = $(CFILES)
792 libbfd_la_DEPENDENCIES = $(OFILES) ofiles
793 libbfd_la_LIBADD = `cat ofiles` @SHARED_LIBADD@ $(LIBDL)
794 libbfd_la_LDFLAGS += -release `cat libtool-soversion` @SHARED_LDFLAGS@
795
796 # libtool will build .libs/libbfd.a.  We create libbfd.a in the build
797 # directory so that we don't have to convert all the programs that use
798 # libbfd.a simultaneously.  This is a hack which should be removed if
799 # everything else starts using libtool.  FIXME.
800
801 noinst_LIBRARIES = libbfd.a
802 libbfd_a_SOURCES =
803
804 stamp-lib: libbfd.la
805         libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
806         if [ -f $$libtooldir/libbfd.a ]; then \
807           cp $$libtooldir/libbfd.a libbfd.tmp; \
808           $(RANLIB) libbfd.tmp; \
809           $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \
810         else true; fi
811         touch stamp-lib
812
813 libbfd.a: stamp-lib ; @true
814
815 # This file holds an array associating configuration triplets and
816 # vector names.  It is built from config.bfd.  It is not compiled by
817 # itself, but is included by targets.c.
818 targmatch.h: config.bfd targmatch.sed
819         rm -f targmatch.h
820         sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new
821         mv -f targmatch.new targmatch.h
822
823 # When compiling archures.c and targets.c, supply the default target
824 # info from configure.
825
826 targets.lo: targets.c Makefile
827 if am__fastdepCC
828         $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(TDEFAULTS) $(srcdir)/targets.c
829         mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
830 else
831 if AMDEP
832         source='targets.c' object='$@' libtool=yes @AMDEPBACKSLASH@
833         DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
834 endif
835         $(LTCOMPILE) -c -o $@ $(TDEFAULTS) $(srcdir)/targets.c
836 endif
837
838 archures.lo: archures.c Makefile
839 if am__fastdepCC
840         $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(TDEFAULTS) $(srcdir)/archures.c
841         mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
842 else
843 if AMDEP
844         source='archures.c' object='$@' libtool=yes @AMDEPBACKSLASH@
845         DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
846 endif
847         $(LTCOMPILE) -c -o $@ $(TDEFAULTS) $(srcdir)/archures.c
848 endif
849
850 dwarf2.lo: dwarf2.c Makefile
851 if am__fastdepCC
852         $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
853         mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
854 else
855 if AMDEP
856         source='dwarf2.c' object='$@' libtool=yes @AMDEPBACKSLASH@
857         DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
858 endif
859         $(LTCOMPILE) -c -o $@ -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
860 endif
861
862 elf32-target.h : elfxx-target.h
863         rm -f elf32-target.h
864         sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new
865         mv -f elf32-target.new elf32-target.h
866
867 elf64-target.h : elfxx-target.h
868         rm -f elf64-target.h
869         sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new
870         mv -f elf64-target.new elf64-target.h
871
872 elf32-ia64.c : elfnn-ia64.c
873         rm -f elf32-ia64.c
874         sed -e s/NN/32/g < $(srcdir)/elfnn-ia64.c > elf32-ia64.new
875         mv -f elf32-ia64.new elf32-ia64.c
876
877 elf64-ia64.c : elfnn-ia64.c
878         rm -f elf64-ia64.c
879         sed -e s/NN/64/g < $(srcdir)/elfnn-ia64.c > elf64-ia64.new
880         mv -f elf64-ia64.new elf64-ia64.c
881
882 peigen.c : peXXigen.c
883         rm -f peigen.c
884         sed -e s/XX/pe/g < $(srcdir)/peXXigen.c > peigen.new
885         mv -f peigen.new peigen.c
886
887 pepigen.c : peXXigen.c
888         rm -f pepigen.c
889         sed -e s/XX/pep/g < $(srcdir)/peXXigen.c > pepigen.new
890         mv -f pepigen.new pepigen.c
891
892 pex64igen.c: peXXigen.c
893         rm -f pex64igen.c
894         sed -e s/XX/pex64/g < $(srcdir)/peXXigen.c > pex64igen.new
895         mv -f pex64igen.new pex64igen.c
896
897 BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
898 LOCAL_H_DEPS= libbfd.h sysdep.h config.h
899 $(BFD32_LIBS) \
900  $(BFD64_LIBS) \
901  $(ALL_MACHINES) \
902  $(BFD32_BACKENDS) \
903  $(BFD64_BACKENDS) \
904  $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
905
906 host-aout.lo: Makefile
907
908 # The following program can be used to generate a simple config file
909 # which can be folded into an h-XXX file for a new host, with some editing.
910 aout-params.h: gen-aout
911         ./gen-aout host > aout-params.h
912 gen-aout: $(srcdir)/gen-aout.c Makefile
913         $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
914
915 $(BFD_H): stmp-bfd-h ; @true
916
917 stmp-bfd-h: bfd-in3.h
918         rm -f bfd-tmp.h
919         cp bfd-in3.h bfd-tmp.h
920         $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H)
921         rm -f bfd-tmp.h
922         touch stmp-bfd-h
923
924 BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
925         reloc.c syms.c bfd.c bfdio.c bfdwin.c \
926         archive.c corefile.c targets.c format.c compress.c
927 BFD64_H_FILES = archive64.c
928 LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c bfdio.c bfdwin.c \
929         cache.c reloc.c archures.c elf.c
930 LIBCOFF_H_FILES = libcoff-in.h coffcode.h
931
932 # Could really use a "copy-if-change"...
933 headers:
934         (cd $(bfddocdir); $(MAKE) protos $(FLAGS_TO_PASS))
935         cp $(bfddocdir)/bfd.h bfd-in2.h-new
936         $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
937         cp $(bfddocdir)/libbfd.h libbfd.h-new
938         $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
939         cp $(bfddocdir)/libcoff.h libcoff.h-new
940         $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
941
942 # We only rebuild the header files automatically if we have been
943 # configured with --enable-maintainer-mode.
944
945 $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
946 stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES)
947         (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h)
948         cp $(bfddocdir)/bfd.h bfd-in2.h-new
949         $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
950         touch stmp-bin2-h
951
952 $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
953 stmp-lbfd-h: $(LIBBFD_H_FILES)
954         (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h)
955         cp $(bfddocdir)/libbfd.h libbfd.h-new
956         $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
957         touch stmp-lbfd-h
958
959 $(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true
960 stmp-lcoff-h: $(LIBCOFF_H_FILES)
961         (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h)
962         cp $(bfddocdir)/libcoff.h libcoff.h-new
963         $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
964         touch stmp-lcoff-h
965
966 MOSTLYCLEANFILES = ofiles stamp-ofiles
967
968 CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \
969         stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
970
971 DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) libtool-soversion
972
973 bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in
974         @echo "creating $@"
975         @bfd_version=`echo "$(VERSION)" | sed -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$$/\1\2\3\4\5/'` ;\
976         bfd_version_string="\"$(VERSION)\"" ;\
977         bfd_soversion="$(VERSION)" ;\
978         bfd_version_package="\"$(PKGVERSION)\"" ;\
979         report_bugs_to="\"$(REPORT_BUGS_TO)\"" ;\
980         if test "x$(RELEASE)" = x ; then \
981           bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\
982           bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\
983           bfd_soversion="$(VERSION).$${bfd_version_date}" ;\
984         fi ;\
985         sed -e "s,@bfd_version@,$$bfd_version," \
986             -e "s,@bfd_version_string@,$$bfd_version_string," \
987             -e "s,@bfd_version_package@,$$bfd_version_package," \
988             -e "s,@report_bugs_to@,$$report_bugs_to," \
989             < $(srcdir)/version.h > $@; \
990         echo "$${bfd_soversion}" > libtool-soversion
991
992 # Disable -Werror, if it has been enabled, since coffswap.h won't
993 # compile with gcc 4.5 and above.
994 coff-tic4x.lo: coff-tic4x.c
995 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(NO_WERROR)
996 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
997 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
998 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
999 @am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $< $(NO_WERROR)
1000
1001 coff-tic54x.lo: coff-tic54x.c
1002 @am__fastdepCC_TRUE@    $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(NO_WERROR)
1003 @am__fastdepCC_TRUE@    $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
1004 @AMDEP_TRUE@@am__fastdepCC_FALSE@       source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
1005 @AMDEP_TRUE@@am__fastdepCC_FALSE@       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
1006 @am__fastdepCC_FALSE@   $(LTCOMPILE) -c -o $@ $< $(NO_WERROR)