1 ## Process this file with automake to generate Makefile.in
3 AUTOMAKE_OPTIONS = 1.11 no-dist foreign
4 ACLOCAL_AMFLAGS = -I . -I .. -I ../config
6 # Uncomment the following line when doing a release.
9 INCDIR = $(srcdir)/../include
10 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
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
23 # Empty these so that the respective installation directories will not be created.
26 rpath_bfdlibdir = @bfdlibdir@
27 noinst_LTLIBRARIES = libbfd.la
28 libbfd_la_LDFLAGS += -rpath $(rpath_bfdlibdir)
31 WARN_CFLAGS = @WARN_CFLAGS@
32 NO_WERROR = @NO_WERROR@
33 AM_CFLAGS = $(WARN_CFLAGS)
34 AM_CPPFLAGS = -DBINDIR='"$(bindir)"'
39 # bfd.h goes here, for now
43 # Writing S-records should be included in all (or at least most)
44 # *-*-coff, *-*-aout, etc., configurations, because people will want to
45 # be able to use objcopy to create S-records. (S-records are not useful
46 # for the debugger, so if you are downloading things as S-records you
47 # need two copies of the executable, one to download and one for the
50 archive.lo archures.lo bfd.lo bfdio.lo bfdwin.lo \
51 cache.lo coffgen.lo corefile.lo \
52 format.lo init.lo libbfd.lo opncls.lo reloc.lo \
53 section.lo syms.lo targets.lo hash.lo linker.lo \
54 srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo \
55 merge.lo dwarf2.lo simple.lo compress.lo verilog.lo
57 BFD64_LIBS = archive64.lo
60 archive.c archures.c bfd.c bfdio.c bfdwin.c \
61 cache.c coffgen.c corefile.c \
62 format.c init.c libbfd.c opncls.c reloc.c \
63 section.c syms.c targets.c hash.c linker.c \
64 srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c \
65 merge.c dwarf2.c simple.c compress.c verilog.c
67 BFD64_LIBS_CFILES = archive64.c
69 # This list is alphabetized to make it easier to keep in sync
70 # with the decls and initializer in archures.c.
143 ALL_MACHINES_CFILES = \
215 # The .o files needed by all of the 32 bit vectors that are configured into
216 # target_vector in targets.c if configured with --enable-targets=all.
302 elf32-microblaze.lo \
313 elf32-sh-symbian.lo \
398 BFD32_BACKENDS_CFILES = \
578 # The .o files needed by all of the 64 bit vectors that are configured into
579 # target_vector in targets.c if configured with --enable-targets=all
580 # and --enable-64-bit-bfd.
581 # elf32-ia64.c requires a 64-bit bfd_vma, and hence can not be put in
617 BFD64_BACKENDS_CFILES = \
647 OPTIONAL_BACKENDS = \
658 OPTIONAL_BACKENDS_CFILES = \
669 # We want to rerun configure if configure.in, config.bfd or
670 # configure.host change. configure.in is needed since the version
671 # number in Makefile comes from configure.in.
672 CONFIG_STATUS_DEPENDENCIES = \
673 $(srcdir)/configure.in \
674 $(srcdir)/config.bfd \
675 $(srcdir)/configure.host
677 # These are defined by configure.in:
678 WORDSIZE = @wordsize@
679 ALL_BACKENDS = @all_backends@
680 BFD_BACKENDS = @bfd_backends@
681 BFD_MACHINES = @bfd_machines@
682 TDEFAULTS = @tdefaults@
683 HAVEVECS = @havevecs@
685 INCLUDES = @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) \
686 $(HAVEVECS) @INCINTL@
688 # C source files that correspond to .o's.
690 $(BFD32_LIBS_CFILES) \
691 $(BFD64_LIBS_CFILES) \
692 $(ALL_MACHINES_CFILES) \
693 $(BFD32_BACKENDS_CFILES) \
694 $(BFD64_BACKENDS_CFILES) \
695 $(OPTIONAL_BACKENDS_CFILES)
698 elf32-ia64.c elf64-ia64.c peigen.c pepigen.c pex64igen.c
700 CFILES = $(SOURCE_CFILES) $(BUILD_CFILES)
702 ## This is a list of all .h files which are in the source tree.
704 aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \
705 elf-bfd.h elf-hppa.h elf32-hppa.h \
706 elf64-hppa.h elfcode.h elfcore.h \
707 freebsd.h genlink.h go32stub.h \
708 libaout.h libbfd.h libcoff.h libecoff.h libhppa.h libieee.h \
709 libnlm.h liboasys.h libpei.h libxcoff.h mach-o.h \
710 netbsd.h nlm-target.h nlmcode.h nlmswap.h ns32k.h \
711 pef.h pef-traceback.h peicode.h som.h version.h \
712 vms.h xcoff-target.h xsym.h
714 ## ... and all .h files which are in the build tree.
716 bfdver.h elf32-target.h elf64-target.h targmatch.h bfd_stdint.h
718 # Ensure they are built early:
719 BUILT_SOURCES = $(BUILD_HFILES)
721 HFILES = $(SOURCE_HFILES) $(BUILD_HFILES)
723 SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES)
724 BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES)
726 po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
727 for file in $(SRC_POTFILES); do echo $$file; done \
728 | LC_ALL=C sort > tmp.src \
729 && mv tmp.src $(srcdir)/po/SRC-POTFILES.in
731 po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
732 for file in $(BLD_POTFILES); do echo $$file; done \
733 | LC_ALL=C sort > tmp.bld \
734 && mv tmp.bld $(srcdir)/po/BLD-POTFILES.in
738 # Various kinds of .o files to put in libbfd.a:
739 # BFD_BACKENDS Routines the configured targets need.
740 # BFD_MACHINES Architecture-specific routines the configured targets need.
741 # COREFILE Core file routines for a native configuration
742 # bfd64_libs Routines for 64bit support
743 OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@ @bfd64_libs@
745 stamp-ofiles: Makefile
748 for i in $(OFILES) ; do \
755 $(SHELL) $(srcdir)/../move-if-change tofiles ofiles
758 ofiles: stamp-ofiles ; @true
760 # Since BFD64_LIBS is optional and we can't have substitution in
761 # libbfd_la_SOURCES, we put BFD64_LIBS in OFILES instead.
762 # However, list all sources in EXTRA_libbfd_la_SOURCES so the
763 # dependency tracking fragments are picked up in the Makefile.
764 libbfd_la_SOURCES = $(BFD32_LIBS_CFILES)
765 EXTRA_libbfd_la_SOURCES = $(CFILES)
766 libbfd_la_DEPENDENCIES = $(OFILES) ofiles
767 libbfd_la_LIBADD = `cat ofiles` @SHARED_LIBADD@ $(LIBDL)
768 libbfd_la_LDFLAGS += -release `cat libtool-soversion` @SHARED_LDFLAGS@
770 # libtool will build .libs/libbfd.a. We create libbfd.a in the build
771 # directory so that we don't have to convert all the programs that use
772 # libbfd.a simultaneously. This is a hack which should be removed if
773 # everything else starts using libtool. FIXME.
775 noinst_LIBRARIES = libbfd.a
779 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
780 if [ -f $$libtooldir/libbfd.a ]; then \
781 cp $$libtooldir/libbfd.a libbfd.tmp; \
782 $(RANLIB) libbfd.tmp; \
783 $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \
787 libbfd.a: stamp-lib ; @true
789 # This file holds an array associating configuration triplets and
790 # vector names. It is built from config.bfd. It is not compiled by
791 # itself, but is included by targets.c.
792 targmatch.h: config.bfd targmatch.sed
794 sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new
795 mv -f targmatch.new targmatch.h
797 # When compiling archures.c and targets.c, supply the default target
798 # info from configure.
800 targets.lo: targets.c Makefile
802 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(TDEFAULTS) $(srcdir)/targets.c
803 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
806 source='targets.c' object='$@' libtool=yes @AMDEPBACKSLASH@
807 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
809 $(LTCOMPILE) -c -o $@ $(TDEFAULTS) $(srcdir)/targets.c
812 archures.lo: archures.c Makefile
814 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(TDEFAULTS) $(srcdir)/archures.c
815 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
818 source='archures.c' object='$@' libtool=yes @AMDEPBACKSLASH@
819 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
821 $(LTCOMPILE) -c -o $@ $(TDEFAULTS) $(srcdir)/archures.c
824 dwarf2.lo: dwarf2.c Makefile
826 $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
827 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
830 source='dwarf2.c' object='$@' libtool=yes @AMDEPBACKSLASH@
831 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
833 $(LTCOMPILE) -c -o $@ -DDEBUGDIR=\"$(DEBUGDIR)\" $(srcdir)/dwarf2.c
836 elf32-target.h : elfxx-target.h
838 sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new
839 mv -f elf32-target.new elf32-target.h
841 elf64-target.h : elfxx-target.h
843 sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new
844 mv -f elf64-target.new elf64-target.h
846 elf32-ia64.c : elfxx-ia64.c
848 sed -e s/NN/32/g < $(srcdir)/elfxx-ia64.c > elf32-ia64.new
849 mv -f elf32-ia64.new elf32-ia64.c
851 elf64-ia64.c : elfxx-ia64.c
853 sed -e s/NN/64/g < $(srcdir)/elfxx-ia64.c > elf64-ia64.new
854 mv -f elf64-ia64.new elf64-ia64.c
856 peigen.c : peXXigen.c
858 sed -e s/XX/pe/g < $(srcdir)/peXXigen.c > peigen.new
859 mv -f peigen.new peigen.c
861 pepigen.c : peXXigen.c
863 sed -e s/XX/pep/g < $(srcdir)/peXXigen.c > pepigen.new
864 mv -f pepigen.new pepigen.c
866 pex64igen.c: peXXigen.c
868 sed -e s/XX/pex64/g < $(srcdir)/peXXigen.c > pex64igen.new
869 mv -f pex64igen.new pex64igen.c
871 BFD_H_DEPS= $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h
872 LOCAL_H_DEPS= libbfd.h sysdep.h config.h
878 $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
880 host-aout.lo: Makefile
882 # The following program can be used to generate a simple config file
883 # which can be folded into an h-XXX file for a new host, with some editing.
884 aout-params.h: gen-aout
885 ./gen-aout host > aout-params.h
886 gen-aout: $(srcdir)/gen-aout.c Makefile
887 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
889 $(BFD_H): stmp-bfd-h ; @true
891 stmp-bfd-h: bfd-in3.h
893 cp bfd-in3.h bfd-tmp.h
894 $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H)
898 BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
899 reloc.c syms.c bfd.c bfdio.c bfdwin.c \
900 archive.c corefile.c targets.c format.c compress.c
901 BFD64_H_FILES = archive64.c
902 LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c bfdio.c bfdwin.c \
903 cache.c reloc.c archures.c elf.c
904 LIBCOFF_H_FILES = libcoff-in.h coffcode.h
906 # Could really use a "copy-if-change"...
908 (cd $(bfddocdir); $(MAKE) protos $(FLAGS_TO_PASS))
909 cp $(bfddocdir)/bfd.h bfd-in2.h-new
910 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
911 cp $(bfddocdir)/libbfd.h libbfd.h-new
912 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
913 cp $(bfddocdir)/libcoff.h libcoff.h-new
914 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
916 # We only rebuild the header files automatically if we have been
917 # configured with --enable-maintainer-mode.
919 $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
920 stmp-bin2-h: $(BFD_H_FILES) $(BFD64_H_FILES)
921 (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h)
922 cp $(bfddocdir)/bfd.h bfd-in2.h-new
923 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
926 $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
927 stmp-lbfd-h: $(LIBBFD_H_FILES)
928 (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h)
929 cp $(bfddocdir)/libbfd.h libbfd.h-new
930 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
933 $(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true
934 stmp-lcoff-h: $(LIBCOFF_H_FILES)
935 (cd $(bfddocdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h)
936 cp $(bfddocdir)/libcoff.h libcoff.h-new
937 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
940 MOSTLYCLEANFILES = ofiles stamp-ofiles
942 CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \
943 stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
945 DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES) libtool-soversion
947 bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in
949 @bfd_version=`echo "$(VERSION)" | sed -e 's/\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\)\.*\([^\.]*\).*/\1.00\2.00\3.00\4.00\5/' -e 's/\([^\.]*\)\..*\(..\)\..*\(..\)\..*\(..\)\..*\(..\)$$/\1\2\3\4\5/'` ;\
950 bfd_version_string="\"$(VERSION)\"" ;\
951 bfd_soversion="$(VERSION)" ;\
952 bfd_version_package="\"$(PKGVERSION)\"" ;\
953 report_bugs_to="\"$(REPORT_BUGS_TO)\"" ;\
954 if test "x$(RELEASE)" = x ; then \
955 bfd_version_date=`sed -n -e 's/.*DATE //p' < $(srcdir)/version.h` ;\
956 bfd_version_string="\"$(VERSION).$${bfd_version_date}\"" ;\
957 bfd_soversion="$(VERSION).$${bfd_version_date}" ;\
959 sed -e "s,@bfd_version@,$$bfd_version," \
960 -e "s,@bfd_version_string@,$$bfd_version_string," \
961 -e "s,@bfd_version_package@,$$bfd_version_package," \
962 -e "s,@report_bugs_to@,$$report_bugs_to," \
963 < $(srcdir)/version.h > $@; \
964 echo "$${bfd_soversion}" > libtool-soversion
966 # Disable -Werror, if it has been enabled, since coffswap.h won't
967 # compile with gcc 4.5 and above.
968 coff-tic4x.lo: coff-tic4x.c
969 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(NO_WERROR)
970 @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
971 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
972 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
973 @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< $(NO_WERROR)
975 coff-tic54x.lo: coff-tic54x.c
976 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< $(NO_WERROR)
977 @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
978 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
979 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
980 @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< $(NO_WERROR)