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 # bfd.h goes here, for now
19 # Writing S-records should be included in all (or at least most)
20 # *-*-coff, *-*-aout, etc., configurations, because people will want to
21 # be able to use objcopy to create S-records. (S-records are not useful
22 # for the debugger, so if you are downloading things as S-records you
23 # need two copies of the executable, one to download and one for the
26 archive.lo archures.lo bfd.lo cache.lo coffgen.lo corefile.lo \
27 format.lo init.lo libbfd.lo opncls.lo reloc.lo \
28 section.lo syms.lo targets.lo hash.lo linker.lo \
29 srec.lo binary.lo tekhex.lo ihex.lo stabs.lo stab-syms.lo
32 archive.c archures.c bfd.c cache.c coffgen.c corefile.c \
33 format.c init.c libbfd.c opncls.c reloc.c \
34 section.c syms.c targets.c hash.c linker.c \
35 srec.c binary.c tekhex.c ihex.c stabs.c stab-syms.c
37 # This list is alphabetized to make it easier to keep in sync
38 # with the decls and initializer in archures.c.
75 ALL_MACHINES_CFILES = \
111 # The .o files needed by all of the 32 bit vectors that are configured into
112 # target_vector in targets.c if configured with --enable-targets=all.
238 BFD32_BACKENDS_CFILES = \
363 # The .o files needed by all of the 64 bit vectors that are configured into
364 # target_vector in targets.c if configured with --enable-targets=all
365 # and --enable-64-bit-bfd.
378 BFD64_BACKENDS_CFILES = \
390 OPTIONAL_BACKENDS = \
400 OPTIONAL_BACKENDS_CFILES = \
410 # These are defined by configure.in:
411 WORDSIZE = @wordsize@
412 ALL_BACKENDS = @all_backends@
413 BFD_BACKENDS = @bfd_backends@
414 BFD_MACHINES = @bfd_machines@
415 TDEFAULTS = @tdefaults@
417 INCLUDES = -D_GNU_SOURCE @HDEFINES@ @COREFLAG@ @TDEFINES@ $(CSEARCH) $(CSWITCHES) -I$(srcdir)/../intl -I../intl
419 # C source files that correspond to .o's.
422 $(ALL_MACHINES_CFILES) \
423 $(BFD32_BACKENDS_CFILES) \
424 $(BFD64_BACKENDS_CFILES) \
425 $(OPTIONAL_BACKENDS_CFILES)
427 ## This is a list of all .h files which are in the source tree.
429 aout-target.h aoutf1.h aoutx.h coffcode.h coffswap.h \
430 ecoffswap.h elf32-arm.h elfcode.h elfcore.h \
431 elflink.h freebsd.h genlink.h go32stub.h libaout.h \
432 libbfd.h libcoff.h libecoff.h elf-bfd.h libhppa.h libieee.h \
433 libnlm.h liboasys.h libpei.h netbsd.h nlm-target.h nlmcode.h \
434 nlmswap.h ns32k.h peicode.h som.h vms.h
437 elf32-target.h elf64-target.h targmatch.h \
440 POTFILES = $(CFILES) $(SOURCE_HFILES)
442 po/POTFILES.in: @MAINT@ Makefile
443 for file in $(POTFILES); do echo $$file; done | sort > tmp \
444 && mv tmp $(srcdir)/po/POTFILES.in
448 # Various kinds of .o files to put in libbfd.a:
449 # BFD_BACKENDS Routines the configured targets need.
450 # BFD_MACHINES Architecture-specific routines the configured targets need.
451 # COREFILE Core file routines for a native configuration
452 OFILES = $(BFD_BACKENDS) $(BFD_MACHINES) @COREFILE@
454 stamp-ofiles: Makefile
457 for i in $(OFILES) ; do \
464 $(SHELL) $(srcdir)/../move-if-change tofiles ofiles
467 ofiles: stamp-ofiles ; @true
469 libbfd_la_SOURCES = $(BFD_LIBS_CFILES)
470 libbfd_la_DEPENDENCIES = $(OFILES) ofiles
471 libbfd_la_LIBADD = `cat ofiles` @WIN32LIBADD@
472 libbfd_la_LDFLAGS = -release $(VERSION) @WIN32LDFLAGS@
474 # libtool will build .libs/libbfd.a. We create libbfd.a in the build
475 # directory so that we don't have to convert all the programs that use
476 # libbfd.a simultaneously. This is a hack which should be removed if
477 # everything else starts using libtool. FIXME.
479 noinst_LIBRARIES = libbfd.a
483 libtooldir=`$(LIBTOOL) --config | sed -n -e 's/^objdir=//p'`; \
484 if [ -f $$libtooldir/libbfd.a ]; then \
485 cp $$libtooldir/libbfd.a libbfd.tmp; \
486 $(SHELL) $(srcdir)/../move-if-change libbfd.tmp libbfd.a; \
490 libbfd.a: stamp-lib ; @true
492 # This file holds an array associating configuration triplets and
493 # vector names. It is built from config.bfd. It is not compiled by
494 # itself, but is included by targets.c.
495 targmatch.h: config.bfd targmatch.sed
497 sed -f $(srcdir)/targmatch.sed < $(srcdir)/config.bfd > targmatch.new
498 mv -f targmatch.new targmatch.h
500 # When compiling archures.c and targets.c, supply the default target
501 # info from configure.
503 targets.lo: targets.c config.status
504 $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/targets.c
506 archures.lo: archures.c config.status
507 $(LIBTOOL) --mode=compile $(COMPILE) -c $(TDEFAULTS) $(srcdir)/archures.c
509 elf32-target.h : elfxx-target.h
511 sed -e s/NN/32/g < $(srcdir)/elfxx-target.h > elf32-target.new
512 mv -f elf32-target.new elf32-target.h
514 elf64-target.h : elfxx-target.h
516 sed -e s/NN/64/g < $(srcdir)/elfxx-target.h > elf64-target.new
517 mv -f elf64-target.new elf64-target.h
519 BFD_H_DEPS= $(INCDIR)/ansidecl.h
520 LOCAL_H_DEPS= libbfd.h sysdep.h config.h
521 $(BFD_LIBS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
522 $(BFD_MACHINES): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
523 $(BFD_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
524 $(OPTIONAL_BACKENDS): $(BFD_H) $(BFD_H_DEPS) $(LOCAL_H_DEPS)
526 # Install BFD include file, and others that it needs.
527 install-data-local: $(BFD_H)
529 $(mkinstalldirs) $(includedir)
530 $(INSTALL_DATA) $(BFD_H) $(includedir)/bfd.h
531 $(INSTALL_DATA) $(INCDIR)/ansidecl.h $(includedir)/ansidecl.h
532 $(INSTALL_DATA) $(INCDIR)/bfdlink.h $(includedir)/bfdlink.h
534 # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
535 DEP: dep.sed $(CFILES) $(HFILES) bfd.h
537 $(MAKE) MKDEP=$(MKDEP) DEP1
538 sed -f dep.sed <DEP1 >DEP
540 # This rule really wants a mkdep that runs "gcc -MM".
541 # The NetBSD mkdep overwrites any existing file contents, and doesn't insert
542 # the "DO NOT DELETE" line.
543 # Other mkdep versions require a file that already exists, and do insert it.
544 # Hence the weirdness....
547 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
549 $(MKDEP) -f DEP2a $(INCLUDES) $(CFLAGS) $?
550 sed -e '/DO NOT DELETE/d' -e '/^$$/d' < DEP2a >> DEP2
552 $(SHELL) $(srcdir)/../move-if-change DEP2 DEP1
554 dep.sed: dep-in.sed config.status
555 sed <$(srcdir)/dep-in.sed >dep.sed \
556 -e 's!@BFD_H@!$(BFD_H)!' \
557 -e 's!@INCDIR@!$(INCDIR)!' \
558 -e 's!@SRCDIR@!$(srcdir)!'
561 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
562 cat DEP >> tmp-Makefile
563 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
566 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
567 cat DEP >> tmp-Makefile.in
568 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
571 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
572 cat DEP >> tmp-Makefile.am
573 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
575 host-aout.lo: Makefile
577 # The following program can be used to generate a simple config file
578 # which can be folded into an h-XXX file for a new host, with some editing.
579 aout-params.h: gen-aout
580 ./gen-aout host > aout-params.h
581 gen-aout: $(srcdir)/gen-aout.c Makefile
582 $(CC) -o gen-aout $(CFLAGS) $(LFLAGS) $(srcdir)/gen-aout.c
584 $(BFD_H): stmp-bfd-h ; @true
586 stmp-bfd-h: bfd-in3.h
588 cp bfd-in3.h bfd-tmp.h
589 $(SHELL) $(srcdir)/../move-if-change bfd-tmp.h $(BFD_H)
593 BFD_H_FILES = bfd-in.h init.c opncls.c libbfd.c section.c archures.c \
594 reloc.c syms.c bfd.c archive.c corefile.c targets.c format.c
595 LIBBFD_H_FILES = libbfd-in.h init.c libbfd.c cache.c reloc.c archures.c elf.c
596 LIBCOFF_H_FILES = libcoff-in.h coffcode.h
598 # Could really use a "copy-if-change"...
600 (cd $(docdir); $(MAKE) protos $(FLAGS_TO_PASS))
601 cp $(docdir)/bfd.h bfd-in2.h-new
602 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
603 cp $(docdir)/libbfd.h libbfd.h-new
604 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
605 cp $(docdir)/libcoff.h libcoff.h-new
606 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
608 # We only rebuild the header files automatically if we have been
609 # configured with --enable-maintainer-mode.
611 $(srcdir)/bfd-in2.h: @MAINT@ stmp-bin2-h ; @true
612 stmp-bin2-h: $(BFD_H_FILES)
613 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) bfd.h)
614 cp $(docdir)/bfd.h bfd-in2.h-new
615 $(SHELL) $(srcdir)/../move-if-change bfd-in2.h-new $(srcdir)/bfd-in2.h
618 $(srcdir)/libbfd.h: @MAINT@ stmp-lbfd-h ; @true
619 stmp-lbfd-h: $(LIBBFD_H_FILES)
620 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libbfd.h)
621 cp $(docdir)/libbfd.h libbfd.h-new
622 $(SHELL) $(srcdir)/../move-if-change libbfd.h-new $(srcdir)/libbfd.h
625 $(srcdir)/libcoff.h: @MAINT@ stmp-lcoff-h ; @true
626 stmp-lcoff-h: $(LIBCOFF_H_FILES)
627 (cd $(docdir); $(MAKE) $(FLAGS_TO_PASS) libcoff.h)
628 cp $(docdir)/libcoff.h libcoff.h-new
629 $(SHELL) $(srcdir)/../move-if-change libcoff.h-new $(srcdir)/libcoff.h
632 MOSTLYCLEANFILES = elf32-target.h elf64-target.h ofiles stamp-ofiles \
635 CLEANFILES = bfd.h dep.sed stmp-bfd-h DEP DEP1 libbfd.a stamp-lib \
636 stmp-bin2-h stmp-lbfd-h stmp-lcoff-h
638 # We want to rerun configure if config.bfd or configure.host change.
639 config.status: $(srcdir)/configure $(srcdir)/config.bfd $(srcdir)/configure.host
640 $(SHELL) ./config.status --recheck
643 elfarm-oabi.lo: elfarm-oabi.c elf32-arm.h elf-bfd.h $(INCDIR)/elf/common.h \
644 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
645 $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
647 # What appears below is generated by a hacked mkdep using gcc -MM.
648 elfarm-nabi.lo: elfarm-nabi.c elf32-arm.h elf-bfd.h $(INCDIR)/elf/common.h \
649 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
650 $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
652 # What appears below is generated by a hacked mkdep using gcc -MM.
654 # DO NOT DELETE THIS LINE -- mkdep uses it.
655 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
656 archive.lo: archive.c $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h
657 archures.lo: archures.c
658 bfd.lo: bfd.c $(INCDIR)/libiberty.h $(INCDIR)/bfdlink.h \
659 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h libcoff.h \
660 libecoff.h $(INCDIR)/coff/ecoff.h elf-bfd.h $(INCDIR)/elf/common.h \
661 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
663 coffgen.lo: coffgen.c $(INCDIR)/coff/internal.h libcoff.h \
665 corefile.lo: corefile.c
669 opncls.lo: opncls.c $(INCDIR)/objalloc.h
670 reloc.lo: reloc.c $(INCDIR)/bfdlink.h
671 section.lo: section.c $(INCDIR)/bfdlink.h
672 syms.lo: syms.c $(INCDIR)/bfdlink.h $(INCDIR)/aout/stab_gnu.h \
673 $(INCDIR)/aout/stab.def
674 targets.lo: targets.c $(INCDIR)/fnmatch.h targmatch.h
675 hash.lo: hash.c $(INCDIR)/objalloc.h
676 linker.lo: linker.c $(INCDIR)/bfdlink.h genlink.h
677 srec.lo: srec.c $(INCDIR)/libiberty.h
679 tekhex.lo: tekhex.c $(INCDIR)/libiberty.h
680 ihex.lo: ihex.c $(INCDIR)/libiberty.h
681 stabs.lo: stabs.c $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
682 stab-syms.lo: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \
683 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def
684 cpu-a29k.lo: cpu-a29k.c
685 cpu-alpha.lo: cpu-alpha.c
686 cpu-arc.lo: cpu-arc.c
687 cpu-arm.lo: cpu-arm.c
688 cpu-d10v.lo: cpu-d10v.c
689 cpu-d30v.lo: cpu-d30v.c
690 cpu-fr30.lo: cpu-fr30.c
691 cpu-h8300.lo: cpu-h8300.c
692 cpu-h8500.lo: cpu-h8500.c
693 cpu-hppa.lo: cpu-hppa.c
694 cpu-i386.lo: cpu-i386.c
695 cpu-i860.lo: cpu-i860.c
696 cpu-i960.lo: cpu-i960.c
697 cpu-m32r.lo: cpu-m32r.c
698 cpu-m68k.lo: cpu-m68k.c
699 cpu-m88k.lo: cpu-m88k.c
700 cpu-m10200.lo: cpu-m10200.c
701 cpu-m10300.lo: cpu-m10300.c
702 cpu-mcore.lo: cpu-mcore.c
703 cpu-mips.lo: cpu-mips.c
704 cpu-ns32k.lo: cpu-ns32k.c ns32k.h
706 cpu-powerpc.lo: cpu-powerpc.c
707 cpu-rs6000.lo: cpu-rs6000.c
709 cpu-sparc.lo: cpu-sparc.c
710 cpu-tic30.lo: cpu-tic30.c
711 cpu-tic80.lo: cpu-tic80.c
712 cpu-v850.lo: cpu-v850.c
713 cpu-vax.lo: cpu-vax.c
714 cpu-we32k.lo: cpu-we32k.c
715 cpu-w65.lo: cpu-w65.c
716 cpu-z8k.lo: cpu-z8k.c
717 aout-adobe.lo: aout-adobe.c $(INCDIR)/aout/adobe.h \
718 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h \
720 aout-arm.lo: aout-arm.c libaout.h $(INCDIR)/bfdlink.h \
721 $(INCDIR)/aout/aout64.h aoutx.h $(INCDIR)/aout/stab_gnu.h \
722 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
723 aout-ns32k.lo: aout-ns32k.c $(INCDIR)/aout/aout64.h \
724 ns32k.h libaout.h $(INCDIR)/bfdlink.h
725 aout-sparcle.lo: aout-sparcle.c $(INCDIR)/bfdlink.h \
726 libaout.h aoutf1.h $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h \
727 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
729 aout-tic30.lo: aout-tic30.c libaout.h $(INCDIR)/bfdlink.h \
730 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
731 $(INCDIR)/aout/ar.h aoutx.h
732 aout0.lo: aout0.c aoutf1.h $(INCDIR)/aout/sun4.h libaout.h \
733 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
734 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
735 aout32.lo: aout32.c aoutx.h $(INCDIR)/bfdlink.h libaout.h \
736 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
738 armnetbsd.lo: armnetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \
739 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
740 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
741 bout.lo: bout.c $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/bout.h \
742 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h
743 cf-i386lynx.lo: cf-i386lynx.c coff-i386.c $(INCDIR)/coff/i386.h \
744 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
745 coffcode.h coffswap.h
746 cf-m68klynx.lo: cf-m68klynx.c coff-m68k.c $(INCDIR)/coff/m68k.h \
747 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
748 coffcode.h coffswap.h
749 cf-sparclynx.lo: cf-sparclynx.c coff-sparc.c $(INCDIR)/coff/sparc.h \
750 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
751 coffcode.h coffswap.h
752 coff-a29k.lo: coff-a29k.c $(INCDIR)/coff/a29k.h $(INCDIR)/coff/internal.h \
753 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
754 coff-apollo.lo: coff-apollo.c $(INCDIR)/coff/apollo.h \
755 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
756 coffcode.h coffswap.h
757 coff-arm.lo: coff-arm.c $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h \
758 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
759 coff-aux.lo: coff-aux.c $(INCDIR)/coff/aux-coff.h $(INCDIR)/coff/internal.h \
760 $(INCDIR)/coff/m68k.h coff-m68k.c libcoff.h $(INCDIR)/bfdlink.h \
761 coffcode.h coffswap.h
762 coff-h8300.lo: coff-h8300.c $(INCDIR)/bfdlink.h genlink.h \
763 $(INCDIR)/coff/h8300.h $(INCDIR)/coff/internal.h libcoff.h \
764 coffcode.h coffswap.h
765 coff-h8500.lo: coff-h8500.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/h8500.h \
766 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
767 coff-i386.lo: coff-i386.c $(INCDIR)/coff/i386.h $(INCDIR)/coff/internal.h \
768 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
769 coff-i860.lo: coff-i860.c $(INCDIR)/coff/i860.h $(INCDIR)/coff/internal.h \
770 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
771 coff-go32.lo: coff-go32.c coff-i386.c $(INCDIR)/coff/i386.h \
772 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
773 coffcode.h coffswap.h
774 coff-i960.lo: coff-i960.c $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h \
775 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
776 coff-m68k.lo: coff-m68k.c $(INCDIR)/coff/m68k.h $(INCDIR)/coff/internal.h \
777 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
778 coff-m88k.lo: coff-m88k.c $(INCDIR)/coff/m88k.h $(INCDIR)/coff/internal.h \
779 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h
780 coff-mips.lo: coff-mips.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
781 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
782 $(INCDIR)/coff/mips.h libcoff.h libecoff.h coffswap.h \
784 coff-pmac.lo: coff-pmac.c coff-rs6000.c $(INCDIR)/coff/internal.h \
785 $(INCDIR)/coff/rs6000.h libcoff.h $(INCDIR)/bfdlink.h \
786 coffcode.h coffswap.h
787 coff-rs6000.lo: coff-rs6000.c $(INCDIR)/coff/internal.h \
788 $(INCDIR)/coff/rs6000.h libcoff.h $(INCDIR)/bfdlink.h \
789 coffcode.h coffswap.h
790 coff-sh.lo: coff-sh.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \
791 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
792 coff-sparc.lo: coff-sparc.c $(INCDIR)/coff/sparc.h \
793 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
794 coffcode.h coffswap.h
795 coff-stgo32.lo: coff-stgo32.c coff-i386.c $(INCDIR)/coff/i386.h \
796 $(INCDIR)/coff/internal.h $(INCDIR)/coff/go32exe.h \
797 libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h \
799 coff-svm68k.lo: coff-svm68k.c coff-m68k.c $(INCDIR)/coff/m68k.h \
800 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
801 coffcode.h coffswap.h
802 coff-tic30.lo: coff-tic30.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic30.h \
803 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
804 coff-tic80.lo: coff-tic80.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic80.h \
805 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
806 coff-u68k.lo: coff-u68k.c coff-m68k.c $(INCDIR)/coff/m68k.h \
807 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
808 coffcode.h coffswap.h
809 coff-we32k.lo: coff-we32k.c $(INCDIR)/coff/we32k.h \
810 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \
811 coffcode.h coffswap.h
812 coff-w65.lo: coff-w65.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/w65.h \
813 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
814 coff-z8k.lo: coff-z8k.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/z8k.h \
815 $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h
816 cofflink.lo: cofflink.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
818 dwarf1.lo: dwarf1.c $(INCDIR)/libiberty.h elf-bfd.h \
819 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
820 $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf.h
821 dwarf2.lo: dwarf2.c $(INCDIR)/libiberty.h elf-bfd.h \
822 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
823 $(INCDIR)/bfdlink.h $(INCDIR)/elf/dwarf2.h
824 ecoff.lo: ecoff.c $(INCDIR)/bfdlink.h $(INCDIR)/aout/ar.h \
825 $(INCDIR)/aout/ranlib.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
826 libaout.h $(INCDIR)/aout/aout64.h $(INCDIR)/coff/internal.h \
827 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
829 ecofflink.lo: ecofflink.c $(INCDIR)/bfdlink.h $(INCDIR)/objalloc.h \
830 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/coff/internal.h \
831 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
833 elf.lo: elf.c $(INCDIR)/bfdlink.h elf-bfd.h $(INCDIR)/elf/common.h \
834 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
835 elf32-arc.lo: elf32-arc.c elf-bfd.h $(INCDIR)/elf/common.h \
836 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
837 $(INCDIR)/elf/arc.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
838 elfarm-oabi.lo: elfarm-oabi.c $(INCDIR)/elf/arm-oabi.h \
839 $(INCDIR)/elf/reloc-macros.h elf-bfd.h $(INCDIR)/elf/common.h \
840 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
841 elf32-arm.h elf32-target.h
842 elfarm-nabi.lo: elfarm-nabi.c $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \
843 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
844 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h elf32-arm.h \
846 elf32-d10v.lo: elf32-d10v.c elf-bfd.h $(INCDIR)/elf/common.h \
847 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
849 elf32-d30v.lo: elf32-d30v.c elf-bfd.h $(INCDIR)/elf/common.h \
850 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
852 elf32-fr30.lo: elf32-fr30.c elf-bfd.h $(INCDIR)/elf/common.h \
853 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
854 $(INCDIR)/elf/fr30.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
855 elf32-gen.lo: elf32-gen.c elf-bfd.h $(INCDIR)/elf/common.h \
856 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
858 elf32-i370.lo: elf32-i370.c elf-bfd.h $(INCDIR)/elf/common.h \
859 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
861 elf32-i386.lo: elf32-i386.c $(INCDIR)/bfdlink.h elf-bfd.h \
862 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
863 $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
864 elf32-i860.lo: elf32-i860.c elf-bfd.h $(INCDIR)/elf/common.h \
865 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
867 elf32-i960.lo: elf32-i960.c elf-bfd.h $(INCDIR)/elf/common.h \
868 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
869 $(INCDIR)/elf/i960.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
870 elf32-m32r.lo: elf32-m32r.c elf-bfd.h $(INCDIR)/elf/common.h \
871 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
872 $(INCDIR)/elf/m32r.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
873 elf32-m68k.lo: elf32-m68k.c $(INCDIR)/bfdlink.h elf-bfd.h \
874 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
875 $(INCDIR)/elf/m68k.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
876 elf32-m88k.lo: elf32-m88k.c elf-bfd.h $(INCDIR)/elf/common.h \
877 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
879 elf-m10200.lo: elf-m10200.c elf-bfd.h $(INCDIR)/elf/common.h \
880 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
882 elf-m10300.lo: elf-m10300.c elf-bfd.h $(INCDIR)/elf/common.h \
883 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
884 $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/reloc-macros.h \
886 elf32-mcore.lo: elf32-mcore.c $(INCDIR)/bfdlink.h elf-bfd.h \
887 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
888 $(INCDIR)/elf/mcore.h $(INCDIR)/elf/reloc-macros.h \
890 elf32-mips.lo: elf32-mips.c $(INCDIR)/bfdlink.h genlink.h \
891 elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
892 $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
893 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
894 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h ecoffswap.h \
896 elf32-pj.lo: elf32-pj.c $(INCDIR)/bfdlink.h elf-bfd.h \
897 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
898 $(INCDIR)/elf/pj.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
899 elf32-ppc.lo: elf32-ppc.c $(INCDIR)/bfdlink.h elf-bfd.h \
900 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
901 $(INCDIR)/elf/ppc.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
902 elf32-sh.lo: elf32-sh.c $(INCDIR)/bfdlink.h elf-bfd.h \
903 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
904 $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
905 elf32-sparc.lo: elf32-sparc.c $(INCDIR)/bfdlink.h elf-bfd.h \
906 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
907 $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
909 elf32-v850.lo: elf32-v850.c $(INCDIR)/bfdlink.h elf-bfd.h \
910 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
911 $(INCDIR)/elf/v850.h $(INCDIR)/elf/reloc-macros.h elf32-target.h
912 elf32.lo: elf32.c elfcode.h $(INCDIR)/bfdlink.h elf-bfd.h \
913 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
915 elflink.lo: elflink.c $(INCDIR)/bfdlink.h elf-bfd.h \
916 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h
917 epoc-pe-arm.lo: epoc-pe-arm.c pe-arm.c coff-arm.c $(INCDIR)/coff/arm.h \
918 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
919 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
920 epoc-pei-arm.lo: epoc-pei-arm.c pei-arm.c coff-arm.c \
921 $(INCDIR)/coff/arm.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h \
922 libcoff.h $(INCDIR)/bfdlink.h coffcode.h peicode.h \
924 hp300bsd.lo: hp300bsd.c libaout.h $(INCDIR)/bfdlink.h \
925 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
926 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
927 hp300hpux.lo: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \
928 aoutx.h $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \
929 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
932 i386aout.lo: i386aout.c $(INCDIR)/aout/aout64.h libaout.h \
933 $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/stab_gnu.h \
934 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
935 i386bsd.lo: i386bsd.c libaout.h $(INCDIR)/bfdlink.h \
936 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
937 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
938 i386dynix.lo: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \
939 $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/aout/aout64.h \
940 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
942 i386freebsd.lo: i386freebsd.c freebsd.h libaout.h $(INCDIR)/bfdlink.h \
943 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
944 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
945 i386linux.lo: i386linux.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
946 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \
947 $(INCDIR)/bfdlink.h aout-target.h
948 i386lynx.lo: i386lynx.c libaout.h $(INCDIR)/bfdlink.h \
949 $(INCDIR)/aout/aout64.h aout-target.h $(INCDIR)/aout/stab_gnu.h \
950 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
951 i386msdos.lo: i386msdos.c libaout.h $(INCDIR)/bfdlink.h
952 i386netbsd.lo: i386netbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \
953 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
954 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
955 i386mach3.lo: i386mach3.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
956 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \
957 $(INCDIR)/bfdlink.h aout-target.h
958 i386os9k.lo: i386os9k.c $(INCDIR)/bfdlink.h libaout.h \
960 ieee.lo: ieee.c $(INCDIR)/ieee.h libieee.h
961 m68k4knetbsd.lo: m68k4knetbsd.c netbsd.h libaout.h \
962 $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \
963 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
964 m68klinux.lo: m68klinux.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
965 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \
966 $(INCDIR)/bfdlink.h aout-target.h
967 m68klynx.lo: m68klynx.c libaout.h $(INCDIR)/bfdlink.h \
968 $(INCDIR)/aout/aout64.h aout-target.h $(INCDIR)/aout/stab_gnu.h \
969 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
970 m68knetbsd.lo: m68knetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \
971 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
972 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
973 m88kmach3.lo: m88kmach3.c libaout.h $(INCDIR)/bfdlink.h \
974 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
975 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
976 mipsbsd.lo: mipsbsd.c libaout.h $(INCDIR)/bfdlink.h \
977 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
978 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
979 newsos3.lo: newsos3.c $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
980 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h libaout.h \
981 $(INCDIR)/bfdlink.h aout-target.h
982 nlm.lo: nlm.c libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
983 $(INCDIR)/nlm/external.h
984 nlm32-i386.lo: nlm32-i386.c $(INCDIR)/nlm/i386-ext.h \
985 libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
986 $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h
987 nlm32-sparc.lo: nlm32-sparc.c $(INCDIR)/nlm/sparc32-ext.h \
988 libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
989 $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h
990 nlm32-ppc.lo: nlm32-ppc.c $(INCDIR)/nlm/ppc-ext.h libnlm.h \
991 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \
992 nlmswap.h nlm-target.h
993 nlm32.lo: nlm32.c nlmcode.h libnlm.h $(INCDIR)/nlm/common.h \
994 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h
995 ns32knetbsd.lo: ns32knetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \
996 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
997 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
998 oasys.lo: oasys.c $(INCDIR)/oasys.h liboasys.h
999 pc532-mach.lo: pc532-mach.c libaout.h $(INCDIR)/bfdlink.h \
1000 $(INCDIR)/aout/aout64.h aout-target.h $(INCDIR)/aout/stab_gnu.h \
1001 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1002 pe-arm.lo: pe-arm.c coff-arm.c $(INCDIR)/coff/arm.h \
1003 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1004 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1005 pei-arm.lo: pei-arm.c coff-arm.c $(INCDIR)/coff/arm.h \
1006 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1007 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1008 pe-i386.lo: pe-i386.c coff-i386.c $(INCDIR)/coff/i386.h \
1009 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1010 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1011 pei-i386.lo: pei-i386.c coff-i386.c $(INCDIR)/coff/i386.h \
1012 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1013 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1014 pe-mcore.lo: pe-mcore.c coff-mcore.c $(INCDIR)/coff/mcore.h \
1015 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1016 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1017 pei-mcore.lo: pei-mcore.c coff-mcore.c $(INCDIR)/coff/mcore.h \
1018 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1019 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1020 pe-ppc.lo: pe-ppc.c coff-ppc.c $(INCDIR)/coff/powerpc.h \
1021 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1022 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1023 pei-ppc.lo: pei-ppc.c coff-ppc.c $(INCDIR)/coff/powerpc.h \
1024 $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \
1025 $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h
1026 peigen.lo: peigen.c $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h \
1027 $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h
1028 ppcboot.lo: ppcboot.c
1029 reloc16.lo: reloc16.c $(INCDIR)/bfdlink.h genlink.h \
1030 $(INCDIR)/coff/internal.h libcoff.h
1031 riscix.lo: riscix.c libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1032 aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1034 sparclinux.lo: sparclinux.c $(INCDIR)/aout/aout64.h \
1035 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1036 libaout.h $(INCDIR)/bfdlink.h aout-target.h
1037 sparclynx.lo: sparclynx.c $(INCDIR)/aout/sun4.h libaout.h \
1038 $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1039 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
1040 sparcnetbsd.lo: sparcnetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \
1041 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1042 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1043 sunos.lo: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \
1044 $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1045 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h
1046 vaxnetbsd.lo: vaxnetbsd.c netbsd.h libaout.h $(INCDIR)/bfdlink.h \
1047 aout-target.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
1048 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h
1049 versados.lo: versados.c $(INCDIR)/libiberty.h
1050 vms.lo: vms.c $(INCDIR)/bfdlink.h vms.h
1051 vms-gsd.lo: vms-gsd.c $(INCDIR)/bfdlink.h vms.h
1052 vms-hdr.lo: vms-hdr.c $(INCDIR)/bfdlink.h vms.h
1053 vms-misc.lo: vms-misc.c $(INCDIR)/bfdlink.h vms.h
1054 vms-tir.lo: vms-tir.c $(INCDIR)/bfdlink.h vms.h
1055 xcofflink.lo: xcofflink.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
1057 aout64.lo: aout64.c aoutx.h $(INCDIR)/bfdlink.h libaout.h \
1058 $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
1060 coff-alpha.lo: coff-alpha.c $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
1061 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h \
1062 $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h libcoff.h \
1063 libecoff.h coffswap.h ecoffswap.h
1064 demo64.lo: demo64.c aoutf1.h $(INCDIR)/aout/sun4.h \
1065 libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \
1066 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \
1068 elf64-alpha.lo: elf64-alpha.c elf-bfd.h $(INCDIR)/elf/common.h \
1069 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1070 $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \
1071 $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \
1072 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h \
1073 libcoff.h libecoff.h ecoffswap.h elf64-target.h
1074 elf64-gen.lo: elf64-gen.c elf-bfd.h $(INCDIR)/elf/common.h \
1075 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1077 elf64-mips.lo: elf64-mips.c $(INCDIR)/aout/ar.h $(INCDIR)/bfdlink.h \
1078 genlink.h elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
1079 $(INCDIR)/elf/external.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \
1080 $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \
1081 $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h ecoffswap.h \
1083 elf64-sparc.lo: elf64-sparc.c elf-bfd.h $(INCDIR)/elf/common.h \
1084 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
1085 $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \
1087 elf64.lo: elf64.c elfcode.h $(INCDIR)/bfdlink.h elf-bfd.h \
1088 $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
1090 nlm32-alpha.lo: nlm32-alpha.c $(INCDIR)/nlm/alpha-ext.h \
1091 libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
1092 $(INCDIR)/nlm/external.h nlmswap.h nlm-target.h
1093 nlm64.lo: nlm64.c nlmcode.h libnlm.h $(INCDIR)/nlm/common.h \
1094 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h
1095 aix386-core.lo: aix386-core.c $(INCDIR)/coff/i386.h \
1096 $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h
1097 hpux-core.lo: hpux-core.c
1098 irix-core.lo: irix-core.c
1099 lynx-core.lo: lynx-core.c
1100 osf-core.lo: osf-core.c
1101 sco5-core.lo: sco5-core.c libaout.h $(INCDIR)/bfdlink.h
1102 trad-core.lo: trad-core.c libaout.h $(INCDIR)/bfdlink.h \
1104 cisco-core.lo: cisco-core.c
1105 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY