From 9e097a72c91d18b86c53ce98e9a9d32d9df899de Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Tue, 26 May 2009 03:19:28 +0000 Subject: [PATCH] * dep-in.sed: Don't modify .o to .lo here. Output one filename per line with all lines having continuation backslash. Prefix first line with "A", following lines with "B". * Makefile.am (DEP): Don't use dep.sed here. (DEP1): Run $MKDEP on single files, modify .o to .lo here. Use dep.sed here on dependencies, sort and uniq. * Makefile.in: Regenerate. --- bfd/ChangeLog | 10 + bfd/Makefile.am | 3884 +++++++++++++++++++++++++++++++----------- bfd/Makefile.in | 3892 ++++++++++++++++++++++++++++++++----------- bfd/dep-in.sed | 13 +- opcodes/ChangeLog | 10 + opcodes/Makefile.am | 2264 +++++++++++++++++++------ opcodes/Makefile.in | 2264 +++++++++++++++++++------ opcodes/dep-in.sed | 11 +- 8 files changed, 9469 insertions(+), 2879 deletions(-) diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 5d24be700a..2d8a5e61ed 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,13 @@ +2009-05-26 Alan Modra + + * dep-in.sed: Don't modify .o to .lo here. Output one filename + per line with all lines having continuation backslash. Prefix + first line with "A", following lines with "B". + * Makefile.am (DEP): Don't use dep.sed here. + (DEP1): Run $MKDEP on single files, modify .o to .lo here. Use + dep.sed here on dependencies, sort and uniq. + * Makefile.in: Regenerate. + 2009-05-25 Tristan Gingold * makefile.vms: Add verilog.obj to object list OBJS. diff --git a/bfd/Makefile.am b/bfd/Makefile.am index 258551cdc8..62e0b297a9 100644 --- a/bfd/Makefile.am +++ b/bfd/Makefile.am @@ -909,18 +909,23 @@ uninstall_libbfd: DEP: dep.sed $(CFILES) $(HFILES) bfd.h rm -f DEP1 $(MAKE) MKDEP="$(MKDEP)" DEP1 - sed -f dep.sed < DEP1 > DEPA - echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA - if grep ' /' DEPA > /dev/null 2> /dev/null; then \ + echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEP1 + if grep ' /' DEP1 > /dev/null 2> /dev/null; then \ echo 'make DEP failed!'; exit 1; \ else \ - mv -f DEPA $@; \ + mv -f DEP1 $@; \ fi DEP1: $(CFILES) echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2 - $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2 + for f in $?; do \ + $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ + sed -n -e '1s/\.o: .*/.lo: \\/p' -e q < DEPA >> DEP2; \ + sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ + done + rm -f DEPA mv -f DEP2 $@ dep.sed: dep-in.sed config.status @@ -1034,968 +1039,2987 @@ bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in # DO NOT DELETE THIS LINE -- mkdep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. -archive.lo: archive.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h \ +archive.lo: \ + archive.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/ranlib.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ $(INCDIR)/safe-ctype.h -archures.lo: archures.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +archures.lo: \ + archures.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/safe-ctype.h -bfd.lo: bfd.c $(INCDIR)/filenames.h bfdver.h $(INCDIR)/libiberty.h \ - $(INCDIR)/demangle.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - libcoff.h libecoff.h $(INCDIR)/coff/ecoff.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h -bfdio.lo: bfdio.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -bfdwin.lo: bfdwin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cache.lo: cache.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +bfd.lo: \ + bfd.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/demangle.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h \ + bfdver.h \ + elf-bfd.h \ + libcoff.h \ + libecoff.h +bfdio.lo: \ + bfdio.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +bfdwin.lo: \ + bfdwin.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cache.lo: \ + cache.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -coffgen.lo: coffgen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h -corefile.lo: corefile.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -format.lo: format.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -init.lo: init.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -libbfd.lo: libbfd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -opncls.lo: opncls.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h -reloc.lo: reloc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h -section.lo: section.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h -syms.lo: syms.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def -targets.lo: targets.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/fnmatch.h targmatch.h -hash.lo: hash.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/objalloc.h $(INCDIR)/libiberty.h -linker.lo: linker.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h -srec.lo: srec.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -binary.lo: binary.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/hashtab.h -tekhex.lo: tekhex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +coffgen.lo: \ + coffgen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h +corefile.lo: \ + corefile.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +format.lo: \ + format.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +init.lo: \ + init.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +libbfd.lo: \ + libbfd.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +opncls.lo: \ + opncls.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/objalloc.h +reloc.lo: \ + reloc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +section.lo: \ + section.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +syms.lo: \ + syms.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h +targets.lo: \ + targets.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/fnmatch.h \ + $(INCDIR)/hashtab.h \ + targmatch.h +hash.lo: \ + hash.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/objalloc.h +linker.lo: \ + linker.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + genlink.h +srec.lo: \ + srec.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h +binary.lo: \ + binary.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h +tekhex.lo: \ + tekhex.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -ihex.lo: ihex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -stabs.lo: stabs.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h -stab-syms.lo: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def -merge.lo: merge.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +ihex.lo: \ + ihex.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h +stabs.lo: \ + stabs.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h +stab-syms.lo: \ + stab-syms.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/bfdlink.h \ + libaout.h +merge.lo: \ + merge.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -dwarf2.lo: dwarf2.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/dwarf2.h -simple.lo: simple.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h -compress.lo: compress.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -verilog.lo: verilog.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -archive64.lo: archive64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/ar.h -cpu-alpha.lo: cpu-alpha.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-arc.lo: cpu-arc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-arm.lo: cpu-arm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +dwarf2.lo: \ + dwarf2.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h +simple.lo: \ + simple.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +compress.lo: \ + compress.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +verilog.lo: \ + verilog.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h +archive64.lo: \ + archive64.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-alpha.lo: \ + cpu-alpha.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-arc.lo: \ + cpu-arc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-arm.lo: \ + cpu-arm.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -cpu-avr.lo: cpu-avr.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-bfin.lo: cpu-bfin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-cr16.lo: cpu-cr16.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-cris.lo: cpu-cris.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-cr16c.lo: cpu-cr16c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-crx.lo: cpu-crx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-d10v.lo: cpu-d10v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-d30v.lo: cpu-d30v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-dlx.lo: cpu-dlx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-fr30.lo: cpu-fr30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-frv.lo: cpu-frv.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-moxie.lo: cpu-moxie.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-h8300.lo: cpu-h8300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-h8500.lo: cpu-h8500.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-hppa.lo: cpu-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-ia64.lo: cpu-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - cpu-ia64-opc.c $(srcdir)/../opcodes/ia64-opc.h $(INCDIR)/opcode/ia64.h -cpu-i370.lo: cpu-i370.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-i386.lo: cpu-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-i860.lo: cpu-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-i960.lo: cpu-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-ip2k.lo: cpu-ip2k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-iq2000.lo: cpu-iq2000.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-lm32.lo: cpu-lm32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m32c.lo: cpu-m32c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m32r.lo: cpu-m32r.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m68hc11.lo: cpu-m68hc11.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h -cpu-m68hc12.lo: cpu-m68hc12.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h -cpu-m68k.lo: cpu-m68k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +cpu-avr.lo: \ + cpu-avr.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-bfin.lo: \ + cpu-bfin.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-cr16.lo: \ + cpu-cr16.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-cris.lo: \ + cpu-cris.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-cr16c.lo: \ + cpu-cr16c.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-crx.lo: \ + cpu-crx.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-d10v.lo: \ + cpu-d10v.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-d30v.lo: \ + cpu-d30v.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-dlx.lo: \ + cpu-dlx.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-fr30.lo: \ + cpu-fr30.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-frv.lo: \ + cpu-frv.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-moxie.lo: \ + cpu-moxie.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-h8300.lo: \ + cpu-h8300.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-h8500.lo: \ + cpu-h8500.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-hppa.lo: \ + cpu-hppa.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-ia64.lo: \ + cpu-ia64.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/ia64.h \ + $(srcdir)/../opcodes/ia64-opc.h \ + cpu-ia64-opc.c +cpu-i370.lo: \ + cpu-i370.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-i386.lo: \ + cpu-i386.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-i860.lo: \ + cpu-i860.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-i960.lo: \ + cpu-i960.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-ip2k.lo: \ + cpu-ip2k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-iq2000.lo: \ + cpu-iq2000.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-lm32.lo: \ + cpu-lm32.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m32c.lo: \ + cpu-m32c.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m32r.lo: \ + cpu-m32r.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m68hc11.lo: \ + cpu-m68hc11.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m68hc12.lo: \ + cpu-m68hc12.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m68k.lo: \ + cpu-m68k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/opcode/m68k.h -cpu-m88k.lo: cpu-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m10200.lo: cpu-m10200.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m10300.lo: cpu-m10300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-maxq.lo: cpu-maxq.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mcore.lo: cpu-mcore.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mep.lo: cpu-mep.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mips.lo: cpu-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mmix.lo: cpu-mmix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mt.lo: cpu-mt.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-msp430.lo: cpu-msp430.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-or32.lo: cpu-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-ns32k.lo: cpu-ns32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +cpu-m88k.lo: \ + cpu-m88k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m10200.lo: \ + cpu-m10200.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m10300.lo: \ + cpu-m10300.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-maxq.lo: \ + cpu-maxq.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mcore.lo: \ + cpu-mcore.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mep.lo: \ + cpu-mep.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mips.lo: \ + cpu-mips.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mmix.lo: \ + cpu-mmix.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mt.lo: \ + cpu-mt.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-msp430.lo: \ + cpu-msp430.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-or32.lo: \ + cpu-or32.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-ns32k.lo: \ + cpu-ns32k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ ns32k.h -cpu-openrisc.lo: cpu-openrisc.c $(INCDIR)/filenames.h \ +cpu-openrisc.lo: \ + cpu-openrisc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-pdp11.lo: \ + cpu-pdp11.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-pj.lo: \ + cpu-pj.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-powerpc.lo: \ + cpu-powerpc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-rs6000.lo: \ + cpu-rs6000.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-s390.lo: \ + cpu-s390.c \ + $(INCDIR)/filenames.h \ $(INCDIR)/hashtab.h -cpu-pdp11.lo: cpu-pdp11.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-pj.lo: cpu-pj.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-powerpc.lo: cpu-powerpc.c $(INCDIR)/filenames.h \ +cpu-score.lo: \ + cpu-score.c \ + $(INCDIR)/filenames.h \ $(INCDIR)/hashtab.h -cpu-rs6000.lo: cpu-rs6000.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-s390.lo: cpu-s390.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-score.lo: cpu-score.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-sh.lo: cpu-sh.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +cpu-sh.lo: \ + cpu-sh.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(srcdir)/../opcodes/sh-opc.h -cpu-sparc.lo: cpu-sparc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-spu.lo: cpu-spu.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-tic30.lo: cpu-tic30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-tic4x.lo: cpu-tic4x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-tic54x.lo: cpu-tic54x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-tic80.lo: cpu-tic80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-v850.lo: cpu-v850.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/safe-ctype.h -cpu-vax.lo: cpu-vax.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-we32k.lo: cpu-we32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-w65.lo: cpu-w65.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-xstormy16.lo: cpu-xstormy16.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h -cpu-xtensa.lo: cpu-xtensa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-xc16x.lo: cpu-xc16x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-z80.lo: cpu-z80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-z8k.lo: cpu-z8k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -aout-adobe.lo: aout-adobe.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/adobe.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - libaout.h $(INCDIR)/bfdlink.h -aout-arm.lo: aout-arm.c $(INCDIR)/filenames.h libaout.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aoutx.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h -aout-cris.lo: aout-cris.c aout32.c aoutx.h $(INCDIR)/filenames.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h libaout.h \ - $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h -aout-ns32k.lo: aout-ns32k.c $(INCDIR)/aout/aout64.h \ - ns32k.h libaout.h $(INCDIR)/bfdlink.h aoutx.h $(INCDIR)/filenames.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -aout-sparcle.lo: aout-sparcle.c $(INCDIR)/bfdlink.h \ - libaout.h aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h -aout-tic30.lo: aout-tic30.c $(INCDIR)/filenames.h libaout.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aoutx.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h -aout0.lo: aout0.c aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h aout-target.h -aout32.lo: aout32.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -armnetbsd.lo: armnetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -bout.lo: bout.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/bout.h $(INCDIR)/libiberty.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h -cf-i386lynx.lo: cf-i386lynx.c $(INCDIR)/filenames.h \ - coff-i386.c $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -cf-sparclynx.lo: cf-sparclynx.c coff-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-apollo.lo: coff-apollo.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/apollo.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-arm.lo: coff-arm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-aux.lo: coff-aux.c $(INCDIR)/filenames.h $(INCDIR)/coff/aux-coff.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \ - coff-m68k.c $(INCDIR)/hashtab.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-h8300.lo: coff-h8300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/coff/h8300.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/libiberty.h coffcode.h coffswap.h -coff-h8500.lo: coff-h8500.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-i386.lo: coff-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-i860.lo: coff-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/i860.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-go32.lo: coff-go32.c coff-i386.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-i960.lo: coff-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-m68k.lo: coff-m68k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-m88k.lo: coff-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-maxq.lo: coff-maxq.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/maxq.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h \ - coffcode.h coffswap.h -coff-mips.lo: coff-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h \ - $(INCDIR)/coff/external.h libcoff.h libecoff.h coffswap.h \ - ecoffswap.h -coff-or32.lo: coff-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/or32.h $(INCDIR)/coff/internal.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-rs6000.lo: coff-rs6000.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/xcoff.h $(INCDIR)/coff/rs6000.h libcoff.h \ - libxcoff.h coffcode.h coffswap.h -coff-sh.lo: coff-sh.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h coffcode.h coffswap.h -coff-sparc.lo: coff-sparc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-stgo32.lo: coff-stgo32.c coff-i386.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/go32exe.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h \ - go32stub.h -coff-svm68k.lo: coff-svm68k.c coff-m68k.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-tic30.lo: coff-tic30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-tic4x.lo: coff-tic4x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-tic54x.lo: coff-tic54x.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic54x.h \ - $(INCDIR)/coff/ti.h $(INCDIR)/coff/internal.h libcoff.h \ - coffcode.h coffswap.h -coff-tic80.lo: coff-tic80.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-u68k.lo: coff-u68k.c coff-m68k.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-we32k.lo: coff-we32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/we32k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-w65.lo: coff-w65.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-z80.lo: coff-z80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/z80.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-z8k.lo: coff-z8k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -cofflink.lo: cofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h libcoff.h \ +cpu-sparc.lo: \ + cpu-sparc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-spu.lo: \ + cpu-spu.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-tic30.lo: \ + cpu-tic30.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-tic4x.lo: \ + cpu-tic4x.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-tic54x.lo: \ + cpu-tic54x.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-tic80.lo: \ + cpu-tic80.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-v850.lo: \ + cpu-v850.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/safe-ctype.h -dwarf1.lo: dwarf1.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/dwarf.h -ecoff.lo: ecoff.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h libcoff.h \ - libecoff.h $(INCDIR)/libiberty.h -ecofflink.lo: ecofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/objalloc.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h libcoff.h \ +cpu-vax.lo: \ + cpu-vax.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-we32k.lo: \ + cpu-we32k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-w65.lo: \ + cpu-w65.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-xstormy16.lo: \ + cpu-xstormy16.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-xtensa.lo: \ + cpu-xtensa.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-xc16x.lo: \ + cpu-xc16x.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-z80.lo: \ + cpu-z80.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-z8k.lo: \ + cpu-z8k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +aout-adobe.lo: \ + aout-adobe.c \ + $(INCDIR)/aout/adobe.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libaout.h +aout-arm.lo: \ + aout-arm.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + aoutx.h \ + libaout.h +aout-cris.lo: \ + aout-cris.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + aout32.c \ + aoutx.h \ + libaout.h +aout-ns32k.lo: \ + aout-ns32k.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aoutx.h \ + libaout.h \ + ns32k.h +aout-sparcle.lo: \ + aout-sparcle.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + aoutf1.h \ + libaout.h +aout-tic30.lo: \ + aout-tic30.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aoutx.h \ + libaout.h +aout0.lo: \ + aout0.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + aoutf1.h \ + libaout.h +aout32.lo: \ + aout32.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aoutx.h \ + libaout.h +armnetbsd.lo: \ + armnetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +bout.lo: \ + bout.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/bout.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + genlink.h \ + libaout.h +cf-i386lynx.lo: \ + cf-i386lynx.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +cf-sparclynx.lo: \ + cf-sparclynx.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-sparc.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-apollo.lo: \ + coff-apollo.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/apollo.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-arm.lo: \ + coff-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-aux.lo: \ + coff-aux.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/aux-coff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m68k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-m68k.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-h8300.lo: \ + coff-h8300.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/h8300.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coffcode.h \ + coffswap.h \ + genlink.h \ + libcoff.h +coff-h8500.lo: \ + coff-h8500.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/h8500.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-i386.lo: \ + coff-i386.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-i860.lo: \ + coff-i860.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i860.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-go32.lo: \ + coff-go32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-i960.lo: \ + coff-i960.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/i960.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-m68k.lo: \ + coff-m68k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m68k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-m88k.lo: \ + coff-m88k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m88k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-maxq.lo: \ + coff-maxq.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/maxq.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-mips.lo: \ + coff-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mips.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffswap.h \ + ecoffswap.h \ + libcoff.h \ libecoff.h -elf.lo: elf.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h -elf32-am33lin.lo: elf32-am33lin.c $(INCDIR)/filenames.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h \ - $(INCDIR)/elf/reloc-macros.h elf-m10300.c $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h elf32-target.h -elf32-arc.lo: elf32-arc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +coff-or32.lo: \ + coff-or32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/or32.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-rs6000.lo: \ + coff-rs6000.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/rs6000.h \ + $(INCDIR)/coff/xcoff.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h \ + libxcoff.h +coff-sh.lo: \ + coff-sh.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-sparc.lo: \ + coff-sparc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-stgo32.lo: \ + coff-stgo32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/go32exe.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + coffswap.h \ + go32stub.h \ + libcoff.h +coff-svm68k.lo: \ + coff-svm68k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m68k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-m68k.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-tic30.lo: \ + coff-tic30.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/tic30.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-tic4x.lo: \ + coff-tic4x.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/ti.h \ + $(INCDIR)/coff/tic4x.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-tic54x.lo: \ + coff-tic54x.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/ti.h \ + $(INCDIR)/coff/tic54x.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-tic80.lo: \ + coff-tic80.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/tic80.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-u68k.lo: \ + coff-u68k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m68k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-m68k.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-we32k.lo: \ + coff-we32k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/we32k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-w65.lo: \ + coff-w65.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/w65.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-z80.lo: \ + coff-z80.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/z80.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-z8k.lo: \ + coff-z8k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/z8k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +cofflink.lo: \ + cofflink.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + libcoff.h +dwarf1.lo: \ + dwarf1.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h +ecoff.lo: \ + ecoff.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/ranlib.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + libaout.h \ + libcoff.h \ + libecoff.h +ecofflink.lo: \ + ecofflink.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/objalloc.h \ + libcoff.h \ + libecoff.h +elf.lo: \ + elf.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h \ + elf-bfd.h +elf32-am33lin.lo: \ + elf32-am33lin.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mn10300.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf-m10300.c \ + elf32-target.h +elf32-arc.lo: \ + elf32-arc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/arc.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-arm.lo: \ + elf32-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/arm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-target.h +elf32-avr.lo: \ + elf32-avr.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/avr.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-avr.h \ + elf32-target.h +elf32-bfin.lo: \ + elf32-bfin.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/bfin.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-cr16.lo: \ + elf32-cr16.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/cr16.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-cr16c.lo: \ + elf32-cr16c.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/cr16c.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-cris.lo: \ + elf32-cris.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/cris.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-crx.lo: \ + elf32-crx.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/crx.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-d10v.lo: \ + elf32-d10v.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/d10v.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-d30v.lo: \ + elf32-d30v.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/d30v.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-dlx.lo: \ + elf32-dlx.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dlx.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-fr30.lo: \ + elf32-fr30.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/fr30.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-frv.lo: \ + elf32-frv.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/frv.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-moxie.lo: \ + elf32-moxie.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/moxie.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-gen.lo: \ + elf32-gen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-arm.lo: elf32-arm.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - elf-vxworks.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \ +elf32-h8300.lo: \ + elf32-h8300.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/h8.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-avr.lo: elf32-avr.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h \ - $(INCDIR)/elf/reloc-macros.h elf32-avr.h elf32-target.h -elf32-bfin.lo: elf32-bfin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/bfin.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/dwarf2.h \ +elf32-hppa.lo: \ + elf32-hppa.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/hppa.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf-hppa.h \ + elf32-hppa.h \ + elf32-target.h \ + libhppa.h +elf32-i370.lo: \ + elf32-i370.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/i370.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-cr16.lo: elf32-cr16.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/elf/cr16.h $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-cr16c.lo: elf32-cr16c.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/cr16c.h \ - $(INCDIR)/elf/reloc-macros.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-target.h -elf32-cris.lo: elf32-cris.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/cris.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-crx.lo: elf32-crx.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/crx.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-d10v.lo: elf32-d10v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/d10v.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-d30v.lo: elf32-d30v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/d30v.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-dlx.lo: elf32-dlx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dlx.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-fr30.lo: elf32-fr30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/fr30.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-frv.lo: elf32-frv.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/frv.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/dwarf2.h \ +elf32-i386.lo: \ + elf32-i386.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/i386.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + bfd_stdint.h \ + elf-bfd.h \ + elf-vxworks.h \ elf32-target.h -elf32-moxie.lo: elf32-moxie.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/moxie.h $(INCDIR)/elf/reloc-macros.h \ +elf32-i860.lo: \ + elf32-i860.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/i860.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-gen.lo: elf32-gen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h -elf32-h8300.lo: elf32-h8300.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-hppa.lo: elf32-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h \ - $(INCDIR)/elf/reloc-macros.h libhppa.h elf32-hppa.h \ - elf-hppa.h elf32-target.h -elf32-i370.lo: elf32-i370.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/i370.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-i386.lo: elf32-i386.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf-vxworks.h \ - bfd_stdint.h $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h \ +elf32-i960.lo: \ + elf32-i960.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/i960.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-i860.lo: elf32-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/i860.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-i960.lo: elf32-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/i960.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-ip2k.lo: elf32-ip2k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/ip2k.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-iq2000.lo: elf32-iq2000.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/iq2000.h $(INCDIR)/elf/reloc-macros.h \ +elf32-ip2k.lo: \ + elf32-ip2k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/ip2k.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-lm32.lo: elf32-lm32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/lm32.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-m32c.lo: elf32-m32c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32c.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-iq2000.lo: \ + elf32-iq2000.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/iq2000.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-m32r.lo: elf32-m32r.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32r.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-m68k.lo: elf32-m68k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/m68k.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/m68k.h \ +elf32-lm32.lo: \ + elf32-lm32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/lm32.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-m68hc11.lo: elf32-m68hc11.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-m68hc1x.h \ - $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/opcode/m68hc11.h elf32-target.h -elf32-m68hc12.lo: elf32-m68hc12.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-m68hc1x.h \ - $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/opcode/m68hc11.h elf32-target.h -elf32-m68hc1x.lo: elf32-m68hc1x.c $(INCDIR)/alloca-conf.h \ - $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h elf32-m68hc1x.h $(INCDIR)/elf/m68hc11.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/m68hc11.h -elf32-m88k.lo: elf32-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h -elf-m10200.lo: elf-m10200.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h -elf-m10300.lo: elf-m10300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-m32c.lo: \ + elf32-m32c.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m32c.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ elf32-target.h -elf32-mcore.lo: elf32-mcore.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/mcore.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-mep.lo: elf32-mep.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mep.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-m32r.lo: \ + elf32-m32r.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m32r.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elfxx-mips.lo: elfxx-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ - elf-vxworks.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h -elf32-mips.lo: elf32-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfxx-mips.h \ - $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h elf-vxworks.h \ - $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \ - ecoffswap.h elf32-target.h -elf32-mt.lo: elf32-mt.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mt.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-msp430.lo: elf32-msp430.c $(INCDIR)/filenames.h \ - $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/msp430.h $(INCDIR)/elf/reloc-macros.h \ +elf32-m68k.lo: \ + elf32-m68k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m68k.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/m68k.h \ + elf-bfd.h \ elf32-target.h -elf32-openrisc.lo: elf32-openrisc.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/openrisc.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/libiberty.h elf32-target.h -elf32-or32.lo: elf32-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/or32.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-m68hc11.lo: \ + elf32-m68hc11.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m68hc11.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/m68hc11.h \ + elf-bfd.h \ + elf32-m68hc1x.h \ elf32-target.h -elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/pj.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-ppc.lo: elf32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/ppc.h \ - $(INCDIR)/elf/reloc-macros.h elf32-ppc.h elf-vxworks.h \ +elf32-m68hc12.lo: \ + elf32-m68hc12.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m68hc11.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/m68hc11.h \ + elf-bfd.h \ + elf32-m68hc1x.h \ elf32-target.h -elf32-sh64.lo: elf32-sh64.c $(INCDIR)/filenames.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(srcdir)/../opcodes/sh64-opc.h \ - elf32-sh64.h elf32-sh.c $(INCDIR)/hashtab.h elf-vxworks.h \ - $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ - $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h -elf32-sh64-com.lo: elf32-sh64-com.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf32-sh64.h \ - $(srcdir)/../opcodes/sh64-opc.h -elf32-s390.lo: elf32-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/s390.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-sh.lo: elf32-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf-vxworks.h \ - $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ - $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h -elf32-sh-symbian.lo: elf32-sh-symbian.c elf32-sh.c \ - $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h elf-vxworks.h $(INCDIR)/elf/sh.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ - $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h -elfxx-sparc.lo: elfxx-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/opcode/sparc.h elfxx-sparc.h elf-vxworks.h -elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/sparc.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/sparc.h \ - elfxx-sparc.h elf-vxworks.h elf32-target.h -elf32-spu.lo: elf32-spu.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/spu.h \ - $(INCDIR)/elf/reloc-macros.h elf32-spu.h elf32-target.h -elf32-v850.lo: elf32-v850.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/v850.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-m68hc1x.lo: \ + elf32-m68hc1x.c \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m68hc11.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/m68hc11.h \ + elf-bfd.h \ + elf32-m68hc1x.h +elf32-m88k.lo: \ + elf32-m88k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-vax.lo: elf32-vax.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/vax.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-xstormy16.lo: elf32-xstormy16.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/xstormy16.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/libiberty.h elf32-target.h -elf32-xtensa.lo: elf32-xtensa.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/xtensa.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/xtensa-isa.h \ - $(INCDIR)/xtensa-config.h elf32-target.h -elf32-xc16x.lo: elf32-xc16x.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/xc16x.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/elf/dwarf2.h $(INCDIR)/libiberty.h elf32-target.h -elf32.lo: elf32.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfcore.h -elflink.lo: elflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/libiberty.h $(INCDIR)/objalloc.h -elf-attrs.lo: elf-attrs.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h -elf-strtab.lo: elf-strtab.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h -elf-eh-frame.lo: elf-eh-frame.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/dwarf2.h -elf-vxworks.lo: elf-vxworks.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - elf-vxworks.h $(INCDIR)/elf/vxworks.h -epoc-pe-arm.lo: epoc-pe-arm.c pe-arm.c $(INCDIR)/filenames.h \ - coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -epoc-pei-arm.lo: epoc-pei-arm.c pei-arm.c $(INCDIR)/filenames.h \ - coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -hp300bsd.lo: hp300bsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -hp300hpux.lo: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \ - aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ - aout-target.h -som.lo: som.c $(INCDIR)/alloca-conf.h $(INCDIR)/filenames.h -i386aout.lo: i386aout.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h libaout.h $(INCDIR)/bfdlink.h \ - aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -i386bsd.lo: i386bsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -i386dynix.lo: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \ - $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \ - libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ - aout-target.h -i386freebsd.lo: i386freebsd.c freebsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -i386linux.lo: i386linux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -i386lynx.lo: i386lynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ - aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -i386msdos.lo: i386msdos.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h -i386netbsd.lo: i386netbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -i386mach3.lo: i386mach3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -i386os9k.lo: i386os9k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/os9k.h -ieee.lo: ieee.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/ieee.h libieee.h $(INCDIR)/safe-ctype.h -m68k4knetbsd.lo: m68k4knetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -m68klinux.lo: m68klinux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -m68knetbsd.lo: m68knetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -m88kmach3.lo: m88kmach3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -m88kopenbsd.lo: m88kopenbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -mach-o.lo: mach-o.c $(INCDIR)/filenames.h mach-o.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def mach-o-target.c -mipsbsd.lo: mipsbsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -newsos3.lo: newsos3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -nlm.lo: nlm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ - $(INCDIR)/nlm/external.h -nlm32-i386.lo: nlm32-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/nlm/i386-ext.h libnlm.h $(INCDIR)/nlm/common.h \ - $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \ - nlm-target.h -nlm32-sparc.lo: nlm32-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/nlm/sparc32-ext.h libnlm.h \ - $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \ - nlmswap.h nlm-target.h -nlm32-ppc.lo: nlm32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/nlm/ppc-ext.h libnlm.h $(INCDIR)/nlm/common.h \ - $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \ - nlm-target.h -nlm32.lo: nlm32.c nlmcode.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ - $(INCDIR)/nlm/external.h -ns32knetbsd.lo: ns32knetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -oasys.lo: oasys.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/hashtab.h $(INCDIR)/oasys.h liboasys.h -pc532-mach.lo: pc532-mach.c $(INCDIR)/filenames.h libaout.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -pdp11.lo: pdp11.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ +elf-m10200.lo: \ + elf-m10200.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf-m10300.lo: \ + elf-m10300.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mn10300.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-mcore.lo: \ + elf32-mcore.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mcore.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-mep.lo: \ + elf32-mep.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mep.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elfxx-mips.lo: \ + elfxx-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/mips.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf-vxworks.h \ + elfxx-mips.h +elf32-mips.lo: \ + elf32-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mips.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + ecoffswap.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-target.h \ + elfxx-mips.h \ + genlink.h +elf32-mt.lo: \ + elf32-mt.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mt.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-msp430.lo: \ + elf32-msp430.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/msp430.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-openrisc.lo: \ + elf32-openrisc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/openrisc.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-or32.lo: \ + elf32-or32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/or32.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-pj.lo: \ + elf32-pj.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/pj.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-ppc.lo: \ + elf32-ppc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/ppc.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-ppc.h \ + elf32-target.h +elf32-sh64.lo: \ + elf32-sh64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(srcdir)/../opcodes/sh-opc.h \ + $(srcdir)/../opcodes/sh64-opc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-sh-relocs.h \ + elf32-sh.c \ + elf32-sh64.h \ + elf32-target.h +elf32-sh64-com.lo: \ + elf32-sh64-com.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(srcdir)/../opcodes/sh64-opc.h \ + elf-bfd.h \ + elf32-sh64.h +elf32-s390.lo: \ + elf32-s390.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/s390.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-sh.lo: \ + elf32-sh.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(srcdir)/../opcodes/sh-opc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-sh-relocs.h \ + elf32-target.h +elf32-sh-symbian.lo: \ + elf32-sh-symbian.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(srcdir)/../opcodes/sh-opc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-sh-relocs.h \ + elf32-sh.c \ + elf32-target.h +elfxx-sparc.lo: \ + elfxx-sparc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/sparc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elfxx-sparc.h +elf32-sparc.lo: \ + elf32-sparc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/sparc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-target.h \ + elfxx-sparc.h +elf32-spu.lo: \ + elf32-spu.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/spu.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-spu.h \ + elf32-target.h +elf32-v850.lo: \ + elf32-v850.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/v850.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-vax.lo: \ + elf32-vax.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/vax.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-xstormy16.lo: \ + elf32-xstormy16.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/xstormy16.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-xtensa.lo: \ + elf32-xtensa.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/xtensa.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/xtensa-config.h \ + $(INCDIR)/xtensa-isa.h \ + elf-bfd.h \ + elf32-target.h +elf32-xc16x.lo: \ + elf32-xc16x.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/xc16x.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32.lo: \ + elf32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elfcode.h \ + elfcore.h +elflink.lo: \ + elflink.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/objalloc.h \ + $(INCDIR)/safe-ctype.h \ + elf-bfd.h +elf-attrs.lo: \ + elf-attrs.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h +elf-strtab.lo: \ + elf-strtab.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h +elf-eh-frame.lo: \ + elf-eh-frame.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h +elf-vxworks.lo: \ + elf-vxworks.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/vxworks.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf-vxworks.h +epoc-pe-arm.lo: \ + epoc-pe-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pe-arm.c \ + peicode.h +epoc-pei-arm.lo: \ + epoc-pei-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pei-arm.c \ + peicode.h +hp300bsd.lo: \ + hp300bsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +hp300hpux.lo: \ + hp300hpux.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/hp300hpux.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + aoutx.h \ + libaout.h +som.lo: \ + som.c \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/filenames.h +i386aout.lo: \ + i386aout.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386bsd.lo: \ + i386bsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386dynix.lo: \ + i386dynix.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/dynix3.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + aoutx.h \ + libaout.h +i386freebsd.lo: \ + i386freebsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + freebsd.h \ + libaout.h +i386linux.lo: \ + i386linux.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386lynx.lo: \ + i386lynx.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386msdos.lo: \ + i386msdos.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libaout.h +i386netbsd.lo: \ + i386netbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +i386mach3.lo: \ + i386mach3.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386os9k.lo: \ + i386os9k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/os9k.h \ + libaout.h +ieee.lo: \ + ieee.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/ieee.h \ + $(INCDIR)/safe-ctype.h \ + libieee.h +m68k4knetbsd.lo: \ + m68k4knetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +m68klinux.lo: \ + m68klinux.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +m68knetbsd.lo: \ + m68knetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +m88kmach3.lo: \ + m88kmach3.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +m88kopenbsd.lo: \ + m88kopenbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +mach-o.lo: \ + mach-o.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + mach-o-target.c \ + mach-o.h +mipsbsd.lo: \ + mipsbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +newsos3.lo: \ + newsos3.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +nlm.lo: \ + nlm.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h +nlm32-i386.lo: \ + nlm32-i386.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/i386-ext.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h \ + nlm-target.h \ + nlmswap.h +nlm32-sparc.lo: \ + nlm32-sparc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + $(INCDIR)/nlm/sparc32-ext.h \ + libnlm.h \ + nlm-target.h \ + nlmswap.h +nlm32-ppc.lo: \ + nlm32-ppc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + $(INCDIR)/nlm/ppc-ext.h \ + libnlm.h \ + nlm-target.h \ + nlmswap.h +nlm32.lo: \ + nlm32.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h \ + nlmcode.h +ns32knetbsd.lo: \ + ns32knetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +oasys.lo: \ + oasys.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/oasys.h \ + $(INCDIR)/safe-ctype.h \ + liboasys.h +pc532-mach.lo: \ + pc532-mach.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +pdp11.lo: \ + pdp11.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + libaout.h +pef.lo: \ + pef.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h \ + pef-traceback.h \ + pef.h +pe-arm.lo: \ + pe-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-arm.lo: \ + pei-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-arm-wince.lo: \ + pe-arm-wince.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pe-arm.c \ + peicode.h +pei-arm-wince.lo: \ + pei-arm-wince.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pei-arm.c \ + peicode.h +pe-i386.lo: \ + pe-i386.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-i386.lo: \ + pei-i386.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-mcore.lo: \ + pe-mcore.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mcore.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-mcore.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-mcore.lo: \ + pei-mcore.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mcore.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-mcore.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-ppc.lo: \ + pe-ppc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/powerpc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-ppc.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-ppc.lo: \ + pei-ppc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/powerpc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-ppc.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-sh.lo: \ + pe-sh.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coff-sh.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-sh.lo: \ + pei-sh.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coff-sh.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-mips.lo: \ + pe-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mipspe.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-mips.lo: \ + pei-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mipspe.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pe-mips.c \ + peicode.h +ppcboot.lo: \ + ppcboot.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/safe-ctype.h -pef.lo: pef.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - pef.h pef-traceback.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h -pe-arm.lo: pe-arm.c $(INCDIR)/filenames.h coff-arm.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pei-arm.lo: pei-arm.c $(INCDIR)/filenames.h coff-arm.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pe-arm-wince.lo: pe-arm-wince.c $(INCDIR)/filenames.h \ - pe-arm.c coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -pei-arm-wince.lo: pei-arm-wince.c pei-arm.c $(INCDIR)/filenames.h \ - coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -pe-i386.lo: pe-i386.c $(INCDIR)/filenames.h coff-i386.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pei-i386.lo: pei-i386.c $(INCDIR)/filenames.h coff-i386.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pe-mcore.lo: pe-mcore.c $(INCDIR)/filenames.h coff-mcore.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pei-mcore.lo: pei-mcore.c $(INCDIR)/filenames.h coff-mcore.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pe-ppc.lo: pe-ppc.c $(INCDIR)/filenames.h coff-ppc.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pei-ppc.lo: pei-ppc.c $(INCDIR)/filenames.h coff-ppc.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pe-sh.lo: pe-sh.c $(INCDIR)/filenames.h coff-sh.c $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \ - libpei.h -pei-sh.lo: pei-sh.c $(INCDIR)/filenames.h coff-sh.c \ - $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \ - libpei.h -pe-mips.lo: pe-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -pei-mips.lo: pei-mips.c $(INCDIR)/filenames.h pe-mips.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -ppcboot.lo: ppcboot.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/hashtab.h -reloc16.lo: reloc16.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/coff/internal.h \ +reloc16.lo: \ + reloc16.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + genlink.h \ libcoff.h -riscix.lo: riscix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ - aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -sparclinux.lo: sparclinux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -sparclynx.lo: sparclynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h aout-target.h -sparcnetbsd.lo: sparcnetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -sunos.lo: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \ - $(INCDIR)/filenames.h $(INCDIR)/hashtab.h $(INCDIR)/aout/sun4.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h aout-target.h -vaxnetbsd.lo: vaxnetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -vax1knetbsd.lo: vax1knetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -vaxbsd.lo: vaxbsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -versados.lo: versados.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +riscix.lo: \ + riscix.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +sparclinux.lo: \ + sparclinux.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +sparclynx.lo: \ + sparclynx.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +sparcnetbsd.lo: \ + sparcnetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +sunos.lo: \ + sunos.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + aoutf1.h \ + libaout.h +vaxnetbsd.lo: \ + vaxnetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +vax1knetbsd.lo: \ + vax1knetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +vaxbsd.lo: \ + vaxbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +versados.lo: \ + versados.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -vms.lo: vms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h vms.h -vms-gsd.lo: vms-gsd.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h vms.h -vms-hdr.lo: vms-hdr.c $(INCDIR)/filenames.h bfdver.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h \ +vms.lo: \ + vms.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + vms.h +vms-gsd.lo: \ + vms-gsd.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + vms.h +vms-hdr.lo: \ + vms-hdr.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + bfdver.h \ vms.h -vms-misc.lo: vms-misc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h vms.h -vms-tir.lo: vms-tir.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h vms.h -vmsutil.lo: vmsutil.c vmsutil.h -xcofflink.lo: xcofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/xcoff.h \ - libcoff.h libxcoff.h $(INCDIR)/libiberty.h -xsym.lo: xsym.c $(INCDIR)/alloca-conf.h $(INCDIR)/filenames.h \ - xsym.h $(INCDIR)/hashtab.h -xtensa-isa.lo: xtensa-isa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/xtensa-isa.h $(INCDIR)/xtensa-isa-internal.h -xtensa-modules.lo: xtensa-modules.c $(INCDIR)/xtensa-isa.h \ - $(INCDIR)/xtensa-isa-internal.h -aix5ppc-core.lo: aix5ppc-core.c $(INCDIR)/filenames.h -aout64.lo: aout64.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -coff-alpha.lo: coff-alpha.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h \ - $(INCDIR)/aout/ar.h libcoff.h libecoff.h coffswap.h \ - ecoffswap.h -coff64-rs6000.lo: coff64-rs6000.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/xcoff.h $(INCDIR)/coff/rs6k64.h libcoff.h \ - libxcoff.h coffcode.h coffswap.h -demo64.lo: demo64.c aoutf1.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/aout/sun4.h libaout.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h -pei-ia64.lo: pei-ia64.c $(INCDIR)/filenames.h coff-ia64.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/ia64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -elf64-x86-64.lo: elf64-x86-64.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h bfd_stdint.h \ - $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h \ +vms-misc.lo: \ + vms-misc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + vms.h +vms-tir.lo: \ + vms-tir.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + vms.h +vmsutil.lo: \ + vmsutil.c \ + vmsutil.h +xcofflink.lo: \ + xcofflink.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/xcoff.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + libcoff.h \ + libxcoff.h +xsym.lo: \ + xsym.c \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + xsym.h +xtensa-isa.lo: \ + xtensa-isa.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/xtensa-isa-internal.h \ + $(INCDIR)/xtensa-isa.h +xtensa-modules.lo: \ + xtensa-modules.c \ + $(INCDIR)/xtensa-isa-internal.h \ + $(INCDIR)/xtensa-isa.h +aix5ppc-core.lo: \ + aix5ppc-core.c \ + $(INCDIR)/filenames.h +aout64.lo: \ + aout64.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aoutx.h \ + libaout.h +coff-alpha.lo: \ + coff-alpha.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/alpha.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffswap.h \ + ecoffswap.h \ + libcoff.h \ + libecoff.h +coff64-rs6000.lo: \ + coff64-rs6000.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/rs6k64.h \ + $(INCDIR)/coff/xcoff.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h \ + libxcoff.h +demo64.lo: \ + demo64.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + aoutf1.h \ + libaout.h +pei-ia64.lo: \ + pei-ia64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/ia64.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-ia64.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +elf64-x86-64.lo: \ + elf64-x86-64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/x86-64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + bfd_stdint.h \ + elf-bfd.h \ elf64-target.h -elf64-alpha.lo: elf64-alpha.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h \ - libcoff.h libecoff.h ecoffswap.h elf64-target.h -elf64-hppa.lo: elf64-hppa.c $(INCDIR)/alloca-conf.h \ - $(INCDIR)/filenames.h $(INCDIR)/hashtab.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h \ - libhppa.h elf64-hppa.h elf-hppa.h elf64-target.h -elf64-gen.lo: elf64-gen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf64-target.h -elfn32-mips.lo: elfn32-mips.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h genlink.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \ - ecoffswap.h elf32-target.h -elf64-mips.lo: elf64-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/ar.h $(INCDIR)/bfdlink.h genlink.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h ecoffswap.h \ +elf64-alpha.lo: \ + elf64-alpha.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/alpha.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/alpha.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + ecoffswap.h \ + elf-bfd.h \ + elf64-target.h \ + libcoff.h \ + libecoff.h +elf64-hppa.lo: \ + elf64-hppa.c \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/hppa.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf-hppa.h \ + elf64-hppa.h \ + elf64-target.h \ + libhppa.h +elf64-gen.lo: \ + elf64-gen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf64-target.h +elfn32-mips.lo: \ + elfn32-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mips.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + ecoffswap.h \ + elf-bfd.h \ + elf32-target.h \ + elfxx-mips.h \ + genlink.h +elf64-mips.lo: \ + elf64-mips.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/alpha.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + ecoffswap.h \ + elf-bfd.h \ + elf64-target.h \ + elfxx-mips.h \ + genlink.h +elf64-mmix.lo: \ + elf64-mmix.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mmix.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/mmix.h \ + elf-bfd.h \ + elf64-target.h +elf64-ppc.lo: \ + elf64-ppc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/ppc64.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf64-ppc.h \ elf64-target.h -elf64-mmix.lo: elf64-mmix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mmix.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \ +elf64-s390.lo: \ + elf64-s390.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/s390.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf64-target.h -elf64-ppc.lo: elf64-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/ppc64.h \ - $(INCDIR)/elf/reloc-macros.h elf64-ppc.h elf64-target.h -elf64-s390.lo: elf64-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/s390.h \ - $(INCDIR)/elf/reloc-macros.h elf64-target.h -elf32-score.lo: elf32-score.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h \ - elf32-score.h elf32-target.h -elf32-score7.lo: elf32-score7.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h \ +elf32-score.lo: \ + elf32-score.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/score.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-score.h \ + elf32-target.h +elf32-score7.lo: \ + elf32-score7.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/score.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ elf32-score.h -elf64-sh64.lo: elf64-sh64.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/sh.h \ - $(INCDIR)/elf/reloc-macros.h elf64-target.h -elf64-sparc.lo: elf64-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/opcode/sparc.h elfxx-sparc.h elf64-target.h -elf64.lo: elf64.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfcore.h -mmo.lo: mmo.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h $(INCDIR)/elf/mmix.h $(INCDIR)/elf/reloc-macros.h \ +elf64-sh64.lo: \ + elf64-sh64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf64-target.h +elf64-sparc.lo: \ + elf64-sparc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/sparc.h \ + elf-bfd.h \ + elf64-target.h \ + elfxx-sparc.h +elf64.lo: \ + elf64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elfcode.h \ + elfcore.h +mmo.lo: \ + mmo.c \ + $(INCDIR)/elf/mmix.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ $(INCDIR)/opcode/mmix.h -nlm32-alpha.lo: nlm32-alpha.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/nlm/alpha-ext.h libnlm.h \ - $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \ - nlmswap.h nlm-target.h -nlm64.lo: nlm64.c nlmcode.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ - $(INCDIR)/nlm/external.h -coff-x86_64.lo: coff-x86_64.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h coffcode.h \ - coffswap.h -pe-x86_64.lo: pe-x86_64.c $(INCDIR)/filenames.h coff-x86_64.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h coffcode.h \ - peicode.h libpei.h -pei-x86_64.lo: pei-x86_64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h \ - $(INCDIR)/libiberty.h coff-x86_64.c coffcode.h peicode.h -aix386-core.lo: aix386-core.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h -hpux-core.lo: hpux-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -irix-core.lo: irix-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -lynx-core.lo: lynx-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -osf-core.lo: osf-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -sco5-core.lo: sco5-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h -trad-core.lo: trad-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h -cisco-core.lo: cisco-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -elf32-ia64.lo: elf32-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h \ - $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/objalloc.h \ +nlm32-alpha.lo: \ + nlm32-alpha.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/alpha-ext.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h \ + nlm-target.h \ + nlmswap.h +nlm64.lo: \ + nlm64.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h \ + nlmcode.h +coff-x86_64.lo: \ + coff-x86_64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/x86_64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +pe-x86_64.lo: \ + pe-x86_64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/x86_64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coff-x86_64.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-x86_64.lo: \ + pei-x86_64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/x86_64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coff-x86_64.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +aix386-core.lo: \ + aix386-core.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h +hpux-core.lo: \ + hpux-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +irix-core.lo: \ + irix-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +lynx-core.lo: \ + lynx-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +osf-core.lo: \ + osf-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +sco5-core.lo: \ + sco5-core.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libaout.h +trad-core.lo: \ + trad-core.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libaout.h +cisco-core.lo: \ + cisco-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +elf32-ia64.lo: \ + elf32-ia64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/ia64.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/objalloc.h \ + $(INCDIR)/opcode/ia64.h \ + elf-bfd.h \ elf32-target.h -elf64-ia64.lo: elf64-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h \ - $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/objalloc.h \ +elf64-ia64.lo: \ + elf64-ia64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/ia64.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/objalloc.h \ + $(INCDIR)/opcode/ia64.h \ + elf-bfd.h \ elf64-target.h -peigen.lo: peigen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h -pepigen.lo: pepigen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/ia64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h -pex64igen.lo: pex64igen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h +peigen.lo: \ + peigen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h \ + libpei.h +pepigen.lo: \ + pepigen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/ia64.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h \ + libpei.h +pex64igen.lo: \ + pex64igen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/x86_64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h \ + libpei.h # IF YOU PUT ANYTHING HERE IT WILL GO AWAY diff --git a/bfd/Makefile.in b/bfd/Makefile.in index d568e70e56..1f293f4db6 100644 --- a/bfd/Makefile.in +++ b/bfd/Makefile.in @@ -1006,15 +1006,15 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \ - cd $(srcdir) && $(AUTOMAKE) --foreign \ + echo ' cd $(srcdir) && $(AUTOMAKE) --cygnus '; \ + cd $(srcdir) && $(AUTOMAKE) --cygnus \ && exit 0; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --cygnus Makefile'; \ cd $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile + $(AUTOMAKE) --cygnus Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ @@ -1522,18 +1522,23 @@ uninstall_libbfd: DEP: dep.sed $(CFILES) $(HFILES) bfd.h rm -f DEP1 $(MAKE) MKDEP="$(MKDEP)" DEP1 - sed -f dep.sed < DEP1 > DEPA - echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA - if grep ' /' DEPA > /dev/null 2> /dev/null; then \ + echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEP1 + if grep ' /' DEP1 > /dev/null 2> /dev/null; then \ echo 'make DEP failed!'; exit 1; \ else \ - mv -f DEPA $@; \ + mv -f DEP1 $@; \ fi DEP1: $(CFILES) echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2 - $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2 + for f in $?; do \ + $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ + sed -n -e '1s/\.o: .*/.lo: \\/p' -e q < DEPA >> DEP2; \ + sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ + done + rm -f DEPA mv -f DEP2 $@ dep.sed: dep-in.sed config.status @@ -1632,970 +1637,2989 @@ bfdver.h: $(srcdir)/version.h $(srcdir)/Makefile.in # DO NOT DELETE THIS LINE -- mkdep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. -archive.lo: archive.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h \ +archive.lo: \ + archive.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/ranlib.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ $(INCDIR)/safe-ctype.h -archures.lo: archures.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +archures.lo: \ + archures.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/safe-ctype.h -bfd.lo: bfd.c $(INCDIR)/filenames.h bfdver.h $(INCDIR)/libiberty.h \ - $(INCDIR)/demangle.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - libcoff.h libecoff.h $(INCDIR)/coff/ecoff.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h -bfdio.lo: bfdio.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -bfdwin.lo: bfdwin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cache.lo: cache.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +bfd.lo: \ + bfd.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/demangle.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h \ + bfdver.h \ + elf-bfd.h \ + libcoff.h \ + libecoff.h +bfdio.lo: \ + bfdio.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +bfdwin.lo: \ + bfdwin.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cache.lo: \ + cache.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -coffgen.lo: coffgen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h -corefile.lo: corefile.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -format.lo: format.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -init.lo: init.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -libbfd.lo: libbfd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -opncls.lo: opncls.c $(INCDIR)/filenames.h $(INCDIR)/objalloc.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h -reloc.lo: reloc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h -section.lo: section.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h -syms.lo: syms.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def -targets.lo: targets.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/fnmatch.h targmatch.h -hash.lo: hash.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/objalloc.h $(INCDIR)/libiberty.h -linker.lo: linker.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h -srec.lo: srec.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -binary.lo: binary.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/hashtab.h -tekhex.lo: tekhex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +coffgen.lo: \ + coffgen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h +corefile.lo: \ + corefile.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +format.lo: \ + format.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +init.lo: \ + init.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +libbfd.lo: \ + libbfd.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +opncls.lo: \ + opncls.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/objalloc.h +reloc.lo: \ + reloc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +section.lo: \ + section.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +syms.lo: \ + syms.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h +targets.lo: \ + targets.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/fnmatch.h \ + $(INCDIR)/hashtab.h \ + targmatch.h +hash.lo: \ + hash.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/objalloc.h +linker.lo: \ + linker.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + genlink.h +srec.lo: \ + srec.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h +binary.lo: \ + binary.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h +tekhex.lo: \ + tekhex.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -ihex.lo: ihex.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -stabs.lo: stabs.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/safe-ctype.h -stab-syms.lo: stab-syms.c libaout.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab.def -merge.lo: merge.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +ihex.lo: \ + ihex.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h +stabs.lo: \ + stabs.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h +stab-syms.lo: \ + stab-syms.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/bfdlink.h \ + libaout.h +merge.lo: \ + merge.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -dwarf2.lo: dwarf2.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/dwarf2.h -simple.lo: simple.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h -compress.lo: compress.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -verilog.lo: verilog.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -archive64.lo: archive64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/ar.h -cpu-alpha.lo: cpu-alpha.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-arc.lo: cpu-arc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-arm.lo: cpu-arm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +dwarf2.lo: \ + dwarf2.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h +simple.lo: \ + simple.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +compress.lo: \ + compress.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +verilog.lo: \ + verilog.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h +archive64.lo: \ + archive64.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-alpha.lo: \ + cpu-alpha.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-arc.lo: \ + cpu-arc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-arm.lo: \ + cpu-arm.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -cpu-avr.lo: cpu-avr.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-bfin.lo: cpu-bfin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-cr16.lo: cpu-cr16.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-cris.lo: cpu-cris.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-cr16c.lo: cpu-cr16c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-crx.lo: cpu-crx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-d10v.lo: cpu-d10v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-d30v.lo: cpu-d30v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-dlx.lo: cpu-dlx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-fr30.lo: cpu-fr30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-frv.lo: cpu-frv.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-moxie.lo: cpu-moxie.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-h8300.lo: cpu-h8300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-h8500.lo: cpu-h8500.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-hppa.lo: cpu-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-ia64.lo: cpu-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - cpu-ia64-opc.c $(srcdir)/../opcodes/ia64-opc.h $(INCDIR)/opcode/ia64.h -cpu-i370.lo: cpu-i370.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-i386.lo: cpu-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-i860.lo: cpu-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-i960.lo: cpu-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-ip2k.lo: cpu-ip2k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-iq2000.lo: cpu-iq2000.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-lm32.lo: cpu-lm32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m32c.lo: cpu-m32c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m32r.lo: cpu-m32r.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m68hc11.lo: cpu-m68hc11.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h -cpu-m68hc12.lo: cpu-m68hc12.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h -cpu-m68k.lo: cpu-m68k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +cpu-avr.lo: \ + cpu-avr.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-bfin.lo: \ + cpu-bfin.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-cr16.lo: \ + cpu-cr16.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-cris.lo: \ + cpu-cris.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-cr16c.lo: \ + cpu-cr16c.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-crx.lo: \ + cpu-crx.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-d10v.lo: \ + cpu-d10v.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-d30v.lo: \ + cpu-d30v.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-dlx.lo: \ + cpu-dlx.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-fr30.lo: \ + cpu-fr30.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-frv.lo: \ + cpu-frv.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-moxie.lo: \ + cpu-moxie.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-h8300.lo: \ + cpu-h8300.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-h8500.lo: \ + cpu-h8500.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-hppa.lo: \ + cpu-hppa.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-ia64.lo: \ + cpu-ia64.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/ia64.h \ + $(srcdir)/../opcodes/ia64-opc.h \ + cpu-ia64-opc.c +cpu-i370.lo: \ + cpu-i370.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-i386.lo: \ + cpu-i386.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-i860.lo: \ + cpu-i860.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-i960.lo: \ + cpu-i960.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-ip2k.lo: \ + cpu-ip2k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-iq2000.lo: \ + cpu-iq2000.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-lm32.lo: \ + cpu-lm32.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m32c.lo: \ + cpu-m32c.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m32r.lo: \ + cpu-m32r.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m68hc11.lo: \ + cpu-m68hc11.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m68hc12.lo: \ + cpu-m68hc12.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m68k.lo: \ + cpu-m68k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/opcode/m68k.h -cpu-m88k.lo: cpu-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m10200.lo: cpu-m10200.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-m10300.lo: cpu-m10300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-maxq.lo: cpu-maxq.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mcore.lo: cpu-mcore.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mep.lo: cpu-mep.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mips.lo: cpu-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mmix.lo: cpu-mmix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-mt.lo: cpu-mt.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-msp430.lo: cpu-msp430.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-or32.lo: cpu-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-ns32k.lo: cpu-ns32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +cpu-m88k.lo: \ + cpu-m88k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m10200.lo: \ + cpu-m10200.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-m10300.lo: \ + cpu-m10300.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-maxq.lo: \ + cpu-maxq.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mcore.lo: \ + cpu-mcore.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mep.lo: \ + cpu-mep.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mips.lo: \ + cpu-mips.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mmix.lo: \ + cpu-mmix.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-mt.lo: \ + cpu-mt.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-msp430.lo: \ + cpu-msp430.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-or32.lo: \ + cpu-or32.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-ns32k.lo: \ + cpu-ns32k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ ns32k.h -cpu-openrisc.lo: cpu-openrisc.c $(INCDIR)/filenames.h \ +cpu-openrisc.lo: \ + cpu-openrisc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-pdp11.lo: \ + cpu-pdp11.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-pj.lo: \ + cpu-pj.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-powerpc.lo: \ + cpu-powerpc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-rs6000.lo: \ + cpu-rs6000.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-s390.lo: \ + cpu-s390.c \ + $(INCDIR)/filenames.h \ $(INCDIR)/hashtab.h -cpu-pdp11.lo: cpu-pdp11.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-pj.lo: cpu-pj.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-powerpc.lo: cpu-powerpc.c $(INCDIR)/filenames.h \ +cpu-score.lo: \ + cpu-score.c \ + $(INCDIR)/filenames.h \ $(INCDIR)/hashtab.h -cpu-rs6000.lo: cpu-rs6000.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-s390.lo: cpu-s390.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-score.lo: cpu-score.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-sh.lo: cpu-sh.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +cpu-sh.lo: \ + cpu-sh.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(srcdir)/../opcodes/sh-opc.h -cpu-sparc.lo: cpu-sparc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-spu.lo: cpu-spu.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-tic30.lo: cpu-tic30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-tic4x.lo: cpu-tic4x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-tic54x.lo: cpu-tic54x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-tic80.lo: cpu-tic80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-v850.lo: cpu-v850.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/safe-ctype.h -cpu-vax.lo: cpu-vax.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-we32k.lo: cpu-we32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-w65.lo: cpu-w65.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-xstormy16.lo: cpu-xstormy16.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h -cpu-xtensa.lo: cpu-xtensa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-xc16x.lo: cpu-xc16x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-z80.lo: cpu-z80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -cpu-z8k.lo: cpu-z8k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -aout-adobe.lo: aout-adobe.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/adobe.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - libaout.h $(INCDIR)/bfdlink.h -aout-arm.lo: aout-arm.c $(INCDIR)/filenames.h libaout.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h aoutx.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h -aout-cris.lo: aout-cris.c aout32.c aoutx.h $(INCDIR)/filenames.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h libaout.h \ - $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h -aout-ns32k.lo: aout-ns32k.c $(INCDIR)/aout/aout64.h \ - ns32k.h libaout.h $(INCDIR)/bfdlink.h aoutx.h $(INCDIR)/filenames.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -aout-sparcle.lo: aout-sparcle.c $(INCDIR)/bfdlink.h \ - libaout.h aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/sun4.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h -aout-tic30.lo: aout-tic30.c $(INCDIR)/filenames.h libaout.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aoutx.h \ - $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h -aout0.lo: aout0.c aoutf1.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h aout-target.h -aout32.lo: aout32.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -armnetbsd.lo: armnetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -bout.lo: bout.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/bout.h $(INCDIR)/libiberty.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h -cf-i386lynx.lo: cf-i386lynx.c $(INCDIR)/filenames.h \ - coff-i386.c $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -cf-sparclynx.lo: cf-sparclynx.c coff-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-apollo.lo: coff-apollo.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/apollo.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-arm.lo: coff-arm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-aux.lo: coff-aux.c $(INCDIR)/filenames.h $(INCDIR)/coff/aux-coff.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \ - coff-m68k.c $(INCDIR)/hashtab.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-h8300.lo: coff-h8300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/coff/h8300.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/libiberty.h coffcode.h coffswap.h -coff-h8500.lo: coff-h8500.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/h8500.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-i386.lo: coff-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-i860.lo: coff-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/i860.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-go32.lo: coff-go32.c coff-i386.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-i960.lo: coff-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/i960.h $(INCDIR)/coff/internal.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-m68k.lo: coff-m68k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-m88k.lo: coff-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/m88k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-maxq.lo: coff-maxq.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/maxq.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h \ - coffcode.h coffswap.h -coff-mips.lo: coff-mips.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h \ - $(INCDIR)/coff/external.h libcoff.h libecoff.h coffswap.h \ - ecoffswap.h -coff-or32.lo: coff-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/or32.h $(INCDIR)/coff/internal.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-rs6000.lo: coff-rs6000.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/xcoff.h $(INCDIR)/coff/rs6000.h libcoff.h \ - libxcoff.h coffcode.h coffswap.h -coff-sh.lo: coff-sh.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h coffcode.h coffswap.h -coff-sparc.lo: coff-sparc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/sparc.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-stgo32.lo: coff-stgo32.c coff-i386.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/go32exe.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h \ - go32stub.h -coff-svm68k.lo: coff-svm68k.c coff-m68k.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-tic30.lo: coff-tic30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic30.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-tic4x.lo: coff-tic4x.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic4x.h $(INCDIR)/coff/ti.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-tic54x.lo: coff-tic54x.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/tic54x.h \ - $(INCDIR)/coff/ti.h $(INCDIR)/coff/internal.h libcoff.h \ - coffcode.h coffswap.h -coff-tic80.lo: coff-tic80.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/tic80.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-u68k.lo: coff-u68k.c coff-m68k.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/m68k.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h \ - coffcode.h coffswap.h -coff-we32k.lo: coff-we32k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/we32k.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - libcoff.h $(INCDIR)/bfdlink.h coffcode.h coffswap.h -coff-w65.lo: coff-w65.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/w65.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-z80.lo: coff-z80.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/z80.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -coff-z8k.lo: coff-z8k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/coff/z8k.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h coffcode.h coffswap.h -cofflink.lo: cofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h libcoff.h \ +cpu-sparc.lo: \ + cpu-sparc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-spu.lo: \ + cpu-spu.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-tic30.lo: \ + cpu-tic30.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-tic4x.lo: \ + cpu-tic4x.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-tic54x.lo: \ + cpu-tic54x.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-tic80.lo: \ + cpu-tic80.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-v850.lo: \ + cpu-v850.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/safe-ctype.h -dwarf1.lo: dwarf1.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/dwarf.h -ecoff.lo: ecoff.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/aout/ar.h $(INCDIR)/aout/ranlib.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def libaout.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h libcoff.h \ - libecoff.h $(INCDIR)/libiberty.h -ecofflink.lo: ecofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/objalloc.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h libcoff.h \ +cpu-vax.lo: \ + cpu-vax.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-we32k.lo: \ + cpu-we32k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-w65.lo: \ + cpu-w65.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-xstormy16.lo: \ + cpu-xstormy16.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-xtensa.lo: \ + cpu-xtensa.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-xc16x.lo: \ + cpu-xc16x.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-z80.lo: \ + cpu-z80.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +cpu-z8k.lo: \ + cpu-z8k.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +aout-adobe.lo: \ + aout-adobe.c \ + $(INCDIR)/aout/adobe.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libaout.h +aout-arm.lo: \ + aout-arm.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + aoutx.h \ + libaout.h +aout-cris.lo: \ + aout-cris.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + aout32.c \ + aoutx.h \ + libaout.h +aout-ns32k.lo: \ + aout-ns32k.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aoutx.h \ + libaout.h \ + ns32k.h +aout-sparcle.lo: \ + aout-sparcle.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + aoutf1.h \ + libaout.h +aout-tic30.lo: \ + aout-tic30.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aoutx.h \ + libaout.h +aout0.lo: \ + aout0.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + aoutf1.h \ + libaout.h +aout32.lo: \ + aout32.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aoutx.h \ + libaout.h +armnetbsd.lo: \ + armnetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +bout.lo: \ + bout.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/bout.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + genlink.h \ + libaout.h +cf-i386lynx.lo: \ + cf-i386lynx.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +cf-sparclynx.lo: \ + cf-sparclynx.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-sparc.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-apollo.lo: \ + coff-apollo.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/apollo.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-arm.lo: \ + coff-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-aux.lo: \ + coff-aux.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/aux-coff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m68k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-m68k.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-h8300.lo: \ + coff-h8300.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/h8300.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coffcode.h \ + coffswap.h \ + genlink.h \ + libcoff.h +coff-h8500.lo: \ + coff-h8500.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/h8500.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-i386.lo: \ + coff-i386.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-i860.lo: \ + coff-i860.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i860.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-go32.lo: \ + coff-go32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-i960.lo: \ + coff-i960.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/i960.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-m68k.lo: \ + coff-m68k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m68k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-m88k.lo: \ + coff-m88k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m88k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-maxq.lo: \ + coff-maxq.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/maxq.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-mips.lo: \ + coff-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mips.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffswap.h \ + ecoffswap.h \ + libcoff.h \ libecoff.h -elf.lo: elf.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h -elf32-am33lin.lo: elf32-am33lin.c $(INCDIR)/filenames.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h \ - $(INCDIR)/elf/reloc-macros.h elf-m10300.c $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h elf32-target.h -elf32-arc.lo: elf32-arc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +coff-or32.lo: \ + coff-or32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/or32.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-rs6000.lo: \ + coff-rs6000.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/rs6000.h \ + $(INCDIR)/coff/xcoff.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h \ + libxcoff.h +coff-sh.lo: \ + coff-sh.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-sparc.lo: \ + coff-sparc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-stgo32.lo: \ + coff-stgo32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/go32exe.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + coffswap.h \ + go32stub.h \ + libcoff.h +coff-svm68k.lo: \ + coff-svm68k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m68k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-m68k.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-tic30.lo: \ + coff-tic30.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/tic30.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-tic4x.lo: \ + coff-tic4x.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/ti.h \ + $(INCDIR)/coff/tic4x.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-tic54x.lo: \ + coff-tic54x.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/ti.h \ + $(INCDIR)/coff/tic54x.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-tic80.lo: \ + coff-tic80.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/tic80.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-u68k.lo: \ + coff-u68k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/m68k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-m68k.c \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-we32k.lo: \ + coff-we32k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/we32k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-w65.lo: \ + coff-w65.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/w65.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-z80.lo: \ + coff-z80.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/z80.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +coff-z8k.lo: \ + coff-z8k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/z8k.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +cofflink.lo: \ + cofflink.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + libcoff.h +dwarf1.lo: \ + dwarf1.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h +ecoff.lo: \ + ecoff.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/ranlib.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + libaout.h \ + libcoff.h \ + libecoff.h +ecofflink.lo: \ + ecofflink.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/objalloc.h \ + libcoff.h \ + libecoff.h +elf.lo: \ + elf.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h \ + elf-bfd.h +elf32-am33lin.lo: \ + elf32-am33lin.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mn10300.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf-m10300.c \ + elf32-target.h +elf32-arc.lo: \ + elf32-arc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/arc.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-arm.lo: \ + elf32-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/arm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-target.h +elf32-avr.lo: \ + elf32-avr.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/avr.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-avr.h \ + elf32-target.h +elf32-bfin.lo: \ + elf32-bfin.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/bfin.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-cr16.lo: \ + elf32-cr16.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/cr16.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-cr16c.lo: \ + elf32-cr16c.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/cr16c.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-cris.lo: \ + elf32-cris.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/cris.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-crx.lo: \ + elf32-crx.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/crx.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-d10v.lo: \ + elf32-d10v.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/d10v.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-d30v.lo: \ + elf32-d30v.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/d30v.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-dlx.lo: \ + elf32-dlx.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dlx.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-fr30.lo: \ + elf32-fr30.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/fr30.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-frv.lo: \ + elf32-frv.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/frv.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-moxie.lo: \ + elf32-moxie.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/moxie.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-gen.lo: \ + elf32-gen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-arm.lo: elf32-arm.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - elf-vxworks.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h \ +elf32-h8300.lo: \ + elf32-h8300.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/h8.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-avr.lo: elf32-avr.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/avr.h \ - $(INCDIR)/elf/reloc-macros.h elf32-avr.h elf32-target.h -elf32-bfin.lo: elf32-bfin.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/bfin.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/dwarf2.h \ +elf32-hppa.lo: \ + elf32-hppa.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/hppa.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf-hppa.h \ + elf32-hppa.h \ + elf32-target.h \ + libhppa.h +elf32-i370.lo: \ + elf32-i370.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/i370.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-cr16.lo: elf32-cr16.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/elf/cr16.h $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-cr16c.lo: elf32-cr16c.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/cr16c.h \ - $(INCDIR)/elf/reloc-macros.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-target.h -elf32-cris.lo: elf32-cris.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/cris.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-crx.lo: elf32-crx.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/crx.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-d10v.lo: elf32-d10v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/d10v.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-d30v.lo: elf32-d30v.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/d30v.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-dlx.lo: elf32-dlx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/dlx.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-fr30.lo: elf32-fr30.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/fr30.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-frv.lo: elf32-frv.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/frv.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/dwarf2.h \ +elf32-i386.lo: \ + elf32-i386.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/i386.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + bfd_stdint.h \ + elf-bfd.h \ + elf-vxworks.h \ elf32-target.h -elf32-moxie.lo: elf32-moxie.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/moxie.h $(INCDIR)/elf/reloc-macros.h \ +elf32-i860.lo: \ + elf32-i860.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/i860.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-gen.lo: elf32-gen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h -elf32-h8300.lo: elf32-h8300.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-hppa.lo: elf32-hppa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h \ - $(INCDIR)/elf/reloc-macros.h libhppa.h elf32-hppa.h \ - elf-hppa.h elf32-target.h -elf32-i370.lo: elf32-i370.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/i370.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-i386.lo: elf32-i386.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf-vxworks.h \ - bfd_stdint.h $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h \ +elf32-i960.lo: \ + elf32-i960.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/i960.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-i860.lo: elf32-i860.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/i860.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-i960.lo: elf32-i960.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/i960.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-ip2k.lo: elf32-ip2k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/ip2k.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-iq2000.lo: elf32-iq2000.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/iq2000.h $(INCDIR)/elf/reloc-macros.h \ +elf32-ip2k.lo: \ + elf32-ip2k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/ip2k.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-lm32.lo: elf32-lm32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/lm32.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-m32c.lo: elf32-m32c.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32c.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-iq2000.lo: \ + elf32-iq2000.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/iq2000.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-m32r.lo: elf32-m32r.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/m32r.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-m68k.lo: elf32-m68k.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/m68k.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/m68k.h \ +elf32-lm32.lo: \ + elf32-lm32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/lm32.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-m68hc11.lo: elf32-m68hc11.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-m68hc1x.h \ - $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/opcode/m68hc11.h elf32-target.h -elf32-m68hc12.lo: elf32-m68hc12.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf32-m68hc1x.h \ - $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/opcode/m68hc11.h elf32-target.h -elf32-m68hc1x.lo: elf32-m68hc1x.c $(INCDIR)/alloca-conf.h \ - $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h elf32-m68hc1x.h $(INCDIR)/elf/m68hc11.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/m68hc11.h -elf32-m88k.lo: elf32-m88k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h -elf-m10200.lo: elf-m10200.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf32-target.h -elf-m10300.lo: elf-m10300.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mn10300.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-m32c.lo: \ + elf32-m32c.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m32c.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ elf32-target.h -elf32-mcore.lo: elf32-mcore.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/mcore.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-mep.lo: elf32-mep.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mep.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-m32r.lo: \ + elf32-m32r.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m32r.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elfxx-mips.lo: elfxx-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ - elf-vxworks.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h -elf32-mips.lo: elf32-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfxx-mips.h \ - $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h elf-vxworks.h \ - $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \ - ecoffswap.h elf32-target.h -elf32-mt.lo: elf32-mt.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mt.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-msp430.lo: elf32-msp430.c $(INCDIR)/filenames.h \ - $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/msp430.h $(INCDIR)/elf/reloc-macros.h \ +elf32-m68k.lo: \ + elf32-m68k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m68k.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/m68k.h \ + elf-bfd.h \ elf32-target.h -elf32-openrisc.lo: elf32-openrisc.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/openrisc.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/libiberty.h elf32-target.h -elf32-or32.lo: elf32-or32.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/or32.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-m68hc11.lo: \ + elf32-m68hc11.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m68hc11.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/m68hc11.h \ + elf-bfd.h \ + elf32-m68hc1x.h \ elf32-target.h -elf32-pj.lo: elf32-pj.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/pj.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-ppc.lo: elf32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/ppc.h \ - $(INCDIR)/elf/reloc-macros.h elf32-ppc.h elf-vxworks.h \ +elf32-m68hc12.lo: \ + elf32-m68hc12.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m68hc11.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/m68hc11.h \ + elf-bfd.h \ + elf32-m68hc1x.h \ elf32-target.h -elf32-sh64.lo: elf32-sh64.c $(INCDIR)/filenames.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(srcdir)/../opcodes/sh64-opc.h \ - elf32-sh64.h elf32-sh.c $(INCDIR)/hashtab.h elf-vxworks.h \ - $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ - $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h -elf32-sh64-com.lo: elf32-sh64-com.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h elf32-sh64.h \ - $(srcdir)/../opcodes/sh64-opc.h -elf32-s390.lo: elf32-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/s390.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-sh.lo: elf32-sh.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elf-vxworks.h \ - $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ - $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h -elf32-sh-symbian.lo: elf32-sh-symbian.c elf32-sh.c \ - $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h elf-vxworks.h $(INCDIR)/elf/sh.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ - $(srcdir)/../opcodes/sh-opc.h elf32-sh-relocs.h elf32-target.h -elfxx-sparc.lo: elfxx-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/opcode/sparc.h elfxx-sparc.h elf-vxworks.h -elf32-sparc.lo: elf32-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/sparc.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/sparc.h \ - elfxx-sparc.h elf-vxworks.h elf32-target.h -elf32-spu.lo: elf32-spu.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/spu.h \ - $(INCDIR)/elf/reloc-macros.h elf32-spu.h elf32-target.h -elf32-v850.lo: elf32-v850.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/v850.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/libiberty.h \ +elf32-m68hc1x.lo: \ + elf32-m68hc1x.c \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m68hc11.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/m68hc11.h \ + elf-bfd.h \ + elf32-m68hc1x.h +elf32-m88k.lo: \ + elf32-m88k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf32-target.h -elf32-vax.lo: elf32-vax.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/vax.h \ - $(INCDIR)/elf/reloc-macros.h elf32-target.h -elf32-xstormy16.lo: elf32-xstormy16.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/xstormy16.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/libiberty.h elf32-target.h -elf32-xtensa.lo: elf32-xtensa.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/xtensa.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/xtensa-isa.h \ - $(INCDIR)/xtensa-config.h elf32-target.h -elf32-xc16x.lo: elf32-xc16x.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/xc16x.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/elf/dwarf2.h $(INCDIR)/libiberty.h elf32-target.h -elf32.lo: elf32.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfcore.h -elflink.lo: elflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/libiberty.h $(INCDIR)/objalloc.h -elf-attrs.lo: elf-attrs.c $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h -elf-strtab.lo: elf-strtab.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h -elf-eh-frame.lo: elf-eh-frame.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/dwarf2.h -elf-vxworks.lo: elf-vxworks.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - elf-vxworks.h $(INCDIR)/elf/vxworks.h -epoc-pe-arm.lo: epoc-pe-arm.c pe-arm.c $(INCDIR)/filenames.h \ - coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -epoc-pei-arm.lo: epoc-pei-arm.c pei-arm.c $(INCDIR)/filenames.h \ - coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -hp300bsd.lo: hp300bsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -hp300hpux.lo: hp300hpux.c $(INCDIR)/aout/hp300hpux.h \ - aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ - aout-target.h -som.lo: som.c $(INCDIR)/alloca-conf.h $(INCDIR)/filenames.h -i386aout.lo: i386aout.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h libaout.h $(INCDIR)/bfdlink.h \ - aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -i386bsd.lo: i386bsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -i386dynix.lo: i386dynix.c $(INCDIR)/aout/dynix3.h aoutx.h \ - $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \ - libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ - aout-target.h -i386freebsd.lo: i386freebsd.c freebsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -i386linux.lo: i386linux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -i386lynx.lo: i386lynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ - aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -i386msdos.lo: i386msdos.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h -i386netbsd.lo: i386netbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -i386mach3.lo: i386mach3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -i386os9k.lo: i386os9k.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/os9k.h -ieee.lo: ieee.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/ieee.h libieee.h $(INCDIR)/safe-ctype.h -m68k4knetbsd.lo: m68k4knetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -m68klinux.lo: m68klinux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -m68knetbsd.lo: m68knetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -m88kmach3.lo: m88kmach3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -m88kopenbsd.lo: m88kopenbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -mach-o.lo: mach-o.c $(INCDIR)/filenames.h mach-o.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def mach-o-target.c -mipsbsd.lo: mipsbsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -newsos3.lo: newsos3.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -nlm.lo: nlm.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ - $(INCDIR)/nlm/external.h -nlm32-i386.lo: nlm32-i386.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/nlm/i386-ext.h libnlm.h $(INCDIR)/nlm/common.h \ - $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \ - nlm-target.h -nlm32-sparc.lo: nlm32-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/nlm/sparc32-ext.h libnlm.h \ - $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \ - nlmswap.h nlm-target.h -nlm32-ppc.lo: nlm32-ppc.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/nlm/ppc-ext.h libnlm.h $(INCDIR)/nlm/common.h \ - $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmswap.h \ - nlm-target.h -nlm32.lo: nlm32.c nlmcode.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ - $(INCDIR)/nlm/external.h -ns32knetbsd.lo: ns32knetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -oasys.lo: oasys.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/hashtab.h $(INCDIR)/oasys.h liboasys.h -pc532-mach.lo: pc532-mach.c $(INCDIR)/filenames.h libaout.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -pdp11.lo: pdp11.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h \ +elf-m10200.lo: \ + elf-m10200.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf-m10300.lo: \ + elf-m10300.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mn10300.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-mcore.lo: \ + elf32-mcore.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mcore.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-mep.lo: \ + elf32-mep.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mep.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elfxx-mips.lo: \ + elfxx-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/mips.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf-vxworks.h \ + elfxx-mips.h +elf32-mips.lo: \ + elf32-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mips.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + ecoffswap.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-target.h \ + elfxx-mips.h \ + genlink.h +elf32-mt.lo: \ + elf32-mt.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mt.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-msp430.lo: \ + elf32-msp430.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/msp430.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-openrisc.lo: \ + elf32-openrisc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/openrisc.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-or32.lo: \ + elf32-or32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/or32.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-pj.lo: \ + elf32-pj.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/pj.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-ppc.lo: \ + elf32-ppc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/ppc.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-ppc.h \ + elf32-target.h +elf32-sh64.lo: \ + elf32-sh64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(srcdir)/../opcodes/sh-opc.h \ + $(srcdir)/../opcodes/sh64-opc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-sh-relocs.h \ + elf32-sh.c \ + elf32-sh64.h \ + elf32-target.h +elf32-sh64-com.lo: \ + elf32-sh64-com.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(srcdir)/../opcodes/sh64-opc.h \ + elf-bfd.h \ + elf32-sh64.h +elf32-s390.lo: \ + elf32-s390.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/s390.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-sh.lo: \ + elf32-sh.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(srcdir)/../opcodes/sh-opc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-sh-relocs.h \ + elf32-target.h +elf32-sh-symbian.lo: \ + elf32-sh-symbian.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(srcdir)/../opcodes/sh-opc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-sh-relocs.h \ + elf32-sh.c \ + elf32-target.h +elfxx-sparc.lo: \ + elfxx-sparc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/sparc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elfxx-sparc.h +elf32-sparc.lo: \ + elf32-sparc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/sparc.h \ + elf-bfd.h \ + elf-vxworks.h \ + elf32-target.h \ + elfxx-sparc.h +elf32-spu.lo: \ + elf32-spu.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/spu.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-spu.h \ + elf32-target.h +elf32-v850.lo: \ + elf32-v850.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/v850.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-vax.lo: \ + elf32-vax.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/vax.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf32-target.h +elf32-xstormy16.lo: \ + elf32-xstormy16.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/xstormy16.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32-xtensa.lo: \ + elf32-xtensa.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/xtensa.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/xtensa-config.h \ + $(INCDIR)/xtensa-isa.h \ + elf-bfd.h \ + elf32-target.h +elf32-xc16x.lo: \ + elf32-xc16x.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/xc16x.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-target.h +elf32.lo: \ + elf32.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elfcode.h \ + elfcore.h +elflink.lo: \ + elflink.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/objalloc.h \ + $(INCDIR)/safe-ctype.h \ + elf-bfd.h +elf-attrs.lo: \ + elf-attrs.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h +elf-strtab.lo: \ + elf-strtab.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h +elf-eh-frame.lo: \ + elf-eh-frame.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/dwarf2.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h +elf-vxworks.lo: \ + elf-vxworks.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/vxworks.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf-vxworks.h +epoc-pe-arm.lo: \ + epoc-pe-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pe-arm.c \ + peicode.h +epoc-pei-arm.lo: \ + epoc-pei-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pei-arm.c \ + peicode.h +hp300bsd.lo: \ + hp300bsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +hp300hpux.lo: \ + hp300hpux.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/hp300hpux.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + aoutx.h \ + libaout.h +som.lo: \ + som.c \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/filenames.h +i386aout.lo: \ + i386aout.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386bsd.lo: \ + i386bsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386dynix.lo: \ + i386dynix.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/dynix3.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + aoutx.h \ + libaout.h +i386freebsd.lo: \ + i386freebsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + freebsd.h \ + libaout.h +i386linux.lo: \ + i386linux.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386lynx.lo: \ + i386lynx.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386msdos.lo: \ + i386msdos.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libaout.h +i386netbsd.lo: \ + i386netbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +i386mach3.lo: \ + i386mach3.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +i386os9k.lo: \ + i386os9k.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/os9k.h \ + libaout.h +ieee.lo: \ + ieee.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/ieee.h \ + $(INCDIR)/safe-ctype.h \ + libieee.h +m68k4knetbsd.lo: \ + m68k4knetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +m68klinux.lo: \ + m68klinux.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +m68knetbsd.lo: \ + m68knetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +m88kmach3.lo: \ + m88kmach3.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +m88kopenbsd.lo: \ + m88kopenbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +mach-o.lo: \ + mach-o.c \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + mach-o-target.c \ + mach-o.h +mipsbsd.lo: \ + mipsbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +newsos3.lo: \ + newsos3.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +nlm.lo: \ + nlm.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h +nlm32-i386.lo: \ + nlm32-i386.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/i386-ext.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h \ + nlm-target.h \ + nlmswap.h +nlm32-sparc.lo: \ + nlm32-sparc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + $(INCDIR)/nlm/sparc32-ext.h \ + libnlm.h \ + nlm-target.h \ + nlmswap.h +nlm32-ppc.lo: \ + nlm32-ppc.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + $(INCDIR)/nlm/ppc-ext.h \ + libnlm.h \ + nlm-target.h \ + nlmswap.h +nlm32.lo: \ + nlm32.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h \ + nlmcode.h +ns32knetbsd.lo: \ + ns32knetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +oasys.lo: \ + oasys.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/oasys.h \ + $(INCDIR)/safe-ctype.h \ + liboasys.h +pc532-mach.lo: \ + pc532-mach.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +pdp11.lo: \ + pdp11.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aout-target.h \ + libaout.h +pef.lo: \ + pef.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/safe-ctype.h \ + pef-traceback.h \ + pef.h +pe-arm.lo: \ + pe-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-arm.lo: \ + pei-arm.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-arm-wince.lo: \ + pe-arm-wince.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pe-arm.c \ + peicode.h +pei-arm-wince.lo: \ + pei-arm-wince.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/arm.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-arm.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pei-arm.c \ + peicode.h +pe-i386.lo: \ + pe-i386.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-i386.lo: \ + pei-i386.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-i386.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-mcore.lo: \ + pe-mcore.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mcore.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-mcore.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-mcore.lo: \ + pei-mcore.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mcore.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-mcore.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-ppc.lo: \ + pe-ppc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/powerpc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-ppc.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-ppc.lo: \ + pei-ppc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/powerpc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-ppc.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-sh.lo: \ + pe-sh.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coff-sh.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-sh.lo: \ + pei-sh.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coff-sh.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pe-mips.lo: \ + pe-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mipspe.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-mips.lo: \ + pei-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mipspe.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + libcoff.h \ + libpei.h \ + pe-mips.c \ + peicode.h +ppcboot.lo: \ + ppcboot.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/safe-ctype.h -pef.lo: pef.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - pef.h pef-traceback.h $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h -pe-arm.lo: pe-arm.c $(INCDIR)/filenames.h coff-arm.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pei-arm.lo: pei-arm.c $(INCDIR)/filenames.h coff-arm.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pe-arm-wince.lo: pe-arm-wince.c $(INCDIR)/filenames.h \ - pe-arm.c coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -pei-arm-wince.lo: pei-arm-wince.c pei-arm.c $(INCDIR)/filenames.h \ - coff-arm.c $(INCDIR)/hashtab.h $(INCDIR)/coff/arm.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -pe-i386.lo: pe-i386.c $(INCDIR)/filenames.h coff-i386.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pei-i386.lo: pei-i386.c $(INCDIR)/filenames.h coff-i386.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pe-mcore.lo: pe-mcore.c $(INCDIR)/filenames.h coff-mcore.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pei-mcore.lo: pei-mcore.c $(INCDIR)/filenames.h coff-mcore.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/mcore.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pe-ppc.lo: pe-ppc.c $(INCDIR)/filenames.h coff-ppc.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pei-ppc.lo: pei-ppc.c $(INCDIR)/filenames.h coff-ppc.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/powerpc.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -pe-sh.lo: pe-sh.c $(INCDIR)/filenames.h coff-sh.c $(INCDIR)/libiberty.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/sh.h \ - $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \ - libpei.h -pei-sh.lo: pei-sh.c $(INCDIR)/filenames.h coff-sh.c \ - $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/coff/sh.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h coffcode.h peicode.h \ - libpei.h -pe-mips.lo: pe-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h coffcode.h \ - peicode.h libpei.h -pei-mips.lo: pei-mips.c $(INCDIR)/filenames.h pe-mips.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/mipspe.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -ppcboot.lo: ppcboot.c $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/hashtab.h -reloc16.lo: reloc16.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/bfdlink.h genlink.h $(INCDIR)/coff/internal.h \ +reloc16.lo: \ + reloc16.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + genlink.h \ libcoff.h -riscix.lo: riscix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h \ - aout-target.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -sparclinux.lo: sparclinux.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h libaout.h $(INCDIR)/bfdlink.h aout-target.h -sparclynx.lo: sparclynx.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/sun4.h libaout.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h aout-target.h -sparcnetbsd.lo: sparcnetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -sunos.lo: sunos.c $(INCDIR)/bfdlink.h libaout.h aoutf1.h \ - $(INCDIR)/filenames.h $(INCDIR)/hashtab.h $(INCDIR)/aout/sun4.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h aout-target.h -vaxnetbsd.lo: vaxnetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -vax1knetbsd.lo: vax1knetbsd.c netbsd.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h libaout.h $(INCDIR)/bfdlink.h aout-target.h \ - $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \ - $(INCDIR)/aout/ar.h -vaxbsd.lo: vaxbsd.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h aout-target.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -versados.lo: versados.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ +riscix.lo: \ + riscix.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +sparclinux.lo: \ + sparclinux.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +sparclynx.lo: \ + sparclynx.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +sparcnetbsd.lo: \ + sparcnetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +sunos.lo: \ + sunos.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + aoutf1.h \ + libaout.h +vaxnetbsd.lo: \ + vaxnetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +vax1knetbsd.lo: \ + vax1knetbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h \ + netbsd.h +vaxbsd.lo: \ + vaxbsd.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + libaout.h +versados.lo: \ + versados.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ $(INCDIR)/libiberty.h -vms.lo: vms.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h vms.h -vms-gsd.lo: vms-gsd.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h vms.h -vms-hdr.lo: vms-hdr.c $(INCDIR)/filenames.h bfdver.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h $(INCDIR)/hashtab.h \ +vms.lo: \ + vms.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + vms.h +vms-gsd.lo: \ + vms-gsd.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + vms.h +vms-hdr.lo: \ + vms-hdr.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + bfdver.h \ vms.h -vms-misc.lo: vms-misc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h vms.h -vms-tir.lo: vms-tir.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h vms.h -vmsutil.lo: vmsutil.c vmsutil.h -xcofflink.lo: xcofflink.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/xcoff.h \ - libcoff.h libxcoff.h $(INCDIR)/libiberty.h -xsym.lo: xsym.c $(INCDIR)/alloca-conf.h $(INCDIR)/filenames.h \ - xsym.h $(INCDIR)/hashtab.h -xtensa-isa.lo: xtensa-isa.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/xtensa-isa.h $(INCDIR)/xtensa-isa-internal.h -xtensa-modules.lo: xtensa-modules.c $(INCDIR)/xtensa-isa.h \ - $(INCDIR)/xtensa-isa-internal.h -aix5ppc-core.lo: aix5ppc-core.c $(INCDIR)/filenames.h -aout64.lo: aout64.c aoutx.h $(INCDIR)/filenames.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/bfdlink.h libaout.h $(INCDIR)/hashtab.h $(INCDIR)/aout/aout64.h \ - $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h -coff-alpha.lo: coff-alpha.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h \ - $(INCDIR)/coff/symconst.h $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h \ - $(INCDIR)/aout/ar.h libcoff.h libecoff.h coffswap.h \ - ecoffswap.h -coff64-rs6000.lo: coff64-rs6000.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/xcoff.h $(INCDIR)/coff/rs6k64.h libcoff.h \ - libxcoff.h coffcode.h coffswap.h -demo64.lo: demo64.c aoutf1.h $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/aout/sun4.h libaout.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \ - $(INCDIR)/aout/stab.def $(INCDIR)/aout/ar.h aout-target.h -pei-ia64.lo: pei-ia64.c $(INCDIR)/filenames.h coff-ia64.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/ia64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h coffcode.h peicode.h libpei.h -elf64-x86-64.lo: elf64-x86-64.c $(INCDIR)/filenames.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h bfd_stdint.h \ - $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/reloc-macros.h \ +vms-misc.lo: \ + vms-misc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + vms.h +vms-tir.lo: \ + vms-tir.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + vms.h +vmsutil.lo: \ + vmsutil.c \ + vmsutil.h +xcofflink.lo: \ + xcofflink.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/xcoff.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + libcoff.h \ + libxcoff.h +xsym.lo: \ + xsym.c \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + xsym.h +xtensa-isa.lo: \ + xtensa-isa.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/xtensa-isa-internal.h \ + $(INCDIR)/xtensa-isa.h +xtensa-modules.lo: \ + xtensa-modules.c \ + $(INCDIR)/xtensa-isa-internal.h \ + $(INCDIR)/xtensa-isa.h +aix5ppc-core.lo: \ + aix5ppc-core.c \ + $(INCDIR)/filenames.h +aout64.lo: \ + aout64.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/safe-ctype.h \ + aoutx.h \ + libaout.h +coff-alpha.lo: \ + coff-alpha.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/alpha.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffswap.h \ + ecoffswap.h \ + libcoff.h \ + libecoff.h +coff64-rs6000.lo: \ + coff64-rs6000.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/rs6k64.h \ + $(INCDIR)/coff/xcoff.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coffcode.h \ + coffswap.h \ + libcoff.h \ + libxcoff.h +demo64.lo: \ + demo64.c \ + $(INCDIR)/aout/aout64.h \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/aout/stab.def \ + $(INCDIR)/aout/stab_gnu.h \ + $(INCDIR)/aout/sun4.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + aout-target.h \ + aoutf1.h \ + libaout.h +pei-ia64.lo: \ + pei-ia64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/ia64.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + coff-ia64.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +elf64-x86-64.lo: \ + elf64-x86-64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/x86-64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + bfd_stdint.h \ + elf-bfd.h \ elf64-target.h -elf64-alpha.lo: elf64-alpha.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/alpha.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h $(INCDIR)/aout/ar.h \ - libcoff.h libecoff.h ecoffswap.h elf64-target.h -elf64-hppa.lo: elf64-hppa.c $(INCDIR)/alloca-conf.h \ - $(INCDIR)/filenames.h $(INCDIR)/hashtab.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/reloc-macros.h \ - libhppa.h elf64-hppa.h elf-hppa.h elf64-target.h -elf64-gen.lo: elf64-gen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h elf64-target.h -elfn32-mips.lo: elfn32-mips.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/bfdlink.h genlink.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/mips.h $(INCDIR)/coff/external.h \ - ecoffswap.h elf32-target.h -elf64-mips.lo: elf64-mips.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/aout/ar.h $(INCDIR)/bfdlink.h genlink.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - elfxx-mips.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/coff/sym.h $(INCDIR)/coff/symconst.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/ecoff.h $(INCDIR)/coff/alpha.h ecoffswap.h \ +elf64-alpha.lo: \ + elf64-alpha.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/alpha.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/alpha.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + ecoffswap.h \ + elf-bfd.h \ + elf64-target.h \ + libcoff.h \ + libecoff.h +elf64-hppa.lo: \ + elf64-hppa.c \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/hppa.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf-hppa.h \ + elf64-hppa.h \ + elf64-target.h \ + libhppa.h +elf64-gen.lo: \ + elf64-gen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf64-target.h +elfn32-mips.lo: \ + elfn32-mips.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/mips.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + ecoffswap.h \ + elf-bfd.h \ + elf32-target.h \ + elfxx-mips.h \ + genlink.h +elf64-mips.lo: \ + elf64-mips.c \ + $(INCDIR)/aout/ar.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/alpha.h \ + $(INCDIR)/coff/ecoff.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/sym.h \ + $(INCDIR)/coff/symconst.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + ecoffswap.h \ + elf-bfd.h \ + elf64-target.h \ + elfxx-mips.h \ + genlink.h +elf64-mmix.lo: \ + elf64-mmix.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mmix.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/mmix.h \ + elf-bfd.h \ + elf64-target.h +elf64-ppc.lo: \ + elf64-ppc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/ppc64.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf64-ppc.h \ elf64-target.h -elf64-mmix.lo: elf64-mmix.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/mmix.h \ - $(INCDIR)/elf/reloc-macros.h $(INCDIR)/opcode/mmix.h \ +elf64-s390.lo: \ + elf64-s390.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/s390.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ elf64-target.h -elf64-ppc.lo: elf64-ppc.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/ppc64.h \ - $(INCDIR)/elf/reloc-macros.h elf64-ppc.h elf64-target.h -elf64-s390.lo: elf64-s390.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/s390.h \ - $(INCDIR)/elf/reloc-macros.h elf64-target.h -elf32-score.lo: elf32-score.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h \ - elf32-score.h elf32-target.h -elf32-score7.lo: elf32-score7.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/libiberty.h elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h $(INCDIR)/elf/reloc-macros.h \ +elf32-score.lo: \ + elf32-score.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/score.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elf32-score.h \ + elf32-target.h +elf32-score7.lo: \ + elf32-score7.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/score.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ elf32-score.h -elf64-sh64.lo: elf64-sh64.c $(INCDIR)/filenames.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/sh.h \ - $(INCDIR)/elf/reloc-macros.h elf64-target.h -elf64-sparc.lo: elf64-sparc.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h \ - $(INCDIR)/elf/sparc.h $(INCDIR)/elf/reloc-macros.h \ - $(INCDIR)/opcode/sparc.h elfxx-sparc.h elf64-target.h -elf64.lo: elf64.c elfcode.h $(INCDIR)/filenames.h $(INCDIR)/libiberty.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/hashtab.h elf-bfd.h $(INCDIR)/elf/common.h \ - $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h elfcore.h -mmo.lo: mmo.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/libiberty.h $(INCDIR)/elf/mmix.h $(INCDIR)/elf/reloc-macros.h \ +elf64-sh64.lo: \ + elf64-sh64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + elf-bfd.h \ + elf64-target.h +elf64-sparc.lo: \ + elf64-sparc.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sparc.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/opcode/sparc.h \ + elf-bfd.h \ + elf64-target.h \ + elfxx-sparc.h +elf64.lo: \ + elf64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + elf-bfd.h \ + elfcode.h \ + elfcore.h +mmo.lo: \ + mmo.c \ + $(INCDIR)/elf/mmix.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ $(INCDIR)/opcode/mmix.h -nlm32-alpha.lo: nlm32-alpha.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/nlm/alpha-ext.h libnlm.h \ - $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \ - nlmswap.h nlm-target.h -nlm64.lo: nlm64.c nlmcode.h $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ - $(INCDIR)/nlm/external.h -coff-x86_64.lo: coff-x86_64.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h coffcode.h \ - coffswap.h -pe-x86_64.lo: pe-x86_64.c $(INCDIR)/filenames.h coff-x86_64.c \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/pe.h libcoff.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h coffcode.h \ - peicode.h libpei.h -pei-x86_64.lo: pei-x86_64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h $(INCDIR)/coff/internal.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h \ - $(INCDIR)/libiberty.h coff-x86_64.c coffcode.h peicode.h -aix386-core.lo: aix386-core.c $(INCDIR)/filenames.h \ - $(INCDIR)/hashtab.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/internal.h libcoff.h $(INCDIR)/bfdlink.h -hpux-core.lo: hpux-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -irix-core.lo: irix-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -lynx-core.lo: lynx-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -osf-core.lo: osf-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -sco5-core.lo: sco5-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h -trad-core.lo: trad-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - libaout.h $(INCDIR)/bfdlink.h -cisco-core.lo: cisco-core.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h -elf32-ia64.lo: elf32-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h \ - $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/objalloc.h \ +nlm32-alpha.lo: \ + nlm32-alpha.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/alpha-ext.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h \ + nlm-target.h \ + nlmswap.h +nlm64.lo: \ + nlm64.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/nlm/common.h \ + $(INCDIR)/nlm/external.h \ + $(INCDIR)/nlm/internal.h \ + libnlm.h \ + nlmcode.h +coff-x86_64.lo: \ + coff-x86_64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/x86_64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coffcode.h \ + coffswap.h \ + libcoff.h +pe-x86_64.lo: \ + pe-x86_64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/x86_64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coff-x86_64.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +pei-x86_64.lo: \ + pei-x86_64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/x86_64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + coff-x86_64.c \ + coffcode.h \ + libcoff.h \ + libpei.h \ + peicode.h +aix386-core.lo: \ + aix386-core.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h +hpux-core.lo: \ + hpux-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +irix-core.lo: \ + irix-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +lynx-core.lo: \ + lynx-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +osf-core.lo: \ + osf-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +sco5-core.lo: \ + sco5-core.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libaout.h +trad-core.lo: \ + trad-core.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libaout.h +cisco-core.lo: \ + cisco-core.c \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h +elf32-ia64.lo: \ + elf32-ia64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/ia64.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/objalloc.h \ + $(INCDIR)/opcode/ia64.h \ + elf-bfd.h \ elf32-target.h -elf64-ia64.lo: elf64-ia64.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/opcode/ia64.h \ - $(INCDIR)/elf/ia64.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/objalloc.h \ +elf64-ia64.lo: \ + elf64-ia64.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/ia64.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/objalloc.h \ + $(INCDIR)/opcode/ia64.h \ + elf-bfd.h \ elf64-target.h -peigen.lo: peigen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/i386.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h -pepigen.lo: pepigen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/ia64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h -pex64igen.lo: pex64igen.c $(INCDIR)/filenames.h $(INCDIR)/hashtab.h \ - $(INCDIR)/coff/internal.h $(INCDIR)/coff/x86_64.h $(INCDIR)/coff/external.h \ - $(INCDIR)/coff/pe.h libcoff.h $(INCDIR)/bfdlink.h libpei.h +peigen.lo: \ + peigen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/i386.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h \ + libpei.h +pepigen.lo: \ + pepigen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/ia64.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h \ + libpei.h +pex64igen.lo: \ + pex64igen.c \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/external.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/coff/pe.h \ + $(INCDIR)/coff/x86_64.h \ + $(INCDIR)/filenames.h \ + $(INCDIR)/hashtab.h \ + libcoff.h \ + libpei.h # IF YOU PUT ANYTHING HERE IT WILL GO AWAY # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/bfd/dep-in.sed b/bfd/dep-in.sed index 2732d6b42e..c9ce8022c7 100644 --- a/bfd/dep-in.sed +++ b/bfd/dep-in.sed @@ -3,7 +3,6 @@ s/\\\n */ /g t loop -s!\.o:!.lo:! s! \./! !g s! @BFD_H@!!g s!@SRCDIR@/../include!$(INCDIR)!g @@ -11,7 +10,7 @@ s!@TOPDIR@/include!$(INCDIR)!g s!@SRCDIR@/../opcodes!$(srcdir)/../opcodes!g s!@TOPDIR@/opcodes!$(srcdir)/../opcodes!g s!@SRCDIR@/!!g -s! hosts/[^ ]*\.h! !g +s! hosts/[^ ]*\.h!!g s! sysdep.h!!g s! \.\./bfd/sysdep.h!!g s! libbfd.h!!g @@ -21,12 +20,8 @@ s! \$(INCDIR)/ansidecl\.h!!g s! \$(INCDIR)/symcat\.h!!g s! \.\./intl/libintl\.h!!g -s/\\\n */ /g - s/ *$// s/ */ /g -s/ *:/:/g -/:$/d - -s/\(.\{50\}[^ ]*\) /\1 \\\ - /g +s/^ */A/ +s/ / \\\nB/g +$s/$/ \\/ diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index a91434937a..a8f700bbd9 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,13 @@ +2009-05-26 Alan Modra + + * dep-in.sed: Don't modify .o to .lo here. Output one filename + per line with all lines having continuation backslash. Prefix + first line with "A", following lines with "B". + * Makefile.am (DEP): Don't use dep.sed here. + (DEP1): Run $MKDEP on single files, modify .o to .lo here. Use + dep.sed here on dependencies, sort and uniq. + * Makefile.in: Regenerate. + 2009-05-25 Tristan Gingold * makefile.vms (OPT): New variable. diff --git a/opcodes/Makefile.am b/opcodes/Makefile.am index 0e9883cf23..665bdd411a 100644 --- a/opcodes/Makefile.am +++ b/opcodes/Makefile.am @@ -641,18 +641,23 @@ sh-dis.lo: sh-dis.c DEP: dep.sed $(CFILES) $(HFILES) config.h rm -f DEP1 $(MAKE) MKDEP="$(MKDEP)" DEP1 - sed -f dep.sed < DEP1 > DEPA - echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA - if grep ' /' DEPA > /dev/null 2> /dev/null; then \ + echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEP1 + if grep ' /' DEP1 > /dev/null 2> /dev/null; then \ echo 'make DEP failed!'; exit 1; \ else \ - mv -f DEPA $@; \ + mv -f DEP1 $@; \ fi DEP1: $(CFILES) echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2 - $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2 + for f in $?; do \ + $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ + sed -n -e '1s/\.o: .*/.lo: \\/p' -e q < DEPA >> DEP2; \ + sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ + done + rm -f DEPA mv -f DEP2 $@ dep.sed: dep-in.sed config.status @@ -684,508 +689,1769 @@ dep-am: DEP # DO NOT DELETE THIS LINE -- mkdep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. -alpha-dis.lo: alpha-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/alpha.h -alpha-opc.lo: alpha-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/alpha.h $(BFD_H) $(INCDIR)/symcat.h \ - opintl.h -arc-dis.lo: arc-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h \ - $(INCDIR)/elf/reloc-macros.h opintl.h arc-dis.h arc-ext.h -arc-opc.lo: arc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h \ +alpha-dis.lo: \ + alpha-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/alpha.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +alpha-opc.lo: \ + alpha-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/alpha.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +arc-dis.lo: \ + arc-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/arc.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/arc.h \ + $(INCDIR)/symcat.h \ + arc-dis.h \ + arc-ext.h \ opintl.h -arc-ext.lo: arc-ext.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h arc-ext.h $(INCDIR)/libiberty.h -arm-dis.lo: arm-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arm.h \ - opintl.h $(INCDIR)/safe-ctype.h $(INCDIR)/floatformat.h \ - $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h -avr-dis.lo: avr-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(INCDIR)/libiberty.h $(INCDIR)/opcode/avr.h -bfin-dis.lo: bfin-dis.c $(INCDIR)/opcode/bfin.h $(INCDIR)/dis-asm.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -cgen-asm.lo: cgen-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(BFD_H) \ - $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \ - opintl.h -cgen-bitset.lo: cgen-bitset.c $(INCDIR)/libiberty.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/opcode/cgen-bitset.h -cgen-dis.lo: cgen-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/libiberty.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h \ +arc-opc.lo: \ + arc-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/arc.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +arc-ext.lo: \ + arc-ext.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/symcat.h \ + arc-ext.h \ + config.h \ + sysdep.h +arm-dis.lo: \ + arm-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFDDIR)/libcoff.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/arm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/floatformat.h \ + $(INCDIR)/opcode/arm.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +avr-dis.lo: \ + avr-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/avr.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +bfin-dis.lo: \ + bfin-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/bfin.h \ + $(INCDIR)/symcat.h +cgen-asm.lo: \ + cgen-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +cgen-bitset.lo: \ + cgen-bitset.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ $(INCDIR)/opcode/cgen-bitset.h -cgen-opc.lo: cgen-opc.c $(INCDIR)/alloca-conf.h config.h \ - sysdep.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h $(BFD_H) $(INCDIR)/symcat.h \ - $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h -cr16-dis.lo: cr16-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \ - $(INCDIR)/opcode/cr16.h $(INCDIR)/libiberty.h -cr16-opc.lo: cr16-opc.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/symcat.h $(INCDIR)/opcode/cr16.h -cris-dis.lo: cris-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \ - $(INCDIR)/opcode/cris.h $(INCDIR)/libiberty.h -cris-opc.lo: cris-opc.c $(INCDIR)/opcode/cris.h -crx-dis.lo: crx-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \ - $(INCDIR)/opcode/crx.h -crx-opc.lo: crx-opc.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/symcat.h $(INCDIR)/opcode/crx.h -d10v-dis.lo: d10v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/d10v.h $(INCDIR)/dis-asm.h $(BFD_H) \ +cgen-dis.lo: \ + cgen-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +cgen-opc.lo: \ + cgen-opc.c \ + $(BFD_H) \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +cr16-dis.lo: \ + cr16-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cr16.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +cr16-opc.lo: \ + cr16-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cr16.h \ $(INCDIR)/symcat.h -d10v-opc.lo: d10v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/d10v.h -d30v-dis.lo: d30v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/d30v.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h -d30v-opc.lo: d30v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/d30v.h -dlx-dis.lo: dlx-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/dlx.h -dis-buf.lo: dis-buf.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h -dis-init.lo: dis-init.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -disassemble.lo: disassemble.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -fr30-asm.lo: fr30-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -fr30-desc.lo: fr30-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -fr30-dis.lo: fr30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - fr30-opc.h opintl.h -fr30-ibld.lo: fr30-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - fr30-opc.h opintl.h $(INCDIR)/safe-ctype.h -fr30-opc.lo: fr30-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h fr30-opc.h $(INCDIR)/libiberty.h -frv-asm.lo: frv-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h frv-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -frv-desc.lo: frv-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h frv-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -frv-dis.lo: frv-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - frv-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - frv-opc.h opintl.h -frv-ibld.lo: frv-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h frv-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - frv-opc.h opintl.h $(INCDIR)/safe-ctype.h -frv-opc.lo: frv-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h frv-opc.h $(INCDIR)/libiberty.h \ - $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h -moxie-dis.lo: moxie-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/moxie.h $(INCDIR)/dis-asm.h $(BFD_H) \ +cris-dis.lo: \ + cris-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cris.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +cris-opc.lo: \ + cris-opc.c \ + $(INCDIR)/opcode/cris.h +crx-dis.lo: \ + crx-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/crx.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +crx-opc.lo: \ + crx-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/crx.h \ $(INCDIR)/symcat.h -moxie-opc.lo: moxie-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/moxie.h -h8300-dis.lo: h8300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/h8300.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h $(INCDIR)/libiberty.h -h8500-dis.lo: h8500-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - h8500-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - opintl.h -hppa-dis.lo: hppa-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(BFDDIR)/libhppa.h \ - $(INCDIR)/opcode/hppa.h -i370-dis.lo: i370-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/i370.h -i370-opc.lo: i370-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/i370.h -i386-dis.lo: i386-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(INCDIR)/opcode/i386.h $(INCDIR)/libiberty.h -i386-opc.lo: i386-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/libiberty.h i386-opc.h $(INCDIR)/opcode/i386.h \ - i386-tbl.h -i386-gen.lo: i386-gen.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h \ - $(INCDIR)/safe-ctype.h i386-opc.h $(INCDIR)/opcode/i386.h -i860-dis.lo: i860-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/i860.h -i960-dis.lo: i960-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -ia64-dis.lo: ia64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/ia64.h -ia64-opc-a.lo: ia64-opc-a.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-b.lo: ia64-opc-b.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-f.lo: ia64-opc-f.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-i.lo: ia64-opc-i.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-m.lo: ia64-opc-m.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-d.lo: ia64-opc-d.c -ia64-opc.lo: ia64-opc.c $(INCDIR)/ansidecl.h sysdep.h \ - config.h $(INCDIR)/libiberty.h ia64-asmtab.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/symcat.h ia64-asmtab.c -ia64-gen.lo: ia64-gen.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h sysdep.h config.h $(INCDIR)/getopt.h \ - ia64-opc.h $(INCDIR)/opcode/ia64.h $(BFD_H) $(INCDIR)/symcat.h \ - ia64-opc-a.c ia64-opc-i.c ia64-opc-m.c ia64-opc-b.c \ - ia64-opc-f.c ia64-opc-x.c ia64-opc-d.c -ia64-asmtab.lo: ia64-asmtab.c -ip2k-asm.lo: ip2k-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h ip2k-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -ip2k-desc.lo: ip2k-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h ip2k-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -ip2k-dis.lo: ip2k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - ip2k-opc.h opintl.h -ip2k-ibld.lo: ip2k-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - ip2k-opc.h opintl.h $(INCDIR)/safe-ctype.h -ip2k-opc.lo: ip2k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h ip2k-opc.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h -iq2000-asm.lo: iq2000-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h iq2000-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -iq2000-desc.lo: iq2000-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h iq2000-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -iq2000-dis.lo: iq2000-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - iq2000-opc.h opintl.h -iq2000-ibld.lo: iq2000-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - iq2000-opc.h opintl.h $(INCDIR)/safe-ctype.h -iq2000-opc.lo: iq2000-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h iq2000-opc.h $(INCDIR)/libiberty.h -lm32-asm.lo: lm32-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h lm32-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -lm32-desc.lo: lm32-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h lm32-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -lm32-dis.lo: lm32-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - lm32-opc.h opintl.h -lm32-ibld.lo: lm32-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - lm32-opc.h opintl.h $(INCDIR)/safe-ctype.h -lm32-opc.lo: lm32-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h lm32-opc.h $(INCDIR)/libiberty.h -lm32-opinst.lo: lm32-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h lm32-opc.h -m32c-asm.lo: m32c-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h \ - cgen-ops.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -m32c-desc.lo: m32c-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h \ - cgen-ops.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h -m32c-dis.lo: m32c-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \ - opintl.h $(INCDIR)/elf/m32c.h $(INCDIR)/elf/reloc-macros.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h -m32c-ibld.lo: m32c-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \ - opintl.h $(INCDIR)/safe-ctype.h -m32c-opc.lo: m32c-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h \ - cgen-ops.h $(INCDIR)/libiberty.h -m32r-asm.lo: m32r-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -m32r-desc.lo: m32r-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -m32r-dis.lo: m32r-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - m32r-opc.h opintl.h -m32r-ibld.lo: m32r-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - m32r-opc.h opintl.h $(INCDIR)/safe-ctype.h -m32r-opc.lo: m32r-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32r-opc.h $(INCDIR)/libiberty.h -m32r-opinst.lo: m32r-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32r-opc.h -m68hc11-dis.lo: m68hc11-dis.c $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/m68hc11.h $(INCDIR)/dis-asm.h $(BFD_H) \ +d10v-dis.lo: \ + d10v-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/d10v.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +d10v-opc.lo: \ + d10v-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/d10v.h \ + config.h \ + sysdep.h +d30v-dis.lo: \ + d30v-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/d30v.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +d30v-opc.lo: \ + d30v-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/d30v.h \ + config.h \ + sysdep.h +dlx-dis.lo: \ + dlx-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/dlx.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +dis-buf.lo: \ + dis-buf.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +dis-init.lo: \ + dis-init.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +disassemble.lo: \ + disassemble.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +fr30-asm.lo: \ + fr30-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + opintl.h \ + sysdep.h +fr30-desc.lo: \ + fr30-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + opintl.h \ + sysdep.h +fr30-dis.lo: \ + fr30-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + opintl.h \ + sysdep.h +fr30-ibld.lo: \ + fr30-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + opintl.h \ + sysdep.h +fr30-opc.lo: \ + fr30-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + sysdep.h +frv-asm.lo: \ + frv-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + opintl.h \ + sysdep.h +frv-desc.lo: \ + frv-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + opintl.h \ + sysdep.h +frv-dis.lo: \ + frv-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + opintl.h \ + sysdep.h +frv-ibld.lo: \ + frv-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + opintl.h \ + sysdep.h +frv-opc.lo: \ + frv-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/elf/frv.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + sysdep.h +moxie-dis.lo: \ + moxie-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/moxie.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +moxie-opc.lo: \ + moxie-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/moxie.h \ + config.h \ + sysdep.h +h8300-dis.lo: \ + h8300-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/h8300.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +h8500-dis.lo: \ + h8500-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + h8500-opc.h \ + opintl.h \ + sysdep.h +hppa-dis.lo: \ + hppa-dis.c \ + $(BFDDIR)/libhppa.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/hppa.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +i370-dis.lo: \ + i370-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/i370.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +i370-opc.lo: \ + i370-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/i370.h \ + config.h \ + sysdep.h +i386-dis.lo: \ + i386-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/i386.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +i386-opc.lo: \ + i386-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/i386.h \ + config.h \ + i386-opc.h \ + i386-tbl.h \ + sysdep.h +i386-gen.lo: \ + i386-gen.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/getopt.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/i386.h \ + $(INCDIR)/safe-ctype.h \ + config.h \ + i386-opc.h \ + sysdep.h +i860-dis.lo: \ + i860-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/i860.h \ + $(INCDIR)/symcat.h +i960-dis.lo: \ + i960-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +ia64-dis.lo: \ + ia64-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/ia64.h \ $(INCDIR)/symcat.h -m68hc11-opc.lo: m68hc11-opc.c $(INCDIR)/ansidecl.h \ +ia64-opc-a.lo: \ + ia64-opc-a.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-b.lo: \ + ia64-opc-b.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-f.lo: \ + ia64-opc-f.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-i.lo: \ + ia64-opc-i.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-m.lo: \ + ia64-opc-m.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-d.lo: \ + ia64-opc-d.c +ia64-opc.lo: \ + ia64-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + config.h \ + ia64-asmtab.c \ + ia64-asmtab.h \ + sysdep.h +ia64-gen.lo: \ + ia64-gen.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/getopt.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + ia64-opc-a.c \ + ia64-opc-b.c \ + ia64-opc-d.c \ + ia64-opc-f.c \ + ia64-opc-i.c \ + ia64-opc-m.c \ + ia64-opc-x.c \ + ia64-opc.h \ + sysdep.h +ia64-asmtab.lo: \ + ia64-asmtab.c +ip2k-asm.lo: \ + ip2k-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + opintl.h \ + sysdep.h +ip2k-desc.lo: \ + ip2k-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + opintl.h \ + sysdep.h +ip2k-dis.lo: \ + ip2k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + opintl.h \ + sysdep.h +ip2k-ibld.lo: \ + ip2k-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + opintl.h \ + sysdep.h +ip2k-opc.lo: \ + ip2k-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + sysdep.h +iq2000-asm.lo: \ + iq2000-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + opintl.h \ + sysdep.h +iq2000-desc.lo: \ + iq2000-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + opintl.h \ + sysdep.h +iq2000-dis.lo: \ + iq2000-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + opintl.h \ + sysdep.h +iq2000-ibld.lo: \ + iq2000-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + opintl.h \ + sysdep.h +iq2000-opc.lo: \ + iq2000-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + sysdep.h +lm32-asm.lo: \ + lm32-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + opintl.h \ + sysdep.h +lm32-desc.lo: \ + lm32-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + opintl.h \ + sysdep.h +lm32-dis.lo: \ + lm32-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + opintl.h \ + sysdep.h +lm32-ibld.lo: \ + lm32-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + opintl.h \ + sysdep.h +lm32-opc.lo: \ + lm32-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + sysdep.h +lm32-opinst.lo: \ + lm32-opinst.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + sysdep.h +m32c-asm.lo: \ + m32c-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + opintl.h \ + sysdep.h +m32c-desc.lo: \ + m32c-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + opintl.h \ + sysdep.h +m32c-dis.lo: \ + m32c-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m32c.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + opintl.h \ + sysdep.h +m32c-ibld.lo: \ + m32c-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + opintl.h \ + sysdep.h +m32c-opc.lo: \ + m32c-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + sysdep.h +m32r-asm.lo: \ + m32r-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + opintl.h \ + sysdep.h +m32r-desc.lo: \ + m32r-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + opintl.h \ + sysdep.h +m32r-dis.lo: \ + m32r-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + opintl.h \ + sysdep.h +m32r-ibld.lo: \ + m32r-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + opintl.h \ + sysdep.h +m32r-opc.lo: \ + m32r-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + sysdep.h +m32r-opinst.lo: \ + m32r-opinst.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + sysdep.h +m68hc11-dis.lo: \ + m68hc11-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/m68hc11.h \ + $(INCDIR)/symcat.h +m68hc11-opc.lo: \ + m68hc11-opc.c \ + $(INCDIR)/ansidecl.h \ $(INCDIR)/opcode/m68hc11.h -m68k-dis.lo: m68k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/floatformat.h \ - $(INCDIR)/libiberty.h opintl.h $(INCDIR)/opcode/m68k.h -m68k-opc.lo: m68k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/m68k.h -m88k-dis.lo: m88k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/m88k.h \ - opintl.h $(INCDIR)/libiberty.h -maxq-dis.lo: maxq-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/maxq.h -mcore-dis.lo: mcore-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - mcore-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -mep-asm.lo: mep-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mep-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h -mep-desc.lo: mep-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mep-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -mep-dis.lo: mep-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - mep-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - mep-opc.h opintl.h $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h -mep-ibld.lo: mep-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h mep-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - mep-opc.h opintl.h $(INCDIR)/safe-ctype.h -mep-opc.lo: mep-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mep-opc.h $(INCDIR)/libiberty.h \ - $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h -mips-dis.lo: mips-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - $(INCDIR)/opcode/mips.h opintl.h $(BFDDIR)/elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h -mips-opc.lo: mips-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mips.h -mips16-opc.lo: mips16-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mips.h -m10200-dis.lo: m10200-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mn10200.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h -m10200-opc.lo: m10200-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mn10200.h -m10300-dis.lo: m10300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mn10300.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h -m10300-opc.lo: m10300-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mn10300.h -mmix-dis.lo: mmix-dis.c $(INCDIR)/opcode/mmix.h $(INCDIR)/dis-asm.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - opintl.h -mmix-opc.lo: mmix-opc.c $(INCDIR)/opcode/mmix.h $(INCDIR)/symcat.h -mt-asm.lo: mt-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mt-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -mt-desc.lo: mt-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mt-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -mt-dis.lo: mt-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - mt-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - mt-opc.h opintl.h -mt-ibld.lo: mt-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h mt-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - mt-opc.h opintl.h $(INCDIR)/safe-ctype.h -mt-opc.lo: mt-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mt-opc.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h -ns32k-dis.lo: ns32k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/dis-asm.h $(INCDIR)/opcode/ns32k.h \ +m68k-dis.lo: \ + m68k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/floatformat.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/m68k.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +m68k-opc.lo: \ + m68k-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/m68k.h \ + config.h \ + sysdep.h +m88k-dis.lo: \ + m88k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/m88k.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +maxq-dis.lo: \ + maxq-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/maxq.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +mcore-dis.lo: \ + mcore-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + mcore-opc.h \ + sysdep.h +mep-asm.lo: \ + mep-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/elf/mep.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + opintl.h \ + sysdep.h +mep-desc.lo: \ + mep-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + opintl.h \ + sysdep.h +mep-dis.lo: \ + mep-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mep.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + opintl.h \ + sysdep.h +mep-ibld.lo: \ + mep-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + opintl.h \ + sysdep.h +mep-opc.lo: \ + mep-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/elf/mep.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + sysdep.h +mips-dis.lo: \ + mips-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/mips.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +mips-opc.lo: \ + mips-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/mips.h \ + config.h \ + sysdep.h +mips16-opc.lo: \ + mips16-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/mips.h \ + config.h \ + sysdep.h +m10200-dis.lo: \ + m10200-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/mn10200.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +m10200-opc.lo: \ + m10200-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/mn10200.h \ + config.h \ + sysdep.h +m10300-dis.lo: \ + m10300-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/mn10300.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +m10300-opc.lo: \ + m10300-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/mn10300.h \ + config.h \ + sysdep.h +mmix-dis.lo: \ + mmix-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/mmix.h \ + $(INCDIR)/symcat.h \ opintl.h -openrisc-asm.lo: openrisc-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h openrisc-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -openrisc-desc.lo: openrisc-desc.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - openrisc-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h -openrisc-dis.lo: openrisc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - openrisc-opc.h opintl.h -openrisc-ibld.lo: openrisc-ibld.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - openrisc-opc.h opintl.h $(INCDIR)/safe-ctype.h -openrisc-opc.lo: openrisc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h openrisc-opc.h $(INCDIR)/libiberty.h -or32-dis.lo: or32-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/or32.h \ - $(INCDIR)/safe-ctype.h -or32-opc.lo: or32-opc.c $(INCDIR)/safe-ctype.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/or32.h -pdp11-dis.lo: pdp11-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/pdp11.h -pdp11-opc.lo: pdp11-opc.c $(INCDIR)/opcode/pdp11.h -pj-dis.lo: pj-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/pj.h $(INCDIR)/dis-asm.h $(BFD_H) \ +mmix-opc.lo: \ + mmix-opc.c \ + $(INCDIR)/opcode/mmix.h \ $(INCDIR)/symcat.h -pj-opc.lo: pj-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/pj.h -ppc-dis.lo: ppc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(INCDIR)/opcode/ppc.h -ppc-opc.lo: ppc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/ppc.h opintl.h -s390-mkopc.lo: s390-mkopc.c -s390-opc.lo: s390-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/s390.h \ - s390-opc.tab -s390-dis.lo: s390-dis.c $(INCDIR)/ansidecl.h sysdep.h \ - config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - opintl.h $(INCDIR)/opcode/s390.h -score-dis.lo: score-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h \ - $(INCDIR)/elf/reloc-macros.h -score7-dis.lo: score7-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h \ - $(INCDIR)/elf/reloc-macros.h -sh-dis.lo: sh-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - sh-opc.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/dis-asm.h -sh64-dis.lo: sh64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \ - sh64-opc.h $(INCDIR)/libiberty.h $(BFDDIR)/elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ - $(BFDDIR)/elf32-sh64.h -sh64-opc.lo: sh64-opc.c sh64-opc.h -sparc-dis.lo: sparc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/sparc.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h $(INCDIR)/libiberty.h opintl.h -sparc-opc.lo: sparc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/sparc.h -spu-dis.lo: spu-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/spu.h \ - $(INCDIR)/opcode/spu-insns.h -spu-opc.lo: spu-opc.c $(INCDIR)/opcode/spu.h $(INCDIR)/opcode/spu-insns.h -tic30-dis.lo: tic30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic30.h -tic4x-dis.lo: tic4x-dis.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic4x.h -tic54x-dis.lo: tic54x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h \ - $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h -tic54x-opc.lo: tic54x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h -tic80-dis.lo: tic80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/tic80.h $(INCDIR)/dis-asm.h $(BFD_H) \ +mt-asm.lo: \ + mt-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + opintl.h \ + sysdep.h +mt-desc.lo: \ + mt-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + opintl.h \ + sysdep.h +mt-dis.lo: \ + mt-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + opintl.h \ + sysdep.h +mt-ibld.lo: \ + mt-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + opintl.h \ + sysdep.h +mt-opc.lo: \ + mt-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + sysdep.h +ns32k-dis.lo: \ + ns32k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/ns32k.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +openrisc-asm.lo: \ + openrisc-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + opintl.h \ + sysdep.h +openrisc-desc.lo: \ + openrisc-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + opintl.h \ + sysdep.h +openrisc-dis.lo: \ + openrisc-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + opintl.h \ + sysdep.h +openrisc-ibld.lo: \ + openrisc-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + opintl.h \ + sysdep.h +openrisc-opc.lo: \ + openrisc-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + sysdep.h +or32-dis.lo: \ + or32-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/or32.h \ + $(INCDIR)/safe-ctype.h \ $(INCDIR)/symcat.h -tic80-opc.lo: tic80-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/tic80.h -v850-dis.lo: v850-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/v850.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h -v850-opc.lo: v850-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/v850.h opintl.h -vax-dis.lo: vax-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/vax.h $(INCDIR)/dis-asm.h $(BFD_H) \ +or32-opc.lo: \ + or32-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/or32.h \ + $(INCDIR)/safe-ctype.h +pdp11-dis.lo: \ + pdp11-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/pdp11.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +pdp11-opc.lo: \ + pdp11-opc.c \ + $(INCDIR)/opcode/pdp11.h +pj-dis.lo: \ + pj-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/pj.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +pj-opc.lo: \ + pj-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/pj.h \ + config.h \ + sysdep.h +ppc-dis.lo: \ + ppc-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/ppc.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +ppc-opc.lo: \ + ppc-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ppc.h \ + config.h \ + opintl.h \ + sysdep.h +s390-mkopc.lo: \ + s390-mkopc.c +s390-opc.lo: \ + s390-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/s390.h \ + s390-opc.tab +s390-dis.lo: \ + s390-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/s390.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +score-dis.lo: \ + score-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/score.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +score7-dis.lo: \ + score7-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/score.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +sh-dis.lo: \ + sh-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sh-opc.h \ + sysdep.h +sh64-dis.lo: \ + sh64-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFDDIR)/elf32-sh64.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/symcat.h \ + config.h \ + sh64-opc.h \ + sysdep.h +sh64-opc.lo: \ + sh64-opc.c \ + sh64-opc.h +sparc-dis.lo: \ + sparc-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/sparc.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +sparc-opc.lo: \ + sparc-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/sparc.h \ + config.h \ + sysdep.h +spu-dis.lo: \ + spu-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/spu-insns.h \ + $(INCDIR)/opcode/spu.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +spu-opc.lo: \ + spu-opc.c \ + $(INCDIR)/opcode/spu-insns.h \ + $(INCDIR)/opcode/spu.h +tic30-dis.lo: \ + tic30-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/tic30.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +tic4x-dis.lo: \ + tic4x-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/tic4x.h \ $(INCDIR)/symcat.h -w65-dis.lo: w65-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - w65-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -xc16x-asm.lo: xc16x-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h xc16x-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -xc16x-desc.lo: xc16x-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h xc16x-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -xc16x-dis.lo: xc16x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xc16x-opc.h opintl.h -xc16x-ibld.lo: xc16x-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xc16x-opc.h opintl.h $(INCDIR)/safe-ctype.h -xc16x-opc.lo: xc16x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h xc16x-opc.h $(INCDIR)/libiberty.h -xstormy16-asm.lo: xstormy16-asm.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xstormy16-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -xstormy16-desc.lo: xstormy16-desc.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xstormy16-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h -xstormy16-dis.lo: xstormy16-dis.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - $(INCDIR)/libiberty.h xstormy16-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h xstormy16-opc.h opintl.h -xstormy16-ibld.lo: xstormy16-ibld.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - xstormy16-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xstormy16-opc.h opintl.h $(INCDIR)/safe-ctype.h -xstormy16-opc.lo: xstormy16-opc.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xstormy16-opc.h $(INCDIR)/libiberty.h -xtensa-dis.lo: xtensa-dis.c $(INCDIR)/xtensa-isa.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h sysdep.h \ - config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -z80-dis.lo: z80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -z8k-dis.lo: z8k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h z8k-opc.h -z8kgen.lo: z8kgen.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/libiberty.h +tic54x-dis.lo: \ + tic54x-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/coff/ti.h \ + $(INCDIR)/coff/tic54x.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/tic54x.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +tic54x-opc.lo: \ + tic54x-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/tic54x.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +tic80-dis.lo: \ + tic80-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/tic80.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +tic80-opc.lo: \ + tic80-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/tic80.h \ + config.h \ + sysdep.h +v850-dis.lo: \ + v850-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/v850.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +v850-opc.lo: \ + v850-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/v850.h \ + config.h \ + opintl.h \ + sysdep.h +vax-dis.lo: \ + vax-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/vax.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +w65-dis.lo: \ + w65-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h \ + w65-opc.h +xc16x-asm.lo: \ + xc16x-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + opintl.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xc16x-desc.lo: \ + xc16x-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + opintl.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xc16x-dis.lo: \ + xc16x-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xc16x-ibld.lo: \ + xc16x-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xc16x-opc.lo: \ + xc16x-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xstormy16-asm.lo: \ + xstormy16-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + opintl.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xstormy16-desc.lo: \ + xstormy16-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + opintl.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xstormy16-dis.lo: \ + xstormy16-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xstormy16-ibld.lo: \ + xstormy16-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xstormy16-opc.lo: \ + xstormy16-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xtensa-dis.lo: \ + xtensa-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xtensa-isa.h \ + config.h \ + sysdep.h +z80-dis.lo: \ + z80-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +z8k-dis.lo: \ + z8k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h \ + z8k-opc.h +z8kgen.lo: \ + z8kgen.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + config.h \ + sysdep.h # IF YOU PUT ANYTHING HERE IT WILL GO AWAY diff --git a/opcodes/Makefile.in b/opcodes/Makefile.in index d70fe38f92..b1eb9d421d 100644 --- a/opcodes/Makefile.in +++ b/opcodes/Makefile.in @@ -1206,18 +1206,23 @@ sh-dis.lo: sh-dis.c DEP: dep.sed $(CFILES) $(HFILES) config.h rm -f DEP1 $(MAKE) MKDEP="$(MKDEP)" DEP1 - sed -f dep.sed < DEP1 > DEPA - echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA - if grep ' /' DEPA > /dev/null 2> /dev/null; then \ + echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEP1 + if grep ' /' DEP1 > /dev/null 2> /dev/null; then \ echo 'make DEP failed!'; exit 1; \ else \ - mv -f DEPA $@; \ + mv -f DEP1 $@; \ fi DEP1: $(CFILES) echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2 - $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2 + for f in $?; do \ + $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \ + sed -n -e '1s/\.o: .*/.lo: \\/p' -e q < DEPA >> DEP2; \ + sed -e '1s/.*: //' -f dep.sed < DEPA | LC_ALL=C sort | uniq | \ + sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \ + done + rm -f DEPA mv -f DEP2 $@ dep.sed: dep-in.sed config.status @@ -1249,510 +1254,1771 @@ dep-am: DEP # DO NOT DELETE THIS LINE -- mkdep uses it. # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. -alpha-dis.lo: alpha-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/alpha.h -alpha-opc.lo: alpha-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/alpha.h $(BFD_H) $(INCDIR)/symcat.h \ - opintl.h -arc-dis.lo: arc-dis.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/arc.h \ - $(INCDIR)/elf/reloc-macros.h opintl.h arc-dis.h arc-ext.h -arc-opc.lo: arc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arc.h \ +alpha-dis.lo: \ + alpha-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/alpha.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +alpha-opc.lo: \ + alpha-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/alpha.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +arc-dis.lo: \ + arc-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/arc.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/arc.h \ + $(INCDIR)/symcat.h \ + arc-dis.h \ + arc-ext.h \ opintl.h -arc-ext.lo: arc-ext.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h arc-ext.h $(INCDIR)/libiberty.h -arm-dis.lo: arm-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/arm.h \ - opintl.h $(INCDIR)/safe-ctype.h $(INCDIR)/floatformat.h \ - $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/reloc-macros.h -avr-dis.lo: avr-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(INCDIR)/libiberty.h $(INCDIR)/opcode/avr.h -bfin-dis.lo: bfin-dis.c $(INCDIR)/opcode/bfin.h $(INCDIR)/dis-asm.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -cgen-asm.lo: cgen-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(BFD_H) \ - $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h \ - opintl.h -cgen-bitset.lo: cgen-bitset.c $(INCDIR)/libiberty.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/opcode/cgen-bitset.h -cgen-dis.lo: cgen-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/libiberty.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/cgen.h \ +arc-opc.lo: \ + arc-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/arc.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +arc-ext.lo: \ + arc-ext.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/symcat.h \ + arc-ext.h \ + config.h \ + sysdep.h +arm-dis.lo: \ + arm-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFDDIR)/libcoff.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/coff/internal.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/arm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/floatformat.h \ + $(INCDIR)/opcode/arm.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +avr-dis.lo: \ + avr-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/avr.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +bfin-dis.lo: \ + bfin-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/bfin.h \ + $(INCDIR)/symcat.h +cgen-asm.lo: \ + cgen-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +cgen-bitset.lo: \ + cgen-bitset.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ $(INCDIR)/opcode/cgen-bitset.h -cgen-opc.lo: cgen-opc.c $(INCDIR)/alloca-conf.h config.h \ - sysdep.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h $(BFD_H) $(INCDIR)/symcat.h \ - $(INCDIR)/opcode/cgen.h $(INCDIR)/opcode/cgen-bitset.h -cr16-dis.lo: cr16-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \ - $(INCDIR)/opcode/cr16.h $(INCDIR)/libiberty.h -cr16-opc.lo: cr16-opc.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/symcat.h $(INCDIR)/opcode/cr16.h -cris-dis.lo: cris-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \ - $(INCDIR)/opcode/cris.h $(INCDIR)/libiberty.h -cris-opc.lo: cris-opc.c $(INCDIR)/opcode/cris.h -crx-dis.lo: crx-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \ - $(INCDIR)/opcode/crx.h -crx-opc.lo: crx-opc.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/symcat.h $(INCDIR)/opcode/crx.h -d10v-dis.lo: d10v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/d10v.h $(INCDIR)/dis-asm.h $(BFD_H) \ +cgen-dis.lo: \ + cgen-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +cgen-opc.lo: \ + cgen-opc.c \ + $(BFD_H) \ + $(INCDIR)/alloca-conf.h \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +cr16-dis.lo: \ + cr16-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cr16.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +cr16-opc.lo: \ + cr16-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cr16.h \ $(INCDIR)/symcat.h -d10v-opc.lo: d10v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/d10v.h -d30v-dis.lo: d30v-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/d30v.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h -d30v-opc.lo: d30v-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/d30v.h -dlx-dis.lo: dlx-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/dlx.h -dis-buf.lo: dis-buf.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h -dis-init.lo: dis-init.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -disassemble.lo: disassemble.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -fr30-asm.lo: fr30-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -fr30-desc.lo: fr30-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h fr30-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -fr30-dis.lo: fr30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - fr30-opc.h opintl.h -fr30-ibld.lo: fr30-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - fr30-opc.h opintl.h $(INCDIR)/safe-ctype.h -fr30-opc.lo: fr30-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h fr30-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h fr30-opc.h $(INCDIR)/libiberty.h -frv-asm.lo: frv-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h frv-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -frv-desc.lo: frv-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h frv-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -frv-dis.lo: frv-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - frv-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - frv-opc.h opintl.h -frv-ibld.lo: frv-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h frv-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - frv-opc.h opintl.h $(INCDIR)/safe-ctype.h -frv-opc.lo: frv-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h frv-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h frv-opc.h $(INCDIR)/libiberty.h \ - $(INCDIR)/elf/frv.h $(INCDIR)/elf/reloc-macros.h -moxie-dis.lo: moxie-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/moxie.h $(INCDIR)/dis-asm.h $(BFD_H) \ +cris-dis.lo: \ + cris-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cris.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +cris-opc.lo: \ + cris-opc.c \ + $(INCDIR)/opcode/cris.h +crx-dis.lo: \ + crx-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/crx.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +crx-opc.lo: \ + crx-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/crx.h \ $(INCDIR)/symcat.h -moxie-opc.lo: moxie-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/moxie.h -h8300-dis.lo: h8300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/h8300.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h $(INCDIR)/libiberty.h -h8500-dis.lo: h8500-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - h8500-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - opintl.h -hppa-dis.lo: hppa-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(BFDDIR)/libhppa.h \ - $(INCDIR)/opcode/hppa.h -i370-dis.lo: i370-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/i370.h -i370-opc.lo: i370-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/i370.h -i386-dis.lo: i386-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(INCDIR)/opcode/i386.h $(INCDIR)/libiberty.h -i386-opc.lo: i386-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/libiberty.h i386-opc.h $(INCDIR)/opcode/i386.h \ - i386-tbl.h -i386-gen.lo: i386-gen.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/hashtab.h \ - $(INCDIR)/safe-ctype.h i386-opc.h $(INCDIR)/opcode/i386.h -i860-dis.lo: i860-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/i860.h -i960-dis.lo: i960-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -ia64-dis.lo: ia64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/ia64.h -ia64-opc-a.lo: ia64-opc-a.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-b.lo: ia64-opc-b.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-f.lo: ia64-opc-f.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-i.lo: ia64-opc-i.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-m.lo: ia64-opc-m.c ia64-opc.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h -ia64-opc-d.lo: ia64-opc-d.c -ia64-opc.lo: ia64-opc.c $(INCDIR)/ansidecl.h sysdep.h \ - config.h $(INCDIR)/libiberty.h ia64-asmtab.h $(INCDIR)/opcode/ia64.h \ - $(BFD_H) $(INCDIR)/symcat.h ia64-asmtab.c -ia64-gen.lo: ia64-gen.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h sysdep.h config.h $(INCDIR)/getopt.h \ - ia64-opc.h $(INCDIR)/opcode/ia64.h $(BFD_H) $(INCDIR)/symcat.h \ - ia64-opc-a.c ia64-opc-i.c ia64-opc-m.c ia64-opc-b.c \ - ia64-opc-f.c ia64-opc-x.c ia64-opc-d.c -ia64-asmtab.lo: ia64-asmtab.c -ip2k-asm.lo: ip2k-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h ip2k-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -ip2k-desc.lo: ip2k-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h ip2k-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -ip2k-dis.lo: ip2k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - ip2k-opc.h opintl.h -ip2k-ibld.lo: ip2k-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - ip2k-opc.h opintl.h $(INCDIR)/safe-ctype.h -ip2k-opc.lo: ip2k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h ip2k-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h ip2k-opc.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h -iq2000-asm.lo: iq2000-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h iq2000-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -iq2000-desc.lo: iq2000-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h iq2000-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -iq2000-dis.lo: iq2000-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - iq2000-opc.h opintl.h -iq2000-ibld.lo: iq2000-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - iq2000-opc.h opintl.h $(INCDIR)/safe-ctype.h -iq2000-opc.lo: iq2000-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h iq2000-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h iq2000-opc.h $(INCDIR)/libiberty.h -lm32-asm.lo: lm32-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h lm32-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -lm32-desc.lo: lm32-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h lm32-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -lm32-dis.lo: lm32-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - lm32-opc.h opintl.h -lm32-ibld.lo: lm32-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - lm32-opc.h opintl.h $(INCDIR)/safe-ctype.h -lm32-opc.lo: lm32-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h lm32-opc.h $(INCDIR)/libiberty.h -lm32-opinst.lo: lm32-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h lm32-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h lm32-opc.h -m32c-asm.lo: m32c-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h \ - cgen-ops.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -m32c-desc.lo: m32c-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h \ - cgen-ops.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h -m32c-dis.lo: m32c-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \ - opintl.h $(INCDIR)/elf/m32c.h $(INCDIR)/elf/reloc-macros.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h -m32c-ibld.lo: m32c-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h cgen-ops.h \ - opintl.h $(INCDIR)/safe-ctype.h -m32c-opc.lo: m32c-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32c-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32c-opc.h cgen-types.h ../bfd/bfd_stdint.h \ - cgen-ops.h $(INCDIR)/libiberty.h -m32r-asm.lo: m32r-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -m32r-desc.lo: m32r-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32r-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -m32r-dis.lo: m32r-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - m32r-opc.h opintl.h -m32r-ibld.lo: m32r-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - m32r-opc.h opintl.h $(INCDIR)/safe-ctype.h -m32r-opc.lo: m32r-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32r-opc.h $(INCDIR)/libiberty.h -m32r-opinst.lo: m32r-opinst.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h m32r-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h m32r-opc.h -m68hc11-dis.lo: m68hc11-dis.c $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/m68hc11.h $(INCDIR)/dis-asm.h $(BFD_H) \ +d10v-dis.lo: \ + d10v-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/d10v.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +d10v-opc.lo: \ + d10v-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/d10v.h \ + config.h \ + sysdep.h +d30v-dis.lo: \ + d30v-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/d30v.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +d30v-opc.lo: \ + d30v-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/d30v.h \ + config.h \ + sysdep.h +dlx-dis.lo: \ + dlx-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/dlx.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +dis-buf.lo: \ + dis-buf.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +dis-init.lo: \ + dis-init.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +disassemble.lo: \ + disassemble.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +fr30-asm.lo: \ + fr30-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + opintl.h \ + sysdep.h +fr30-desc.lo: \ + fr30-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + opintl.h \ + sysdep.h +fr30-dis.lo: \ + fr30-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + opintl.h \ + sysdep.h +fr30-ibld.lo: \ + fr30-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + opintl.h \ + sysdep.h +fr30-opc.lo: \ + fr30-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + fr30-desc.h \ + fr30-opc.h \ + sysdep.h +frv-asm.lo: \ + frv-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + opintl.h \ + sysdep.h +frv-desc.lo: \ + frv-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + opintl.h \ + sysdep.h +frv-dis.lo: \ + frv-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + opintl.h \ + sysdep.h +frv-ibld.lo: \ + frv-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + opintl.h \ + sysdep.h +frv-opc.lo: \ + frv-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/elf/frv.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + frv-desc.h \ + frv-opc.h \ + sysdep.h +moxie-dis.lo: \ + moxie-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/moxie.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +moxie-opc.lo: \ + moxie-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/moxie.h \ + config.h \ + sysdep.h +h8300-dis.lo: \ + h8300-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/h8300.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +h8500-dis.lo: \ + h8500-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + h8500-opc.h \ + opintl.h \ + sysdep.h +hppa-dis.lo: \ + hppa-dis.c \ + $(BFDDIR)/libhppa.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/hppa.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +i370-dis.lo: \ + i370-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/i370.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +i370-opc.lo: \ + i370-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/i370.h \ + config.h \ + sysdep.h +i386-dis.lo: \ + i386-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/i386.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +i386-opc.lo: \ + i386-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/i386.h \ + config.h \ + i386-opc.h \ + i386-tbl.h \ + sysdep.h +i386-gen.lo: \ + i386-gen.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/getopt.h \ + $(INCDIR)/hashtab.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/i386.h \ + $(INCDIR)/safe-ctype.h \ + config.h \ + i386-opc.h \ + sysdep.h +i860-dis.lo: \ + i860-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/i860.h \ + $(INCDIR)/symcat.h +i960-dis.lo: \ + i960-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +ia64-dis.lo: \ + ia64-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/ia64.h \ $(INCDIR)/symcat.h -m68hc11-opc.lo: m68hc11-opc.c $(INCDIR)/ansidecl.h \ +ia64-opc-a.lo: \ + ia64-opc-a.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-b.lo: \ + ia64-opc-b.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-f.lo: \ + ia64-opc-f.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-i.lo: \ + ia64-opc-i.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-m.lo: \ + ia64-opc-m.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + ia64-opc.h +ia64-opc-d.lo: \ + ia64-opc-d.c +ia64-opc.lo: \ + ia64-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/symcat.h \ + config.h \ + ia64-asmtab.c \ + ia64-asmtab.h \ + sysdep.h +ia64-gen.lo: \ + ia64-gen.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/getopt.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/ia64.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + ia64-opc-a.c \ + ia64-opc-b.c \ + ia64-opc-d.c \ + ia64-opc-f.c \ + ia64-opc-i.c \ + ia64-opc-m.c \ + ia64-opc-x.c \ + ia64-opc.h \ + sysdep.h +ia64-asmtab.lo: \ + ia64-asmtab.c +ip2k-asm.lo: \ + ip2k-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + opintl.h \ + sysdep.h +ip2k-desc.lo: \ + ip2k-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + opintl.h \ + sysdep.h +ip2k-dis.lo: \ + ip2k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + opintl.h \ + sysdep.h +ip2k-ibld.lo: \ + ip2k-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + opintl.h \ + sysdep.h +ip2k-opc.lo: \ + ip2k-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + ip2k-desc.h \ + ip2k-opc.h \ + sysdep.h +iq2000-asm.lo: \ + iq2000-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + opintl.h \ + sysdep.h +iq2000-desc.lo: \ + iq2000-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + opintl.h \ + sysdep.h +iq2000-dis.lo: \ + iq2000-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + opintl.h \ + sysdep.h +iq2000-ibld.lo: \ + iq2000-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + opintl.h \ + sysdep.h +iq2000-opc.lo: \ + iq2000-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + iq2000-desc.h \ + iq2000-opc.h \ + sysdep.h +lm32-asm.lo: \ + lm32-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + opintl.h \ + sysdep.h +lm32-desc.lo: \ + lm32-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + opintl.h \ + sysdep.h +lm32-dis.lo: \ + lm32-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + opintl.h \ + sysdep.h +lm32-ibld.lo: \ + lm32-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + opintl.h \ + sysdep.h +lm32-opc.lo: \ + lm32-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + sysdep.h +lm32-opinst.lo: \ + lm32-opinst.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + lm32-desc.h \ + lm32-opc.h \ + sysdep.h +m32c-asm.lo: \ + m32c-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + opintl.h \ + sysdep.h +m32c-desc.lo: \ + m32c-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + opintl.h \ + sysdep.h +m32c-dis.lo: \ + m32c-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/m32c.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + opintl.h \ + sysdep.h +m32c-ibld.lo: \ + m32c-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + opintl.h \ + sysdep.h +m32c-opc.lo: \ + m32c-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + ../bfd/bfd_stdint.h \ + cgen-ops.h \ + cgen-types.h \ + config.h \ + m32c-desc.h \ + m32c-opc.h \ + sysdep.h +m32r-asm.lo: \ + m32r-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + opintl.h \ + sysdep.h +m32r-desc.lo: \ + m32r-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + opintl.h \ + sysdep.h +m32r-dis.lo: \ + m32r-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + opintl.h \ + sysdep.h +m32r-ibld.lo: \ + m32r-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + opintl.h \ + sysdep.h +m32r-opc.lo: \ + m32r-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + sysdep.h +m32r-opinst.lo: \ + m32r-opinst.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + m32r-desc.h \ + m32r-opc.h \ + sysdep.h +m68hc11-dis.lo: \ + m68hc11-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/m68hc11.h \ + $(INCDIR)/symcat.h +m68hc11-opc.lo: \ + m68hc11-opc.c \ + $(INCDIR)/ansidecl.h \ $(INCDIR)/opcode/m68hc11.h -m68k-dis.lo: m68k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/floatformat.h \ - $(INCDIR)/libiberty.h opintl.h $(INCDIR)/opcode/m68k.h -m68k-opc.lo: m68k-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/m68k.h -m88k-dis.lo: m88k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/m88k.h \ - opintl.h $(INCDIR)/libiberty.h -maxq-dis.lo: maxq-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/maxq.h -mcore-dis.lo: mcore-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - mcore-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -mep-asm.lo: mep-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mep-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \ - $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h -mep-desc.lo: mep-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mep-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -mep-dis.lo: mep-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - mep-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - mep-opc.h opintl.h $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h -mep-ibld.lo: mep-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h mep-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - mep-opc.h opintl.h $(INCDIR)/safe-ctype.h -mep-opc.lo: mep-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mep-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mep-opc.h $(INCDIR)/libiberty.h \ - $(INCDIR)/elf/mep.h $(INCDIR)/elf/reloc-macros.h -mips-dis.lo: mips-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - $(INCDIR)/opcode/mips.h opintl.h $(BFDDIR)/elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/reloc-macros.h -mips-opc.lo: mips-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mips.h -mips16-opc.lo: mips16-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mips.h -m10200-dis.lo: m10200-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mn10200.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h -m10200-opc.lo: m10200-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mn10200.h -m10300-dis.lo: m10300-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mn10300.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h -m10300-opc.lo: m10300-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/mn10300.h -mmix-dis.lo: mmix-dis.c $(INCDIR)/opcode/mmix.h $(INCDIR)/dis-asm.h \ - $(BFD_H) $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - opintl.h -mmix-opc.lo: mmix-opc.c $(INCDIR)/opcode/mmix.h $(INCDIR)/symcat.h -mt-asm.lo: mt-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mt-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -mt-desc.lo: mt-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mt-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -mt-dis.lo: mt-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - mt-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - mt-opc.h opintl.h -mt-ibld.lo: mt-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h mt-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - mt-opc.h opintl.h $(INCDIR)/safe-ctype.h -mt-opc.lo: mt-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h mt-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h mt-opc.h $(INCDIR)/libiberty.h \ - $(INCDIR)/safe-ctype.h -ns32k-dis.lo: ns32k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/dis-asm.h $(INCDIR)/opcode/ns32k.h \ +m68k-dis.lo: \ + m68k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/floatformat.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/m68k.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +m68k-opc.lo: \ + m68k-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/m68k.h \ + config.h \ + sysdep.h +m88k-dis.lo: \ + m88k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/m88k.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +maxq-dis.lo: \ + maxq-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/maxq.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +mcore-dis.lo: \ + mcore-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + mcore-opc.h \ + sysdep.h +mep-asm.lo: \ + mep-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/elf/mep.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + opintl.h \ + sysdep.h +mep-desc.lo: \ + mep-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + opintl.h \ + sysdep.h +mep-dis.lo: \ + mep-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mep.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + opintl.h \ + sysdep.h +mep-ibld.lo: \ + mep-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + opintl.h \ + sysdep.h +mep-opc.lo: \ + mep-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/elf/mep.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + mep-desc.h \ + mep-opc.h \ + sysdep.h +mips-dis.lo: \ + mips-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/mips.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/mips.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +mips-opc.lo: \ + mips-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/mips.h \ + config.h \ + sysdep.h +mips16-opc.lo: \ + mips16-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/mips.h \ + config.h \ + sysdep.h +m10200-dis.lo: \ + m10200-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/mn10200.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +m10200-opc.lo: \ + m10200-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/mn10200.h \ + config.h \ + sysdep.h +m10300-dis.lo: \ + m10300-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/mn10300.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +m10300-opc.lo: \ + m10300-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/mn10300.h \ + config.h \ + sysdep.h +mmix-dis.lo: \ + mmix-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/mmix.h \ + $(INCDIR)/symcat.h \ opintl.h -openrisc-asm.lo: openrisc-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h openrisc-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -openrisc-desc.lo: openrisc-desc.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - openrisc-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h -openrisc-dis.lo: openrisc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - openrisc-opc.h opintl.h -openrisc-ibld.lo: openrisc-ibld.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - openrisc-opc.h opintl.h $(INCDIR)/safe-ctype.h -openrisc-opc.lo: openrisc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h openrisc-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h openrisc-opc.h $(INCDIR)/libiberty.h -or32-dis.lo: or32-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/opcode/or32.h \ - $(INCDIR)/safe-ctype.h -or32-opc.lo: or32-opc.c $(INCDIR)/safe-ctype.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/or32.h -pdp11-dis.lo: pdp11-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/pdp11.h -pdp11-opc.lo: pdp11-opc.c $(INCDIR)/opcode/pdp11.h -pj-dis.lo: pj-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/pj.h $(INCDIR)/dis-asm.h $(BFD_H) \ +mmix-opc.lo: \ + mmix-opc.c \ + $(INCDIR)/opcode/mmix.h \ $(INCDIR)/symcat.h -pj-opc.lo: pj-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/pj.h -ppc-dis.lo: ppc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(INCDIR)/opcode/ppc.h -ppc-opc.lo: ppc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/ppc.h opintl.h -s390-mkopc.lo: s390-mkopc.c -s390-opc.lo: s390-opc.c $(INCDIR)/ansidecl.h $(INCDIR)/opcode/s390.h \ - s390-opc.tab -s390-dis.lo: s390-dis.c $(INCDIR)/ansidecl.h sysdep.h \ - config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - opintl.h $(INCDIR)/opcode/s390.h -score-dis.lo: score-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h \ - $(INCDIR)/elf/reloc-macros.h -score7-dis.lo: score7-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h opintl.h \ - $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \ - $(INCDIR)/elf/internal.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/score.h \ - $(INCDIR)/elf/reloc-macros.h -sh-dis.lo: sh-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - sh-opc.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/dis-asm.h -sh64-dis.lo: sh64-dis.c $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h sysdep.h config.h \ - sh64-opc.h $(INCDIR)/libiberty.h $(BFDDIR)/elf-bfd.h \ - $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ - $(INCDIR)/bfdlink.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/reloc-macros.h \ - $(BFDDIR)/elf32-sh64.h -sh64-opc.lo: sh64-opc.c sh64-opc.h -sparc-dis.lo: sparc-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/sparc.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h $(INCDIR)/libiberty.h opintl.h -sparc-opc.lo: sparc-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/sparc.h -spu-dis.lo: spu-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/spu.h \ - $(INCDIR)/opcode/spu-insns.h -spu-opc.lo: spu-opc.c $(INCDIR)/opcode/spu.h $(INCDIR)/opcode/spu-insns.h -tic30-dis.lo: tic30-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic30.h -tic4x-dis.lo: tic4x-dis.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic4x.h -tic54x-dis.lo: tic54x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h \ - $(INCDIR)/coff/tic54x.h $(INCDIR)/coff/ti.h -tic54x-opc.lo: tic54x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/opcode/tic54x.h -tic80-dis.lo: tic80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/tic80.h $(INCDIR)/dis-asm.h $(BFD_H) \ +mt-asm.lo: \ + mt-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + opintl.h \ + sysdep.h +mt-desc.lo: \ + mt-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + opintl.h \ + sysdep.h +mt-dis.lo: \ + mt-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + opintl.h \ + sysdep.h +mt-ibld.lo: \ + mt-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + opintl.h \ + sysdep.h +mt-opc.lo: \ + mt-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + mt-desc.h \ + mt-opc.h \ + sysdep.h +ns32k-dis.lo: \ + ns32k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/ns32k.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +openrisc-asm.lo: \ + openrisc-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + opintl.h \ + sysdep.h +openrisc-desc.lo: \ + openrisc-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + opintl.h \ + sysdep.h +openrisc-dis.lo: \ + openrisc-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + opintl.h \ + sysdep.h +openrisc-ibld.lo: \ + openrisc-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + opintl.h \ + sysdep.h +openrisc-opc.lo: \ + openrisc-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + openrisc-desc.h \ + openrisc-opc.h \ + sysdep.h +or32-dis.lo: \ + or32-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/or32.h \ + $(INCDIR)/safe-ctype.h \ $(INCDIR)/symcat.h -tic80-opc.lo: tic80-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/tic80.h -v850-dis.lo: v850-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/v850.h $(INCDIR)/dis-asm.h $(BFD_H) \ - $(INCDIR)/symcat.h opintl.h -v850-opc.lo: v850-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/v850.h opintl.h -vax-dis.lo: vax-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/opcode/vax.h $(INCDIR)/dis-asm.h $(BFD_H) \ +or32-opc.lo: \ + or32-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/or32.h \ + $(INCDIR)/safe-ctype.h +pdp11-dis.lo: \ + pdp11-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/pdp11.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +pdp11-opc.lo: \ + pdp11-opc.c \ + $(INCDIR)/opcode/pdp11.h +pj-dis.lo: \ + pj-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/pj.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +pj-opc.lo: \ + pj-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/pj.h \ + config.h \ + sysdep.h +ppc-dis.lo: \ + ppc-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/ppc.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +ppc-opc.lo: \ + ppc-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/ppc.h \ + config.h \ + opintl.h \ + sysdep.h +s390-mkopc.lo: \ + s390-mkopc.c +s390-opc.lo: \ + s390-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/s390.h \ + s390-opc.tab +s390-dis.lo: \ + s390-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/s390.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +score-dis.lo: \ + score-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/score.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +score7-dis.lo: \ + score7-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/score.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +sh-dis.lo: \ + sh-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sh-opc.h \ + sysdep.h +sh64-dis.lo: \ + sh64-dis.c \ + $(BFDDIR)/elf-bfd.h \ + $(BFDDIR)/elf32-sh64.h \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/bfdlink.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/elf/common.h \ + $(INCDIR)/elf/external.h \ + $(INCDIR)/elf/internal.h \ + $(INCDIR)/elf/reloc-macros.h \ + $(INCDIR)/elf/sh.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/symcat.h \ + config.h \ + sh64-opc.h \ + sysdep.h +sh64-opc.lo: \ + sh64-opc.c \ + sh64-opc.h +sparc-dis.lo: \ + sparc-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/sparc.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +sparc-opc.lo: \ + sparc-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/sparc.h \ + config.h \ + sysdep.h +spu-dis.lo: \ + spu-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/spu-insns.h \ + $(INCDIR)/opcode/spu.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +spu-opc.lo: \ + spu-opc.c \ + $(INCDIR)/opcode/spu-insns.h \ + $(INCDIR)/opcode/spu.h +tic30-dis.lo: \ + tic30-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/tic30.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +tic4x-dis.lo: \ + tic4x-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/tic4x.h \ $(INCDIR)/symcat.h -w65-dis.lo: w65-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - w65-opc.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -xc16x-asm.lo: xc16x-asm.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h xc16x-opc.h opintl.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -xc16x-desc.lo: xc16x-desc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h xc16x-opc.h opintl.h $(INCDIR)/libiberty.h \ - $(INCDIR)/xregex.h $(INCDIR)/xregex2.h -xc16x-dis.lo: xc16x-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \ - xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xc16x-opc.h opintl.h -xc16x-ibld.lo: xc16x-ibld.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xc16x-opc.h opintl.h $(INCDIR)/safe-ctype.h -xc16x-opc.lo: xc16x-opc.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(BFD_H) $(INCDIR)/symcat.h xc16x-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h xc16x-opc.h $(INCDIR)/libiberty.h -xstormy16-asm.lo: xstormy16-asm.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xstormy16-opc.h opintl.h $(INCDIR)/xregex.h $(INCDIR)/xregex2.h \ - $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h -xstormy16-desc.lo: xstormy16-desc.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xstormy16-opc.h opintl.h $(INCDIR)/libiberty.h $(INCDIR)/xregex.h \ - $(INCDIR)/xregex2.h -xstormy16-dis.lo: xstormy16-dis.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - $(INCDIR)/libiberty.h xstormy16-desc.h $(INCDIR)/opcode/cgen-bitset.h \ - $(INCDIR)/opcode/cgen.h xstormy16-opc.h opintl.h -xstormy16-ibld.lo: xstormy16-ibld.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h \ - xstormy16-desc.h $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xstormy16-opc.h opintl.h $(INCDIR)/safe-ctype.h -xstormy16-opc.lo: xstormy16-opc.c sysdep.h config.h \ - $(INCDIR)/ansidecl.h $(BFD_H) $(INCDIR)/symcat.h xstormy16-desc.h \ - $(INCDIR)/opcode/cgen-bitset.h $(INCDIR)/opcode/cgen.h \ - xstormy16-opc.h $(INCDIR)/libiberty.h -xtensa-dis.lo: xtensa-dis.c $(INCDIR)/xtensa-isa.h \ - $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h sysdep.h \ - config.h $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -z80-dis.lo: z80-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h -z8k-dis.lo: z8k-dis.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/dis-asm.h $(BFD_H) $(INCDIR)/symcat.h z8k-opc.h -z8kgen.lo: z8kgen.c sysdep.h config.h $(INCDIR)/ansidecl.h \ - $(INCDIR)/libiberty.h +tic54x-dis.lo: \ + tic54x-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/coff/ti.h \ + $(INCDIR)/coff/tic54x.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/tic54x.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +tic54x-opc.lo: \ + tic54x-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/tic54x.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +tic80-dis.lo: \ + tic80-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/tic80.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +tic80-opc.lo: \ + tic80-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/tic80.h \ + config.h \ + sysdep.h +v850-dis.lo: \ + v850-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/v850.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h +v850-opc.lo: \ + v850-opc.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/opcode/v850.h \ + config.h \ + opintl.h \ + sysdep.h +vax-dis.lo: \ + vax-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/vax.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +w65-dis.lo: \ + w65-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h \ + w65-opc.h +xc16x-asm.lo: \ + xc16x-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + opintl.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xc16x-desc.lo: \ + xc16x-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + opintl.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xc16x-dis.lo: \ + xc16x-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xc16x-ibld.lo: \ + xc16x-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xc16x-opc.lo: \ + xc16x-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h \ + xc16x-desc.h \ + xc16x-opc.h +xstormy16-asm.lo: \ + xstormy16-asm.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + opintl.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xstormy16-desc.lo: \ + xstormy16-desc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xregex.h \ + $(INCDIR)/xregex2.h \ + config.h \ + opintl.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xstormy16-dis.lo: \ + xstormy16-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xstormy16-ibld.lo: \ + xstormy16-ibld.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/safe-ctype.h \ + $(INCDIR)/symcat.h \ + config.h \ + opintl.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xstormy16-opc.lo: \ + xstormy16-opc.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/opcode/cgen-bitset.h \ + $(INCDIR)/opcode/cgen.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h \ + xstormy16-desc.h \ + xstormy16-opc.h +xtensa-dis.lo: \ + xtensa-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/libiberty.h \ + $(INCDIR)/symcat.h \ + $(INCDIR)/xtensa-isa.h \ + config.h \ + sysdep.h +z80-dis.lo: \ + z80-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h +z8k-dis.lo: \ + z8k-dis.c \ + $(BFD_H) \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/dis-asm.h \ + $(INCDIR)/symcat.h \ + config.h \ + sysdep.h \ + z8k-opc.h +z8kgen.lo: \ + z8kgen.c \ + $(INCDIR)/ansidecl.h \ + $(INCDIR)/libiberty.h \ + config.h \ + sysdep.h # IF YOU PUT ANYTHING HERE IT WILL GO AWAY # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. diff --git a/opcodes/dep-in.sed b/opcodes/dep-in.sed index 081f99c1e0..df8bc1eec1 100644 --- a/opcodes/dep-in.sed +++ b/opcodes/dep-in.sed @@ -3,7 +3,6 @@ s/\\\n */ /g t loop -s!\.o:!.lo:! s! \./! !g s! @BFD_H@! $(BFD_H)!g s!@INCDIR@!$(INCDIR)!g @@ -13,12 +12,8 @@ s!@TOPDIR@/bfd!$(BFDDIR)!g s!@SRCDIR@/!!g s! \.\./intl/libintl\.h!!g -s/\\\n */ /g - s/ *$// s/ */ /g -s/ *:/:/g -/:$/d - -s/\(.\{50\}[^ ]*\) /\1 \\\ - /g +s/^ */A/ +s/ / \\\nB/g +$s/$/ \\/ -- 2.34.1