1 ## Process this file with automake to generate Makefile.in
3 AUTOMAKE_OPTIONS = cygnus
5 INCDIR = $(srcdir)/../include
6 CSEARCH = -I. -I$(srcdir) -I$(INCDIR)
13 lib_LTLIBRARIES = libbfd.la
15 WARN_CFLAGS = @WARN_CFLAGS@
16 AM_CFLAGS = $(WARN_CFLAGS)
18 # bfd.h goes here, for now
22 # Writing S-records should be included in all (or at least most)
23 # *-*-coff, *-*-aout, etc., configurations, because people will want to
24 # be able to use objcopy to create S-records. (S-records are not useful
25 # for the debugger, so if you are downloading things as S-records you
26 # need two copies of the executable, one to download and one for the
29 archive.lo archures.lo bfd.lo cache.lo coffgen.lo corefile.lo \
30 format.lo init.lo libbfd.lo opncls.lo reloc.lo \
31 section.lo syms.lo targets.lo hash.lo linker.lo \
32 srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo \
36 archive.c archures.c bfd.c cache.c coffgen.c corefile.c \
37 format.c init.c libbfd.c opncls.c reloc.c \
38 section.c syms.c targets.c hash.c linker.c \
39 srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c \
42 # This list is alphabetized to make it easier to keep in sync
43 # with the decls and initializer in archures.c.
89 ALL_MACHINES_CFILES = \
134 # The .o files needed by all of the 32 bit vectors that are configured into
135 # target_vector in targets.c if configured with --enable-targets=all.
277 BFD32_BACKENDS_CFILES = \
416 # The .o files needed by all of the 64 bit vectors that are configured into
417 # target_vector in targets.c if configured with --enable-targets=all
418 # and --enable-64-bit-bfd.
438 BFD64_BACKENDS_CFILES = \
455 OPTIONAL_BACKENDS = \
465 OPTIONAL_BACKENDS_CFILES = \
475 # These are defined by configure.in:
476 WORDSIZE = @wordsize@
477 ALL_BACKENDS = @all_backends@
478 BFD_BACKENDS = @bfd_backends@
479 BFD_MACHINES = @bfd_machines@
480 TDEFAULTS = @tdefaults@
482 INCLUDES = -D_GNU_SOURCE @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) -I$(srcdir)/../intl -I../intl
484 # C source files that correspond to .o's.
487 $(ALL_MACHINES_CFILES) \
488 $(BFD32_BACKENDS_CFILES) \
489 $(BFD64_BACKENDS_CFILES) \
490 $(OPTIONAL_BACKENDS_CFILES)
493 elf32-ia64.c elf64-ia64.c peigen.c pepigen.c
495 CFILES = $(SOURCE_CFILES) $(BUILD_CFILES)
497 ## This is a list of all .h files which are in the source tree.
499 aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h ecoffswap.h \
500 elf-bfd.h elf-hppa.h elf32-arm.h elf32-hppa.h elf64-hppa.h \
501 elfcode.h elfcore.h elflink.h freebsd.h genlink.h go32stub.h \
502 libaout.h libbfd.h libcoff.h libecoff.h libhppa.h \
503 libieee.h libnlm.h liboasys.h libpei.h netbsd.h nlm-target.h \
504 nlmcode.h nlmswap.h ns32k.h peicode.h som.h vms.h xcoff-target.h
506 ## ... and all .h files which are in the build tree.
508 elf32-target.h elf64-target.h targmatch.h
510 HFILES = $(SOURCE_HFILES) $(BUILD_HFILES)
512 SRC_POTFILES = $(SOURCE_CFILES) $(SOURCE_HFILES)
513 BLD_POTFILES = $(BUILD_CFILES) $(BUILD_HFILES)
515 po/SRC-POTFILES.in: @MAINT@ Makefile $(SRC_POTFILES)
516 for file in $(SRC_POTFILES); do echo $$file; done | sort > tmp \
517 && mv tmp $(srcdir)/po/SRC-POTFILES.in
519 po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES)
520 for file in $(BLD_POTFILES); do echo $$file; done | sort > tmp \
521 && mv tmp $(srcdir)/po/BLD-POTFILES.in
523 # The following target is retained for upgrade purposes.
524 # This target used to exist in older versions of this makefile, and was
525 # referenced by <builddir>/po/Makefile (which is created from <srcdir>/po/Make-in)
526 # So old versions of <builddir>/po/Makefile will try to regenerate themselves
527 # when make is next run, but that dependency cannot be completed without a build
528 # of po/POTFILES.in. Hence the presence of this rule. This rule will be deleted
529 # once it is no longer needed - probably in the fall of 2001.
535 # Various kinds of .o files to put in libbfd.a:
536 # BFD_BACKENDS Routines the configured targets need.
537 # BFD_MACHINES Architecture-specific routines the configured targets need.
538 # COREFILE Core file routines for a native configuration
539 OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@
541 stamp-ofiles: Makefile
544 for i in $(OFILES) ; do \
551 $(SHELL) $(srcdir)/../move-if-change tofiles ofiles
554 ofiles: stamp-ofiles ; @true
556 libbfd_la_SOURCES = $(BFD_LIBS_CFILES)
557 libbfd_la_DEPENDENCIES = $(OFILES) ofiles
558 libbfd_la_LIBADD = `cat ofiles` @WIN32LIBADD@
559 libbfd_la_LDFLAGS = -release $(VERSION) @WIN32LDFLAGS@
561 # libtool will build .libs/libbfd.a. We create libbfd.a in the build
562 # directory so that we don't have to convert all the programs that use
563 # libbfd.a simultaneously. This is a hack which should be removed if
564 # everything else starts using libtool. FIXME.
566 noinst_LIBRARIES = libbfd.a
570 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
571 if [ -f $$libtooldir/libbfd.a ]; then \
572 cp $$libtooldir/libbfd.a libbfd.tmp; \
573 $(RANLIB) libbfd.tmp; \
574 $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \
578 libbfd.a: stamp-lib ; @true
580 # This file holds an array associating configuration triplets and
581 # vector names. It is built from config.bfd. It is not compiled by
582 # itself, but is included by targets.c.
583 targmatch.h: config.bfd targmatch.sed
585 sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new
586 mv -f targmatch.new targmatch.h
588 # When compiling archures.c and targets.c, supply the default target
589 # info from configure.
591 targets.lo: targets.c config.status
592 $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/targets.c
594 archures.lo: archures.c config.status
595 $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/archures.c
597 elf32-target.h : elfxx-target.h
599 sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new
600 mv -f elf32-target.new elf32-target.h
602 elf64-target.h : elfxx-target.h
604 sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new
605 mv -f elf64-target.new elf64-target.h
607 elf32-ia64.c : elfxx-ia64.c
609 sed -e s/NN/32/g < $(srcdir)/elfxx-ia64.c > elf32-ia64.new
610 mv -f elf32-ia64.new elf32-ia64.c
612 elf64-ia64.c : elfxx-ia64.c
614 sed -e s/NN/64/g < $(srcdir)/elfxx-ia64.c > elf64-ia64.new
615 mv -f elf64-ia64.new elf64-ia64.c
617 peigen.c : peXXigen.c
619 sed -e s/XX/pe/g < $(srcdir)/peXXigen.c > peigen.new
620 mv -f peigen.new peigen.c
622 pepigen.c : peXXigen.c
624 sed -e s/XX/pep/g < $(srcdir)/peXXigen.c > pepigen.new
625 mv -f pepigen.new pepigen.c
627 BFD_H_DEPS= $(INCDIR)/ansidecl.h
628 LOCAL_H_DEPS= libbfd.h sysdep.h config.h
629 $(BFD_LIBS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
630 $(BFD_MACHINES): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
631 $(BFD_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
632 $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
634 # Install BFD include file, and others that it needs.
635 install-data-local: $(BFD_H)
637 $(mkinstalldirs) $(DESTDIR)$(includedir)
638 $(INSTALL_DATA) $(BFD_H) $(DESTDIR)$(includedir)/bfd.h
639 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(DESTDIR)$(includedir)/ansidecl.h
640 $(INSTALL_DATA) $(INCDIR)/bfdlink.h $(DESTDIR)$(includedir)/bfdlink.h
643 # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
644 DEP: dep.sed $(CFILES) $(HFILES) bfd.h
646 $(MAKE) MKDEP="$(MKDEP)" DEP1
647 sed -f dep.sed < DEP1 > DEPA
648 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
649 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
650 echo 'make DEP failed!'; exit 1; \
656 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
657 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
658 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
661 dep.sed: dep-in.sed config.status
662 sed <$(srcdir)/dep-in.sed >dep.sed \
663 -e 's!@BFD_H@!$(BFD_H)!' \
664 -e 's!@INCDIR@!$(INCDIR)!' \
665 -e 's!@SRCDIR@!$(srcdir)!'
668 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
669 cat DEP >> tmp-Makefile
670 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
673 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
674 cat DEP >> tmp-Makefile.in
675 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
678 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
679 cat DEP >> tmp-Makefile.am
680 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
682 host-aout.lo: Makefile
684 # The following program can be used to generate a simple config file
685 # which can be folded into an h-XXX file for a new host, with some editing.
686 aout-params.h: gen-aout
687 ./gen-aout host > aout-params.h
688 gen-aout: $(srcdir)/gen-aout.c Makefile
689 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
691 $(BFD_H): stmp-bfd-h ; @true
693 stmp-bfd-h: bfd-in3.h
695 cp bfd-in3.h bfd-tmp.h
696 $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H)
700 BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
701 reloc.c syms.c bfd.c archive.c corefile.c targets.c format.c
702 LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c cache.c reloc.c archures.c elf.c
703 LIBCOFF_H_FILES = libcoff-in.h coffcode.h
705 # Could really use a "copy-if-change"...
707 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
708 cp $(docdir)/bfd.h bfd-in2.h-new
709 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
710 cp $(docdir)/libbfd.h libbfd.h-new
711 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
712 cp $(docdir)/libcoff.h libcoff.h-new
713 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
715 # We only rebuild the header files automatically if we have been
716 # configured with --enable-maintainer-mode.
718 $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
719 stmp-bin2-h: $(BFD_H_FILES)
720 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h)
721 cp $(docdir)/bfd.h bfd-in2.h-new
722 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
725 $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
726 stmp-lbfd-h: $(LIBBFD_H_FILES)
727 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h)
728 cp $(docdir)/libbfd.h libbfd.h-new
729 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
732 $(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true
733 stmp-lcoff-h: $(LIBCOFF_H_FILES)
734 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h)
735 cp $(docdir)/libcoff.h libcoff.h-new
736 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
739 MOSTLYCLEANFILES = ofiles stamp-ofiles
741 CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEPA DEP1 DEP2 libbfd.a stamp-lib \
742 stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
744 DISTCLEANFILES = $(BUILD_CFILES) $(BUILD_HFILES)
746 # We want to rerun configure if config.bfd or configure.host change.
747 config.status: $(srcdir)/configure $(srcdir)/config.bfd $(srcdir)/configure.host
748 $(SHELL) ./config.status --recheck
751 # What appears below is generated by a hacked mkdep using gcc -MM.
753 # DO NOT DELETE THIS LINE -- mkdep uses it.
754 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
755 archive.lo: archive.c $(INCDIR)/filenames.h $(INCDIR)/aout/ar.h \
756 $(INCDIR)/aout/ranlib.h
757 archures.lo: archures.c $(INCDIR)/filenames.h
758 bfd.lo: bfd.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
759 $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \
760 libcoff.h libecoff.h $(INCDIR)/coff/ecoff.h elf-bfd.h \
761 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
762 cache.lo: cache.c $(INCDIR)/filenames.h
763 coffgen.lo: coffgen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \
764 libcoff.h $(INCDIR)/bfdlink.h
765 corefile.lo: corefile.c $(INCDIR)/filenames.h
766 format.lo: format.c $(INCDIR)/filenames.h
767 init.lo: init.c $(INCDIR)/filenames.h
768 libbfd.lo: libbfd.c $(INCDIR)/filenames.h
769 opncls.lo: opncls.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h
770 reloc.lo: reloc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h
771 section.lo: section.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h
772 syms.lo: syms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
773 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
774 targets.lo: targets.c $(INCDIR)/filenames.h $(INCDIR)/fnmatch.h \
776 hash.lo: hash.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h
777 linker.lo: linker.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
779 srec.lo: srec.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h
780 binary.lo: binary.c $(INCDIR)/filenames.h
781 tekhex.lo: tekhex.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h
782 ihex.lo: ihex.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h
783 stabs.lo: stabs.c $(INCDIR)/filenames.h $(INCDIR)/aout/stab_gnu.h \
784 $(INCDIR)/aout/stab.def
785 stab-syms.lo: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \
786 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def
787 merge.lo: merge.c $(INCDIR)/filenames.h
788 dwarf2.lo: dwarf2.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
789 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
790 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf2.h
791 cpu-a29k.lo: cpu-a29k.c $(INCDIR)/filenames.h
792 cpu-alpha.lo: cpu-alpha.c $(INCDIR)/filenames.h
793 cpu-arc.lo: cpu-arc.c $(INCDIR)/filenames.h
794 cpu-arm.lo: cpu-arm.c $(INCDIR)/filenames.h
795 cpu-avr.lo: cpu-avr.c $(INCDIR)/filenames.h
796 cpu-cris.lo: cpu-cris.c $(INCDIR)/filenames.h
797 cpu-d10v.lo: cpu-d10v.c $(INCDIR)/filenames.h
798 cpu-d30v.lo: cpu-d30v.c $(INCDIR)/filenames.h
799 cpu-fr30.lo: cpu-fr30.c $(INCDIR)/filenames.h
800 cpu-h8300.lo: cpu-h8300.c $(INCDIR)/filenames.h
801 cpu-h8500.lo: cpu-h8500.c $(INCDIR)/filenames.h
802 cpu-hppa.lo: cpu-hppa.c $(INCDIR)/filenames.h
803 cpu-ia64.lo: cpu-ia64.c $(INCDIR)/filenames.h cpu-ia64-opc.c \
804 $(srcdir)/../opcodes/ia64-opc.h $(INCDIR)/opcode/ia64.h
805 cpu-i370.lo: cpu-i370.c $(INCDIR)/filenames.h
806 cpu-i386.lo: cpu-i386.c $(INCDIR)/filenames.h
807 cpu-i860.lo: cpu-i860.c $(INCDIR)/filenames.h
808 cpu-i960.lo: cpu-i960.c $(INCDIR)/filenames.h
809 cpu-m32r.lo: cpu-m32r.c $(INCDIR)/filenames.h
810 cpu-m68hc11.lo: cpu-m68hc11.c $(INCDIR)/filenames.h
811 cpu-m68hc12.lo: cpu-m68hc12.c $(INCDIR)/filenames.h
812 cpu-m68k.lo: cpu-m68k.c $(INCDIR)/filenames.h
813 cpu-m88k.lo: cpu-m88k.c $(INCDIR)/filenames.h
814 cpu-m10200.lo: cpu-m10200.c $(INCDIR)/filenames.h
815 cpu-m10300.lo: cpu-m10300.c $(INCDIR)/filenames.h
816 cpu-mcore.lo: cpu-mcore.c $(INCDIR)/filenames.h
817 cpu-mips.lo: cpu-mips.c $(INCDIR)/filenames.h
818 cpu-ns32k.lo: cpu-ns32k.c $(INCDIR)/filenames.h ns32k.h
819 cpu-openrisc.lo: cpu-openrisc.c $(INCDIR)/filenames.h
820 cpu-pdp11.lo: cpu-pdp11.c $(INCDIR)/filenames.h
821 cpu-pj.lo: cpu-pj.c $(INCDIR)/filenames.h
822 cpu-powerpc.lo: cpu-powerpc.c $(INCDIR)/filenames.h
823 cpu-rs6000.lo: cpu-rs6000.c $(INCDIR)/filenames.h
824 cpu-s390.lo: cpu-s390.c $(INCDIR)/filenames.h
825 cpu-sh.lo: cpu-sh.c $(INCDIR)/filenames.h
826 cpu-sparc.lo: cpu-sparc.c $(INCDIR)/filenames.h
827 cpu-tic30.lo: cpu-tic30.c $(INCDIR)/filenames.h
828 cpu-tic54x.lo: cpu-tic54x.c $(INCDIR)/filenames.h
829 cpu-tic80.lo: cpu-tic80.c $(INCDIR)/filenames.h
830 cpu-v850.lo: cpu-v850.c $(INCDIR)/filenames.h
831 cpu-vax.lo: cpu-vax.c $(INCDIR)/filenames.h
832 cpu-we32k.lo: cpu-we32k.c $(INCDIR)/filenames.h
833 cpu-w65.lo: cpu-w65.c $(INCDIR)/filenames.h
834 cpu-z8k.lo: cpu-z8k.c $(INCDIR)/filenames.h
835 aout-adobe.lo: aout-adobe.c $(INCDIR)/filenames.h $(INCDIR)/aout/adobe.h \
836 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h \
838 aout-arm.lo: aout-arm.c $(INCDIR)/filenames.h libaout.h \
839 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aoutx.h \
840 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
842 aout-cris.lo: aout-cris.c aout32.c aoutx.h $(INCDIR)/filenames.h \
843 $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \
844 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
846 aout-ns32k.lo: aout-ns32k.c $(INCDIR)/aout/aout64.h \
847 ns32k.h libaout.h $(INCDIR)/bfdlink.h
848 aout-sparcle.lo: aout-sparcle.c $(INCDIR)/bfdlink.h \
849 libaout.h aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \
850 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
851 $(INCDIR)/aout/ar.h aout-target.h
852 aout-tic30.lo: aout-tic30.c $(INCDIR)/filenames.h libaout.h \
853 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
854 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aoutx.h
855 aout0.lo: aout0.c aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \
856 libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
857 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
859 aout32.lo: aout32.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
860 libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
861 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
862 armnetbsd.lo: armnetbsd.c netbsd.h $(INCDIR)/filenames.h \
863 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
864 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
865 bout.lo: bout.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
866 genlink.h $(INCDIR)/bout.h $(INCDIR)/aout/stab_gnu.h \
867 $(INCDIR)/aout/stab.def libaout.h
868 cf-i386lynx.lo: cf-i386lynx.c $(INCDIR)/filenames.h \
869 coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h \
870 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
871 cf-m68klynx.lo: cf-m68klynx.c coff-m68k.c $(INCDIR)/filenames.h \
872 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h \
873 $(INCDIR)/bfdlink.h coffcode.h coffswap.h
874 cf-sparclynx.lo: cf-sparclynx.c coff-sparc.c $(INCDIR)/filenames.h \
875 $(INCDIR)/coff/sparc.h $(INCDIR)/coff/internal.h libcoff.h \
876 $(INCDIR)/bfdlink.h coffcode.h coffswap.h
877 coff-a29k.lo: coff-a29k.c $(INCDIR)/filenames.h $(INCDIR)/coff/a29k.h \
878 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
879 coffcode.h coffswap.h
880 coff-apollo.lo: coff-apollo.c $(INCDIR)/filenames.h \
881 $(INCDIR)/coff/apollo.h $(INCDIR)/coff/internal.h libcoff.h \
882 $(INCDIR)/bfdlink.h coffcode.h coffswap.h
883 coff-arm.lo: coff-arm.c $(INCDIR)/filenames.h $(INCDIR)/coff/arm.h \
884 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
885 coffcode.h coffswap.h
886 coff-aux.lo: coff-aux.c $(INCDIR)/filenames.h $(INCDIR)/coff/aux-coff.h \
887 $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h coff-m68k.c \
888 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
889 coff-h8300.lo: coff-h8300.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
890 genlink.h $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h \
891 libcoff.h coffcode.h coffswap.h
892 coff-h8500.lo: coff-h8500.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
893 $(INCDIR)/coff/h8500.h $(INCDIR)/coff/internal.h libcoff.h \
894 coffcode.h coffswap.h
895 coff-i386.lo: coff-i386.c $(INCDIR)/filenames.h $(INCDIR)/coff/i386.h \
896 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
897 coffcode.h coffswap.h
898 coff-i860.lo: coff-i860.c $(INCDIR)/filenames.h $(INCDIR)/coff/i860.h \
899 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
900 coffcode.h coffswap.h
901 coff-go32.lo: coff-go32.c coff-i386.c $(INCDIR)/filenames.h \
902 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h \
903 $(INCDIR)/bfdlink.h coffcode.h coffswap.h
904 coff-i960.lo: coff-i960.c $(INCDIR)/filenames.h $(INCDIR)/coff/i960.h \
905 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
906 coffcode.h coffswap.h
907 coff-m68k.lo: coff-m68k.c $(INCDIR)/filenames.h $(INCDIR)/coff/m68k.h \
908 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
909 coffcode.h coffswap.h
910 coff-m88k.lo: coff-m88k.c $(INCDIR)/filenames.h $(INCDIR)/coff/m88k.h \
911 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
912 coffcode.h coffswap.h
913 coff-mips.lo: coff-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
914 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
915 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h libcoff.h \
916 libecoff.h coffswap.h ecoffswap.h
917 coff-pmac.lo: coff-pmac.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \
918 $(INCDIR)/coff/rs6000.h libcoff.h $(INCDIR)/bfdlink.h \
919 xcoff-target.h coffcode.h coffswap.h
920 coff-rs6000.lo: coff-rs6000.c $(INCDIR)/filenames.h \
921 $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6000.h libcoff.h \
922 $(INCDIR)/bfdlink.h xcoff-target.h coffcode.h coffswap.h
923 coff-sh.lo: coff-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
924 $(INCDIR)/coff/sh.h $(INCDIR)/coff/internal.h libcoff.h \
925 coffcode.h coffswap.h
926 coff-sparc.lo: coff-sparc.c $(INCDIR)/filenames.h $(INCDIR)/coff/sparc.h \
927 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
928 coffcode.h coffswap.h
929 coff-stgo32.lo: coff-stgo32.c coff-i386.c $(INCDIR)/filenames.h \
930 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/go32exe.h \
931 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h \
933 coff-svm68k.lo: coff-svm68k.c coff-m68k.c $(INCDIR)/filenames.h \
934 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h \
935 $(INCDIR)/bfdlink.h coffcode.h coffswap.h
936 coff-tic30.lo: coff-tic30.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
937 $(INCDIR)/coff/tic30.h $(INCDIR)/coff/internal.h libcoff.h \
938 coffcode.h coffswap.h
939 coff-tic54x.lo: coff-tic54x.c $(INCDIR)/filenames.h \
940 $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h \
941 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
942 coff-tic80.lo: coff-tic80.c $(INCDIR)/bfdlink.h $(INCDIR)/filenames.h \
943 $(INCDIR)/coff/tic80.h $(INCDIR)/coff/internal.h libcoff.h \
944 coffcode.h coffswap.h
945 coff-u68k.lo: coff-u68k.c coff-m68k.c $(INCDIR)/filenames.h \
946 $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h libcoff.h \
947 $(INCDIR)/bfdlink.h coffcode.h coffswap.h
948 coff-we32k.lo: coff-we32k.c $(INCDIR)/filenames.h $(INCDIR)/coff/we32k.h \
949 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
950 coffcode.h coffswap.h
951 coff-w65.lo: coff-w65.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
952 $(INCDIR)/coff/w65.h $(INCDIR)/coff/internal.h libcoff.h \
953 coffcode.h coffswap.h
954 coff-z8k.lo: coff-z8k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
955 $(INCDIR)/coff/z8k.h $(INCDIR)/coff/internal.h libcoff.h \
956 coffcode.h coffswap.h
957 cofflink.lo: cofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
958 $(INCDIR)/coff/internal.h libcoff.h
959 dwarf1.lo: dwarf1.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \
960 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
961 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf.h
962 ecoff.lo: ecoff.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
963 $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h $(INCDIR)/aout/stab_gnu.h \
964 $(INCDIR)/aout/stab.def libaout.h $(INCDIR)/aout/aout64.h \
965 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
966 $(INCDIR)/coff/ecoff.h libcoff.h libecoff.h
967 ecofflink.lo: ecofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
968 $(INCDIR)/objalloc.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
969 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
970 $(INCDIR)/coff/ecoff.h libcoff.h libecoff.h
971 efi-app-ia32.lo: efi-app-ia32.c $(INCDIR)/filenames.h \
972 coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h \
973 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
975 elf.lo: elf.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
976 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
977 $(INCDIR)/elf/external.h
978 elf32-arc.lo: elf32-arc.c $(INCDIR)/filenames.h elf-bfd.h \
979 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
980 $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h \
982 elfarm-oabi.lo: elfarm-oabi.c $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \
983 $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \
984 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
985 elf32-arm.h elf32-target.h
986 elfarm-nabi.lo: elfarm-nabi.c $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \
987 $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \
988 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
989 elf32-arm.h elf32-target.h
990 elf32-avr.lo: elf32-avr.c $(INCDIR)/filenames.h elf-bfd.h \
991 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
992 $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h $(INCDIR)/elf/reloc-macros.h \
994 elf32-cris.lo: elf32-cris.c $(INCDIR)/filenames.h elf-bfd.h \
995 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
996 $(INCDIR)/bfdlink.h $(INCDIR)/elf/cris.h $(INCDIR)/elf/reloc-macros.h \
998 elf32-d10v.lo: elf32-d10v.c $(INCDIR)/filenames.h elf-bfd.h \
999 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1000 $(INCDIR)/bfdlink.h $(INCDIR)/elf/d10v.h $(INCDIR)/elf/reloc-macros.h \
1002 elf32-d30v.lo: elf32-d30v.c $(INCDIR)/filenames.h elf-bfd.h \
1003 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1004 $(INCDIR)/bfdlink.h $(INCDIR)/elf/d30v.h $(INCDIR)/elf/reloc-macros.h \
1006 elf32-fr30.lo: elf32-fr30.c $(INCDIR)/filenames.h elf-bfd.h \
1007 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1008 $(INCDIR)/bfdlink.h $(INCDIR)/elf/fr30.h $(INCDIR)/elf/reloc-macros.h \
1010 elf32-gen.lo: elf32-gen.c $(INCDIR)/filenames.h elf-bfd.h \
1011 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1012 $(INCDIR)/bfdlink.h elf32-target.h
1013 elf32-hppa.lo: elf32-hppa.c $(INCDIR)/filenames.h elf-bfd.h \
1014 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1015 $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h \
1016 libhppa.h elf32-hppa.h elf-hppa.h elf32-target.h
1017 elf32-i370.lo: elf32-i370.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1018 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1019 $(INCDIR)/elf/external.h $(INCDIR)/elf/i370.h elf32-target.h
1020 elf32-i386.lo: elf32-i386.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1021 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1022 $(INCDIR)/elf/external.h $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h \
1024 elf32-i860.lo: elf32-i860.c $(INCDIR)/filenames.h elf-bfd.h \
1025 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1026 $(INCDIR)/bfdlink.h $(INCDIR)/elf/i860.h $(INCDIR)/elf/reloc-macros.h \
1028 elf32-i960.lo: elf32-i960.c $(INCDIR)/filenames.h elf-bfd.h \
1029 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1030 $(INCDIR)/bfdlink.h $(INCDIR)/elf/i960.h $(INCDIR)/elf/reloc-macros.h \
1032 elf32-m32r.lo: elf32-m32r.c $(INCDIR)/filenames.h elf-bfd.h \
1033 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1034 $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/reloc-macros.h \
1036 elf32-m68k.lo: elf32-m68k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1037 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1038 $(INCDIR)/elf/external.h $(INCDIR)/elf/m68k.h $(INCDIR)/elf/reloc-macros.h \
1040 elf32-m68hc11.lo: elf32-m68hc11.c $(INCDIR)/filenames.h \
1041 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1042 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m68hc11.h \
1043 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1044 elf32-m68hc12.lo: elf32-m68hc12.c $(INCDIR)/filenames.h \
1045 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1046 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m68hc11.h \
1047 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1048 elf32-m88k.lo: elf32-m88k.c $(INCDIR)/filenames.h elf-bfd.h \
1049 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1050 $(INCDIR)/bfdlink.h elf32-target.h
1051 elf-m10200.lo: elf-m10200.c $(INCDIR)/filenames.h elf-bfd.h \
1052 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1053 $(INCDIR)/bfdlink.h elf32-target.h
1054 elf-m10300.lo: elf-m10300.c $(INCDIR)/filenames.h elf-bfd.h \
1055 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1056 $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/reloc-macros.h \
1058 elf32-mcore.lo: elf32-mcore.c $(INCDIR)/filenames.h \
1059 $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \
1060 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/mcore.h \
1061 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1062 elf32-mips.lo: elf32-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1063 genlink.h elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1064 $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1065 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
1066 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h ecoffswap.h \
1068 elf32-openrisc.lo: elf32-openrisc.c $(INCDIR)/filenames.h elf-bfd.h \
1069 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1070 $(INCDIR)/bfdlink.h $(INCDIR)/elf/openrisc.h $(INCDIR)/elf/reloc-macros.h \
1072 elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1073 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1074 $(INCDIR)/elf/external.h $(INCDIR)/elf/pj.h $(INCDIR)/elf/reloc-macros.h \
1076 elf32-ppc.lo: elf32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1077 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1078 $(INCDIR)/elf/external.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h \
1080 elf32-s390.lo: elf32-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1081 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1082 $(INCDIR)/elf/external.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h \
1084 elf32-sh.lo: elf32-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1085 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1086 $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \
1088 elf32-sh-lin.lo: elf32-sh-lin.c elf32-sh.c $(INCDIR)/filenames.h \
1089 $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \
1090 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sh.h \
1091 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1092 elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \
1093 $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \
1094 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/sparc.h \
1095 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/sparc.h \
1097 elf32-v850.lo: elf32-v850.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1098 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1099 $(INCDIR)/elf/external.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h \
1101 elf32.lo: elf32.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1102 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1103 $(INCDIR)/elf/external.h elfcore.h elflink.h
1104 elflink.lo: elflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1105 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1106 $(INCDIR)/elf/external.h
1107 epoc-pe-arm.lo: epoc-pe-arm.c pe-arm.c $(INCDIR)/filenames.h \
1108 coff-arm.c $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h \
1109 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1111 epoc-pei-arm.lo: epoc-pei-arm.c pei-arm.c $(INCDIR)/filenames.h \
1112 coff-arm.c $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h \
1113 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1115 hp300bsd.lo: hp300bsd.c $(INCDIR)/filenames.h libaout.h \
1116 $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1117 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1118 hp300hpux.lo: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \
1119 aoutx.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h libaout.h \
1120 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1121 $(INCDIR)/aout/ar.h aout-target.h
1122 som.lo: som.c $(INCDIR)/alloca-conf.h $(INCDIR)/filenames.h
1123 i386aout.lo: i386aout.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \
1124 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/stab_gnu.h \
1125 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1126 i386bsd.lo: i386bsd.c $(INCDIR)/filenames.h libaout.h \
1127 $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1128 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1129 i386dynix.lo: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \
1130 $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h libaout.h \
1131 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1132 $(INCDIR)/aout/ar.h aout-target.h
1133 i386freebsd.lo: i386freebsd.c freebsd.h $(INCDIR)/filenames.h \
1134 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1135 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1136 i386linux.lo: i386linux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \
1137 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1138 libaout.h $(INCDIR)/bfdlink.h aout-target.h
1139 i386lynx.lo: i386lynx.c $(INCDIR)/filenames.h libaout.h \
1140 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \
1141 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1142 i386msdos.lo: i386msdos.c $(INCDIR)/filenames.h libaout.h \
1144 i386netbsd.lo: i386netbsd.c netbsd.h $(INCDIR)/filenames.h \
1145 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1146 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1147 i386mach3.lo: i386mach3.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \
1148 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1149 libaout.h $(INCDIR)/bfdlink.h aout-target.h
1150 i386os9k.lo: i386os9k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1151 libaout.h $(INCDIR)/os9k.h
1152 ieee.lo: ieee.c $(INCDIR)/filenames.h $(INCDIR)/ieee.h \
1154 m68k4knetbsd.lo: m68k4knetbsd.c netbsd.h $(INCDIR)/filenames.h \
1155 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1156 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1157 m68klinux.lo: m68klinux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \
1158 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1159 libaout.h $(INCDIR)/bfdlink.h aout-target.h
1160 m68klynx.lo: m68klynx.c $(INCDIR)/filenames.h libaout.h \
1161 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \
1162 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1163 m68knetbsd.lo: m68knetbsd.c netbsd.h $(INCDIR)/filenames.h \
1164 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1165 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1166 m88kmach3.lo: m88kmach3.c $(INCDIR)/filenames.h libaout.h \
1167 $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1168 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1169 mipsbsd.lo: mipsbsd.c $(INCDIR)/filenames.h libaout.h \
1170 $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1171 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1172 newsos3.lo: newsos3.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \
1173 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1174 libaout.h $(INCDIR)/bfdlink.h aout-target.h
1175 nlm.lo: nlm.c $(INCDIR)/filenames.h libnlm.h $(INCDIR)/nlm/common.h \
1176 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h
1177 nlm32-i386.lo: nlm32-i386.c $(INCDIR)/filenames.h $(INCDIR)/nlm/i386-ext.h \
1178 libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
1179 $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h
1180 nlm32-sparc.lo: nlm32-sparc.c $(INCDIR)/filenames.h \
1181 $(INCDIR)/nlm/sparc32-ext.h libnlm.h $(INCDIR)/nlm/common.h \
1182 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \
1184 nlm32-ppc.lo: nlm32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/nlm/ppc-ext.h \
1185 libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
1186 $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h
1187 nlm32.lo: nlm32.c nlmcode.h $(INCDIR)/filenames.h libnlm.h \
1188 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h
1189 ns32knetbsd.lo: ns32knetbsd.c netbsd.h $(INCDIR)/filenames.h \
1190 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1191 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1192 oasys.lo: oasys.c $(INCDIR)/filenames.h $(INCDIR)/oasys.h \
1194 pc532-mach.lo: pc532-mach.c $(INCDIR)/filenames.h libaout.h \
1195 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \
1196 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1197 pdp11.lo: pdp11.c $(INCDIR)/filenames.h libaout.h $(INCDIR)/bfdlink.h \
1198 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1199 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1200 pe-arm.lo: pe-arm.c $(INCDIR)/filenames.h coff-arm.c \
1201 $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
1202 libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \
1204 pei-arm.lo: pei-arm.c $(INCDIR)/filenames.h coff-arm.c \
1205 $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
1206 libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \
1208 pe-i386.lo: pe-i386.c $(INCDIR)/filenames.h coff-i386.c \
1209 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
1210 libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \
1212 pei-i386.lo: pei-i386.c $(INCDIR)/filenames.h coff-i386.c \
1213 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
1214 libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \
1216 pe-mcore.lo: pe-mcore.c $(INCDIR)/filenames.h coff-mcore.c \
1217 $(INCDIR)/coff/mcore.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
1218 libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \
1220 pei-mcore.lo: pei-mcore.c $(INCDIR)/filenames.h coff-mcore.c \
1221 $(INCDIR)/coff/mcore.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
1222 libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \
1224 pe-ppc.lo: pe-ppc.c $(INCDIR)/filenames.h coff-ppc.c \
1225 $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/internal.h \
1226 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1228 pei-ppc.lo: pei-ppc.c $(INCDIR)/filenames.h coff-ppc.c \
1229 $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/internal.h \
1230 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1232 pe-sh.lo: pe-sh.c $(INCDIR)/filenames.h coff-sh.c $(INCDIR)/bfdlink.h \
1233 $(INCDIR)/coff/sh.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
1234 libcoff.h coffcode.h peicode.h libpei.h
1235 pei-sh.lo: pei-sh.c $(INCDIR)/filenames.h coff-sh.c \
1236 $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h $(INCDIR)/coff/internal.h \
1237 $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \
1239 pe-mips.lo: pe-mips.c $(INCDIR)/filenames.h $(INCDIR)/coff/mipspe.h \
1240 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1241 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1242 pei-mips.lo: pei-mips.c $(INCDIR)/filenames.h pe-mips.c \
1243 $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
1244 libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \
1246 ppcboot.lo: ppcboot.c $(INCDIR)/filenames.h
1247 reloc16.lo: reloc16.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1248 genlink.h $(INCDIR)/coff/internal.h libcoff.h
1249 riscix.lo: riscix.c $(INCDIR)/filenames.h libaout.h \
1250 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aout-target.h \
1251 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1252 sparclinux.lo: sparclinux.c $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \
1253 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1254 libaout.h $(INCDIR)/bfdlink.h aout-target.h
1255 sparclynx.lo: sparclynx.c $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h \
1256 libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1257 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1259 sparcnetbsd.lo: sparcnetbsd.c netbsd.h $(INCDIR)/filenames.h \
1260 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1261 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1262 sunos.lo: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \
1263 $(INCDIR)/filenames.h $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h \
1264 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1266 vaxnetbsd.lo: vaxnetbsd.c netbsd.h $(INCDIR)/filenames.h \
1267 libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
1268 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1269 versados.lo: versados.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h
1270 vms.lo: vms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1272 vms-gsd.lo: vms-gsd.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1274 vms-hdr.lo: vms-hdr.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1276 vms-misc.lo: vms-misc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1278 vms-tir.lo: vms-tir.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1280 xcofflink.lo: xcofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1281 $(INCDIR)/coff/internal.h libcoff.h
1282 aout64.lo: aout64.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1283 libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1284 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1285 coff-alpha.lo: coff-alpha.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1286 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
1287 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h \
1288 libcoff.h libecoff.h coffswap.h ecoffswap.h
1289 coff64-rs6000.lo: coff64-rs6000.c $(INCDIR)/filenames.h \
1290 $(INCDIR)/coff/internal.h $(INCDIR)/coff/rs6k64.h libcoff.h \
1291 $(INCDIR)/bfdlink.h xcoff-target.h coffcode.h coffswap.h
1292 demo64.lo: demo64.c aoutf1.h $(INCDIR)/filenames.h \
1293 $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \
1294 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1295 $(INCDIR)/aout/ar.h aout-target.h
1296 efi-app-ia64.lo: efi-app-ia64.c $(INCDIR)/filenames.h \
1297 coff-ia64.c $(INCDIR)/coff/ia64.h $(INCDIR)/coff/internal.h \
1298 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \
1300 elf64-x86-64.lo: elf64-x86-64.c $(INCDIR)/filenames.h \
1301 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1302 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/x86-64.h \
1303 $(INCDIR)/elf/reloc-macros.h elf64-target.h
1304 elf64-alpha.lo: elf64-alpha.c $(INCDIR)/filenames.h \
1305 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1306 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/alpha.h \
1307 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/internal.h \
1308 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
1309 $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h libcoff.h \
1310 libecoff.h ecoffswap.h elf64-target.h
1311 elf64-hppa.lo: elf64-hppa.c $(INCDIR)/alloca-conf.h \
1312 $(INCDIR)/filenames.h elf-bfd.h $(INCDIR)/elf/common.h \
1313 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1314 $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h libhppa.h \
1315 elf64-hppa.h elf-hppa.h elf64-target.h
1316 elf64-gen.lo: elf64-gen.c $(INCDIR)/filenames.h elf-bfd.h \
1317 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1318 $(INCDIR)/bfdlink.h elf64-target.h
1319 elf64-mips.lo: elf64-mips.c $(INCDIR)/filenames.h $(INCDIR)/aout/ar.h \
1320 $(INCDIR)/bfdlink.h genlink.h elf-bfd.h $(INCDIR)/elf/common.h \
1321 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h \
1322 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
1323 $(INCDIR)/coff/internal.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h \
1324 ecoffswap.h elf64-target.h
1325 elf64-s390.lo: elf64-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1326 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1327 $(INCDIR)/elf/external.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/reloc-macros.h \
1329 elf64-sparc.lo: elf64-sparc.c $(INCDIR)/filenames.h \
1330 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1331 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/sparc.h \
1332 $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
1334 elf64.lo: elf64.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \
1335 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1336 $(INCDIR)/elf/external.h elfcore.h elflink.h
1337 nlm32-alpha.lo: nlm32-alpha.c $(INCDIR)/filenames.h \
1338 $(INCDIR)/nlm/alpha-ext.h libnlm.h $(INCDIR)/nlm/common.h \
1339 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \
1341 nlm64.lo: nlm64.c nlmcode.h $(INCDIR)/filenames.h libnlm.h \
1342 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h
1343 aix386-core.lo: aix386-core.c $(INCDIR)/filenames.h \
1344 $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h libcoff.h \
1346 hpux-core.lo: hpux-core.c $(INCDIR)/filenames.h
1347 irix-core.lo: irix-core.c $(INCDIR)/filenames.h
1348 lynx-core.lo: lynx-core.c $(INCDIR)/filenames.h
1349 osf-core.lo: osf-core.c $(INCDIR)/filenames.h
1350 sco5-core.lo: sco5-core.c $(INCDIR)/filenames.h libaout.h \
1352 trad-core.lo: trad-core.c $(INCDIR)/filenames.h libaout.h \
1354 cisco-core.lo: cisco-core.c $(INCDIR)/filenames.h
1355 elf32-ia64.lo: elf32-ia64.c $(INCDIR)/filenames.h elf-bfd.h \
1356 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1357 $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h \
1358 $(INCDIR)/elf/reloc-macros.h elf32-target.h
1359 elf64-ia64.lo: elf64-ia64.c $(INCDIR)/filenames.h elf-bfd.h \
1360 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1361 $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h $(INCDIR)/elf/ia64.h \
1362 $(INCDIR)/elf/reloc-macros.h elf64-target.h
1363 peigen.lo: peigen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \
1364 $(INCDIR)/coff/i386.h $(INCDIR)/coff/pe.h libcoff.h \
1365 $(INCDIR)/bfdlink.h libpei.h
1366 pepigen.lo: pepigen.c $(INCDIR)/filenames.h $(INCDIR)/coff/internal.h \
1367 $(INCDIR)/coff/ia64.h $(INCDIR)/coff/pe.h libcoff.h \
1368 $(INCDIR)/bfdlink.h libpei.h
1369 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY