OSDN Git Service

dependency tracking in binutils
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 22 Aug 2009 18:18:42 +0000 (18:18 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sat, 22 Aug 2009 18:18:42 +0000 (18:18 +0000)
binutils/:
* Makefile.am (AUTOMAKE_OPTIONS): Remove cygnus, add no-dist and
foreign.
(MKDEP, CLEANFILES): Remove now-unneeded variables.
(DEP, DEP1, dep.sed, dep, dep-in, dep-am): Remove.
(mkdep section): Remove.
(BUILT_SOURCES): New variable, list $(GENERATED_HFILES).
(EXTRA_ar_SOURCES): New, list $(CFILES).
(syslex.o): Depend on syslex.c.
(sysinfo.o): Depend on sysinfo.c.
(arparse.h, defparse.h, nlmheaders.h rcparse.h mcparse.h):
Remove dependencies, now tracked by automake.
(srconv.o): Depend on sysroff.c.
(objdump.o, arparse.o, arlex.o, sysroff.o, defparse.o, deflex.o)
(nlmheader.o, rcparse.o, mcparse.o, rclex.o, mclex.o, dlltool.o)
(rescoff.o, nlmconv.o): Rewrite using automake-style dependency
tracking rules; only list the dependency upon the primary source
file, but no included headers.
* Makefile.in: Regenerate.

binutils/ChangeLog
binutils/Makefile.am
binutils/Makefile.in

index d5cadb8..500e057 100644 (file)
@@ -1,5 +1,24 @@
 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * Makefile.am (AUTOMAKE_OPTIONS): Remove cygnus, add no-dist and
+       foreign.
+       (MKDEP, CLEANFILES): Remove now-unneeded variables.
+       (DEP, DEP1, dep.sed, dep, dep-in, dep-am): Remove.
+       (mkdep section): Remove.
+       (BUILT_SOURCES): New variable, list $(GENERATED_HFILES).
+       (EXTRA_ar_SOURCES): New, list $(CFILES).
+       (syslex.o): Depend on syslex.c.
+       (sysinfo.o): Depend on sysinfo.c.
+       (arparse.h, defparse.h, nlmheaders.h rcparse.h mcparse.h):
+       Remove dependencies, now tracked by automake.
+       (srconv.o): Depend on sysroff.c.
+       (objdump.o, arparse.o, arlex.o, sysroff.o, defparse.o, deflex.o)
+       (nlmheader.o, rcparse.o, mcparse.o, rclex.o, mclex.o, dlltool.o)
+       (rescoff.o, nlmconv.o): Rewrite using automake-style dependency
+       tracking rules; only list the dependency upon the primary source
+       file, but no included headers.
+       * Makefile.in: Regenerate.
+
        * Makefile.am (install-pdf, install-pdf-recursive, install-html)
        (install-html-recursive): Remove.
        * Makefile.in: Regenerate.
index 2d38715..9dc5295 100644 (file)
@@ -1,6 +1,6 @@
 ## Process this file with automake to generate Makefile.in
 
-AUTOMAKE_OPTIONS = cygnus dejagnu
+AUTOMAKE_OPTIONS = dejagnu no-dist foreign
 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
 
 SUBDIRS = doc po
@@ -69,8 +69,6 @@ BASEDIR = $(srcdir)/..
 BFDDIR = $(BASEDIR)/bfd
 INCDIR = $(BASEDIR)/include
 
-MKDEP = gcc -MM
-
 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) \
         @HDEFINES@ \
         @INCINTL@ \
@@ -84,6 +82,7 @@ HFILES = \
        windmc.h
 
 GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h mcparse.h
+BUILT_SOURCES = $(GENERATED_HFILES)
 
 CFILES = \
        addr2line.c ar.c arsup.c bin2c.c binemul.c bucomm.c \
@@ -196,12 +195,22 @@ objdump_SOURCES = objdump.c dwarf.c prdbg.c $(DEBUG_SRCS) $(BULIBS)
 objdump_LDADD = $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
 
 objdump.o:objdump.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='objdump.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
        $(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+endif
 
 cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
 
 ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c binemul.c \
        emul_$(EMULATION).c $(BULIBS)
+EXTRA_ar_SOURCES = $(CFILES)
 ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
 
 ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c \
@@ -239,14 +248,14 @@ sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
        $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
 
-syslex.o:
+syslex.o: syslex.c
        if [ -r syslex.c ]; then \
          $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) syslex.c -Wno-error ; \
        else \
          $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS) $(srcdir)/syslex.c -Wno-error ;\
        fi
 
-sysinfo.o:
+sysinfo.o: sysinfo.c
        if [ -r sysinfo.c ]; then \
          $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) sysinfo.c -Wno-error ; \
        else \
@@ -261,46 +270,159 @@ embedspu: embedspu.sh
        chmod a+x $@
 
 # We need these for parallel make.
-arparse.h: arparse.c
-defparse.h: defparse.c
-nlmheader.h: nlmheader.c
-rcparse.h: rcparse.c
-mcparse.h: mcparse.c
 sysinfo.h: sysinfo.c
 
 # Disable -Werror, if it has been enabled, since old versions of bison/
 # yacc will produce working code which contain compile time warnings.
-arparse.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-arlex.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-sysroff.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-defparse.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-deflex.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-nlmheader.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-rcparse.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-mcparse.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-rclex.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-mclex.o:
-       $(COMPILE) -c $< $(NO_WERROR)
+arparse.o: arparse.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ arparse.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='arparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c arparse.c $(NO_WERROR)
+endif
+
+arlex.o: arlex.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ arlex.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='arlex.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c arlex.c $(NO_WERROR)
+endif
+
+sysroff.o: sysroff.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ sysroff.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='sysroff.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c sysroff.c $(NO_WERROR)
+endif
+
+defparse.o: defparse.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ defparse.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='defparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c defparse.c $(NO_WERROR)
+endif
+
+deflex.o: deflex.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ deflex.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='deflex.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c deflex.c $(NO_WERROR)
+endif
+
+nlmheader.o: nlmheader.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ nlmheader.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='nlmheader.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c nlmheader.c $(NO_WERROR)
+endif
+
+rcparse.o: rcparse.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ rcparse.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='rcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c rcparse.c $(NO_WERROR)
+endif
+
+mcparse.o: mcparse.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ mcparse.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='mcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c mcparse.c $(NO_WERROR)
+endif
+
+rclex.o: rclex.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='rclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
+endif
+
+mclex.o: mclex.c
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='mclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
+       $(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
+endif
 
 srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
+srconv.o: sysroff.c
 
 dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS)
 dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
 
 dlltool.o:
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='dlltool.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
        $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+endif
 
 rescoff.o:
+if am__fastdepCC
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='rescoff.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
        $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+endif
 
 coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
 
@@ -308,9 +430,20 @@ sysdump_SOURCES = sysdump.c $(BULIBS)
 
 # coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
 # scripts, since they are only included conditionally.
-nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
+nlmconv.o: nlmconv.c
+if am__fastdepCC
+       ldname=`echo ld | sed '$(transform)'`; \
+       $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \
+         -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
+       mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+else
+if AMDEP
+       source='nlmconv.c' object='$@' libtool=no @AMDEPBACKSLASH@
+       DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+endif
        ldname=`echo ld | sed '$(transform)'`; \
        $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
+endif
 
 nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS)
 
@@ -335,66 +468,11 @@ all: info
 
 DISTCLEANFILES = sysroff.c sysroff.h site.exp site.bak
 
-# Targets to rebuild dependencies in this Makefile.
-# Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
-DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
-       rm -f DEP1
-       $(MAKE) MKDEP="$(MKDEP)" DEP1
-       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 DEP1 $@; \
-       fi
-
-DEP1: $(CFILES) $(GENERATED_CFILES)
-       echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
-       echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
-       for f in $?; do \
-         $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \
-         sed -n -e '1s/: .*/: \\/p' -e q < DEPA >> DEP2; \
-         sed -e '1s/.*: //' -f dep.sed < DEPA | \
-           LC_ALL=C sort | LC_ALL=C uniq | \
-           sed -e 's/^[AB]/  /' -e '$$s/ \\$$//' >> DEP2; \
-       done
-       rm -f DEPA
-       mv -f DEP2 $@
-
-dep.sed: dep-in.sed config.status
-       objdir=`pwd`; \
-       sed <$(srcdir)/dep-in.sed >dep.sed      \
-               -e 's!@INCDIR@!$(INCDIR)!'      \
-               -e 's!@BFDDIR@!$(BFDDIR)!'      \
-               -e 's!@SRCDIR@!$(srcdir)!'      \
-               -e "s!@OBJDIR@!$${objdir}!"     \
-               -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/binutils$$,,`'!'
-
-dep: DEP
-       sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
-       cat DEP >> tmp-Makefile
-       $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
-
-dep-in: DEP
-       sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
-       cat DEP >> tmp-Makefile.in
-       $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
-
-dep-am: DEP
-       sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
-       cat DEP >> tmp-Makefile.am
-       $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
-
-.PHONY: dep dep-in dep-am
-
-###
-
 MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
   binutils.log binutils.sum abcdefgh*
 mostlyclean-local:
        -rm -rf tmpdir
 
-CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
-
 .PHONY: install-exec-local
 
 install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
@@ -417,875 +495,3 @@ install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
          else true; \
          fi; \
        done
-
-# What appears below is generated by a hacked mkdep using gcc -MM.
-
-# DO NOT DELETE THIS LINE -- mkdep uses it.
-# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
-addr2line.o: \
-  addr2line.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-ar.o: \
-  ar.c \
-  $(BFDDIR)/libbfd.h \
-  $(BFDDIR)/plugin.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/ar.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/hashtab.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/progress.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  arsup.h \
-  binemul.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-arsup.o: \
-  arsup.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  arsup.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-bin2c.o: \
-  bin2c.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-binemul.o: \
-  binemul.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  binemul.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-bucomm.o: \
-  bucomm.c \
-  $(BFDDIR)/libbfd.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/hashtab.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-coffdump.o: \
-  coffdump.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  coffgrok.h \
-  config.h \
-  sysdep.h
-coffgrok.o: \
-  coffgrok.c \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  coffgrok.h \
-  config.h \
-  sysdep.h
-cxxfilt.o: \
-  cxxfilt.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-dwarf.o: \
-  dwarf.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/dwarf2.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  dwarf.h \
-  sysdep.h
-debug.o: \
-  debug.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  config.h \
-  debug.h \
-  sysdep.h
-dlltool.o: \
-  dlltool.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/dyn-string.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  dlltool.h \
-  sysdep.h
-dllwrap.o: \
-  dllwrap.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/dyn-string.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-emul_aix.o: \
-  emul_aix.c \
-  $(BFDDIR)/libcoff.h \
-  $(BFDDIR)/libxcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/coff/xcoff.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  binemul.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-emul_vanilla.o: \
-  emul_vanilla.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  binemul.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-filemode.o: \
-  filemode.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-ieee.o: \
-  ieee.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/ieee.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-is-ranlib.o: \
-  is-ranlib.c
-is-strip.o: \
-  is-strip.c
-maybe-ranlib.o: \
-  maybe-ranlib.c
-maybe-strip.o: \
-  maybe-strip.c
-nlmconv.o: \
-  nlmconv.c \
-  $(BFDDIR)/libnlm.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/nlm/common.h \
-  $(INCDIR)/nlm/external.h \
-  $(INCDIR)/nlm/internal.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  nlmconv.h \
-  sysdep.h
-nm.o: \
-  nm.c \
-  $(BFDDIR)/elf-bfd.h \
-  $(BFDDIR)/plugin.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/ranlib.h \
-  $(INCDIR)/aout/stab.def \
-  $(INCDIR)/aout/stab_gnu.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/external.h \
-  $(INCDIR)/elf/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/progress.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-not-ranlib.o: \
-  not-ranlib.c
-not-strip.o: \
-  not-strip.c
-objcopy.o: \
-  objcopy.c \
-  $(BFDDIR)/elf-bfd.h \
-  $(BFDDIR)/libbfd.h \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/external.h \
-  $(INCDIR)/coff/i386.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/coff/pe.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/external.h \
-  $(INCDIR)/elf/internal.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fnmatch.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/hashtab.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/progress.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  sysdep.h
-objdump.o: \
-  objdump.c \
-  $(BFDDIR)/elf-bfd.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/aout64.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/dis-asm.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/external.h \
-  $(INCDIR)/elf/internal.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/progress.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  dwarf.h \
-  sysdep.h
-prdbg.o: \
-  prdbg.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-rclex.o: \
-  rclex.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  rcparse.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-rdcoff.o: \
-  rdcoff.c \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-rddbg.o: \
-  rddbg.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-readelf.o: \
-  readelf.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/ar.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/elf/alpha.h \
-  $(INCDIR)/elf/arc.h \
-  $(INCDIR)/elf/arm.h \
-  $(INCDIR)/elf/avr.h \
-  $(INCDIR)/elf/bfin.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/cr16.h \
-  $(INCDIR)/elf/cris.h \
-  $(INCDIR)/elf/crx.h \
-  $(INCDIR)/elf/d10v.h \
-  $(INCDIR)/elf/d30v.h \
-  $(INCDIR)/elf/dlx.h \
-  $(INCDIR)/elf/external.h \
-  $(INCDIR)/elf/fr30.h \
-  $(INCDIR)/elf/frv.h \
-  $(INCDIR)/elf/h8.h \
-  $(INCDIR)/elf/hppa.h \
-  $(INCDIR)/elf/i370.h \
-  $(INCDIR)/elf/i386.h \
-  $(INCDIR)/elf/i860.h \
-  $(INCDIR)/elf/i960.h \
-  $(INCDIR)/elf/ia64.h \
-  $(INCDIR)/elf/internal.h \
-  $(INCDIR)/elf/ip2k.h \
-  $(INCDIR)/elf/iq2000.h \
-  $(INCDIR)/elf/lm32.h \
-  $(INCDIR)/elf/m32c.h \
-  $(INCDIR)/elf/m32r.h \
-  $(INCDIR)/elf/m68hc11.h \
-  $(INCDIR)/elf/m68k.h \
-  $(INCDIR)/elf/mcore.h \
-  $(INCDIR)/elf/mep.h \
-  $(INCDIR)/elf/mips.h \
-  $(INCDIR)/elf/mmix.h \
-  $(INCDIR)/elf/mn10200.h \
-  $(INCDIR)/elf/mn10300.h \
-  $(INCDIR)/elf/msp430.h \
-  $(INCDIR)/elf/mt.h \
-  $(INCDIR)/elf/or32.h \
-  $(INCDIR)/elf/pj.h \
-  $(INCDIR)/elf/ppc.h \
-  $(INCDIR)/elf/ppc64.h \
-  $(INCDIR)/elf/reloc-macros.h \
-  $(INCDIR)/elf/s390.h \
-  $(INCDIR)/elf/score.h \
-  $(INCDIR)/elf/sh.h \
-  $(INCDIR)/elf/sparc.h \
-  $(INCDIR)/elf/spu.h \
-  $(INCDIR)/elf/v850.h \
-  $(INCDIR)/elf/vax.h \
-  $(INCDIR)/elf/x86-64.h \
-  $(INCDIR)/elf/xstormy16.h \
-  $(INCDIR)/elf/xtensa.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  dwarf.h \
-  sysdep.h \
-  unwind-ia64.h
-rename.o: \
-  rename.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-resbin.o: \
-  resbin.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-rescoff.o: \
-  rescoff.c \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-resrc.o: \
-  resrc.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-resres.o: \
-  resres.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-size.o: \
-  size.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-srconv.o: \
-  srconv.c \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  coffgrok.h \
-  config.h \
-  sysdep.h \
-  sysroff.c \
-  sysroff.h
-stabs.o: \
-  stabs.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/aout64.h \
-  $(INCDIR)/aout/stab.def \
-  $(INCDIR)/aout/stab_gnu.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-strings.o: \
-  strings.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-sysdump.o: \
-  sysdump.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  sysroff.c \
-  sysroff.h
-unwind-ia64.o: \
-  unwind-ia64.c \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/elf/ia64.h \
-  $(INCDIR)/elf/reloc-macros.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  unwind-ia64.h
-version.o: \
-  version.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-windres.o: \
-  windres.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/obstack.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-winduni.o: \
-  winduni.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  winduni.h
-wrstabs.o: \
-  wrstabs.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/aout64.h \
-  $(INCDIR)/aout/stab.def \
-  $(INCDIR)/aout/stab_gnu.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-windmc.o: \
-  windmc.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/obstack.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windmc.h \
-  winduni.h
-mclex.o: \
-  mclex.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  mcparse.h \
-  sysdep.h \
-  windmc.h \
-  winduni.h
-arparse.o: \
-  arparse.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  arsup.h \
-  config.h \
-  sysdep.h
-arlex.o: \
-  arlex.c \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/libiberty.h \
-  arparse.h
-sysroff.o: \
-  sysroff.c
-sysinfo.o: \
-  sysinfo.c
-syslex.o: \
-  syslex.c \
-  config.h \
-  sysinfo.h
-defparse.o: \
-  defparse.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  config.h \
-  dlltool.h \
-  sysdep.h
-deflex.o: \
-  deflex.c \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/libiberty.h \
-  defparse.h \
-  dlltool.h
-nlmheader.o: \
-  nlmheader.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/nlm/common.h \
-  $(INCDIR)/nlm/internal.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  nlmconv.h \
-  sysdep.h
-rcparse.o: \
-  rcparse.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-mcparse.o: \
-  mcparse.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windmc.h \
-  winduni.h
-# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
index 9d80d22..ecce5b8 100644 (file)
@@ -51,7 +51,7 @@ DIST_COMMON = NEWS README ChangeLog $(srcdir)/Makefile.in \
        $(srcdir)/../mkinstalldirs $(top_srcdir)/po/Make-in arparse.h \
        arparse.c arlex.c defparse.h defparse.c deflex.c nlmheader.h \
        nlmheader.c arparse.h arparse.c arlex.c mcparse.h mcparse.c \
-       rcparse.h rcparse.c $(srcdir)/../ylwrap
+       rcparse.h rcparse.c $(srcdir)/../depcomp $(srcdir)/../ylwrap
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 am__aclocal_m4_deps = $(top_srcdir)/../bfd/acinclude.m4 \
        $(top_srcdir)/../bfd/warning.m4 \
@@ -168,8 +168,9 @@ am_windres_OBJECTS = windres.$(OBJEXT) resrc.$(OBJEXT) \
        $(am__objects_1)
 windres_OBJECTS = $(am_windres_OBJECTS)
 DEFAULT_INCLUDES = -I.@am__isrc@
-depcomp =
-am__depfiles_maybe =
+depcomp = $(SHELL) $(top_srcdir)/../depcomp
+am__depfiles_maybe = depfiles
+am__mv = mv -f
 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
@@ -188,13 +189,13 @@ YLWRAP = $(top_srcdir)/../ylwrap
 YACCCOMPILE = $(YACC) $(YFLAGS) $(AM_YFLAGS)
 LTYACCCOMPILE = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
        --mode=compile $(YACC) $(YFLAGS) $(AM_YFLAGS)
-SOURCES = $(addr2line_SOURCES) $(ar_SOURCES) $(coffdump_SOURCES) \
-       $(cxxfilt_SOURCES) $(dlltool_SOURCES) $(dllwrap_SOURCES) \
-       $(nlmconv_SOURCES) $(nm_new_SOURCES) $(objcopy_SOURCES) \
-       $(objdump_SOURCES) $(ranlib_SOURCES) $(readelf_SOURCES) \
-       $(size_SOURCES) $(srconv_SOURCES) $(strings_SOURCES) \
-       $(strip_new_SOURCES) $(sysdump_SOURCES) $(windmc_SOURCES) \
-       $(windres_SOURCES)
+SOURCES = $(addr2line_SOURCES) $(ar_SOURCES) $(EXTRA_ar_SOURCES) \
+       $(coffdump_SOURCES) $(cxxfilt_SOURCES) $(dlltool_SOURCES) \
+       $(dllwrap_SOURCES) $(nlmconv_SOURCES) $(nm_new_SOURCES) \
+       $(objcopy_SOURCES) $(objdump_SOURCES) $(ranlib_SOURCES) \
+       $(readelf_SOURCES) $(size_SOURCES) $(srconv_SOURCES) \
+       $(strings_SOURCES) $(strip_new_SOURCES) $(sysdump_SOURCES) \
+       $(windmc_SOURCES) $(windres_SOURCES)
 RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
        html-recursive info-recursive install-data-recursive \
        install-dvi-recursive install-exec-recursive \
@@ -369,7 +370,7 @@ target_vendor = @target_vendor@
 top_build_prefix = @top_build_prefix@
 top_builddir = @top_builddir@
 top_srcdir = @top_srcdir@
-AUTOMAKE_OPTIONS = cygnus dejagnu
+AUTOMAKE_OPTIONS = dejagnu no-dist foreign
 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
 SUBDIRS = doc po
 tooldir = $(exec_prefix)/$(target_alias)
@@ -407,7 +408,6 @@ TOOL_PROGS = nm-new strip-new ar ranlib dlltool objdump objcopy
 BASEDIR = $(srcdir)/..
 BFDDIR = $(BASEDIR)/bfd
 INCDIR = $(BASEDIR)/include
-MKDEP = gcc -MM
 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) \
         @HDEFINES@ \
         @INCINTL@ \
@@ -421,6 +421,7 @@ HFILES = \
        windmc.h
 
 GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h mcparse.h
+BUILT_SOURCES = $(GENERATED_HFILES)
 CFILES = \
        addr2line.c ar.c arsup.c bin2c.c binemul.c bucomm.c \
        coffdump.c coffgrok.c cxxfilt.c \
@@ -503,6 +504,7 @@ cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
 ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c binemul.c \
        emul_$(EMULATION).c $(BULIBS)
 
+EXTRA_ar_SOURCES = $(CFILES)
 ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
 ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c \
        binemul.c emul_$(EMULATION).c $(BULIBS)
@@ -530,13 +532,10 @@ EXTRA_DIST = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
        mcparse.h mcparse.c
 
 DISTCLEANFILES = sysroff.c sysroff.h site.exp site.bak
-
-###
 MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
   binutils.log binutils.sum abcdefgh*
 
-CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
-all: config.h
+all: $(BUILT_SOURCES) config.h
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
 .SUFFIXES:
@@ -649,6 +648,11 @@ clean-noinstPROGRAMS:
 addr2line$(EXEEXT): $(addr2line_OBJECTS) $(addr2line_DEPENDENCIES) 
        @rm -f addr2line$(EXEEXT)
        $(LINK) $(addr2line_OBJECTS) $(addr2line_LDADD) $(LIBS)
+arparse.h: arparse.c
+       @if test ! -f $@; then \
+         rm -f arparse.c; \
+         $(MAKE) $(AM_MAKEFLAGS) arparse.c; \
+       else :; fi
 ar$(EXEEXT): $(ar_OBJECTS) $(ar_DEPENDENCIES) 
        @rm -f ar$(EXEEXT)
        $(LINK) $(ar_OBJECTS) $(ar_LDADD) $(LIBS)
@@ -658,12 +662,22 @@ coffdump$(EXEEXT): $(coffdump_OBJECTS) $(coffdump_DEPENDENCIES)
 cxxfilt$(EXEEXT): $(cxxfilt_OBJECTS) $(cxxfilt_DEPENDENCIES) 
        @rm -f cxxfilt$(EXEEXT)
        $(LINK) $(cxxfilt_OBJECTS) $(cxxfilt_LDADD) $(LIBS)
+defparse.h: defparse.c
+       @if test ! -f $@; then \
+         rm -f defparse.c; \
+         $(MAKE) $(AM_MAKEFLAGS) defparse.c; \
+       else :; fi
 dlltool$(EXEEXT): $(dlltool_OBJECTS) $(dlltool_DEPENDENCIES) 
        @rm -f dlltool$(EXEEXT)
        $(LINK) $(dlltool_OBJECTS) $(dlltool_LDADD) $(LIBS)
 dllwrap$(EXEEXT): $(dllwrap_OBJECTS) $(dllwrap_DEPENDENCIES) 
        @rm -f dllwrap$(EXEEXT)
        $(LINK) $(dllwrap_OBJECTS) $(dllwrap_LDADD) $(LIBS)
+nlmheader.h: nlmheader.c
+       @if test ! -f $@; then \
+         rm -f nlmheader.c; \
+         $(MAKE) $(AM_MAKEFLAGS) nlmheader.c; \
+       else :; fi
 nlmconv$(EXEEXT): $(nlmconv_OBJECTS) $(nlmconv_DEPENDENCIES) 
        @rm -f nlmconv$(EXEEXT)
        $(LINK) $(nlmconv_OBJECTS) $(nlmconv_LDADD) $(LIBS)
@@ -697,9 +711,19 @@ strip-new$(EXEEXT): $(strip_new_OBJECTS) $(strip_new_DEPENDENCIES)
 sysdump$(EXEEXT): $(sysdump_OBJECTS) $(sysdump_DEPENDENCIES) 
        @rm -f sysdump$(EXEEXT)
        $(LINK) $(sysdump_OBJECTS) $(sysdump_LDADD) $(LIBS)
+mcparse.h: mcparse.c
+       @if test ! -f $@; then \
+         rm -f mcparse.c; \
+         $(MAKE) $(AM_MAKEFLAGS) mcparse.c; \
+       else :; fi
 windmc$(EXEEXT): $(windmc_OBJECTS) $(windmc_DEPENDENCIES) 
        @rm -f windmc$(EXEEXT)
        $(LINK) $(windmc_OBJECTS) $(windmc_LDADD) $(LIBS)
+rcparse.h: rcparse.c
+       @if test ! -f $@; then \
+         rm -f rcparse.c; \
+         $(MAKE) $(AM_MAKEFLAGS) rcparse.c; \
+       else :; fi
 windres$(EXEEXT): $(windres_OBJECTS) $(windres_DEPENDENCIES) 
        @rm -f windres$(EXEEXT)
        $(LINK) $(windres_OBJECTS) $(windres_LDADD) $(LIBS)
@@ -710,14 +734,84 @@ mostlyclean-compile:
 distclean-compile:
        -rm -f *.tab.c
 
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/addr2line.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ar.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arlex.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arparse.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/arsup.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bin2c.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/binemul.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bucomm.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coffdump.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coffgrok.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cxxfilt.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/debug.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/deflex.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/defparse.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dlltool.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dllwrap.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dwarf.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emul_$(EMULATION).Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emul_aix.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emul_vanilla.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/filemode.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ieee.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is-ranlib.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/is-strip.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/maybe-ranlib.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/maybe-strip.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mclex.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mcparse.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nlmconv.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nlmheader.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nm.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/not-ranlib.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/not-strip.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/objcopy.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/objdump.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/prdbg.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rclex.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rcparse.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rdcoff.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rddbg.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/readelf.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rename.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/resbin.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rescoff.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/resrc.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/resres.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/size.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/srconv.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stabs.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strings.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysdump.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unwind-ia64.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/version.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windmc.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/windres.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/winduni.Po@am__quote@
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wrstabs.Po@am__quote@
+
 .c.o:
-       $(COMPILE) -c $<
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+@am__fastdepCC_TRUE@   $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c $<
 
 .c.obj:
-       $(COMPILE) -c `$(CYGPATH_W) '$<'`
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
+@am__fastdepCC_TRUE@   $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c `$(CYGPATH_W) '$<'`
 
 .c.lo:
-       $(LTCOMPILE) -c -o $@ $<
+@am__fastdepCC_TRUE@   $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
+@am__fastdepCC_TRUE@   $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(LTCOMPILE) -c -o $@ $<
 
 .l.c:
        $(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ -- $(LEXCOMPILE)
@@ -893,16 +987,18 @@ distclean-DEJAGNU:
        -l='$(DEJATOOL)'; for tool in $$l; do \
          rm -f $$tool.sum $$tool.log; \
        done
-check-am:
+check-am: all-am
        $(MAKE) $(AM_MAKEFLAGS) check-DEJAGNU
-check: check-recursive
+check: $(BUILT_SOURCES)
+       $(MAKE) $(AM_MAKEFLAGS) check-recursive
 all-am: Makefile $(PROGRAMS) config.h
 installdirs: installdirs-recursive
 installdirs-am:
        for dir in "$(DESTDIR)$(bindir)"; do \
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
        done
-install: install-recursive
+install: $(BUILT_SOURCES)
+       $(MAKE) $(AM_MAKEFLAGS) install-recursive
 install-exec: install-exec-recursive
 install-data: install-data-recursive
 uninstall: uninstall-recursive
@@ -918,7 +1014,6 @@ mostlyclean-generic:
        -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
 
 clean-generic:
-       -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
 
 distclean-generic:
        -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
@@ -940,6 +1035,7 @@ maintainer-clean-generic:
        -rm -f nlmheader.h
        -rm -f rcparse.c
        -rm -f rcparse.h
+       -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
 clean: clean-recursive
 
 clean-am: clean-binPROGRAMS clean-generic clean-libtool \
@@ -947,6 +1043,7 @@ clean-am: clean-binPROGRAMS clean-generic clean-libtool \
 
 distclean: distclean-recursive
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
+       -rm -rf ./$(DEPDIR)
        -rm -f Makefile
 distclean-am: clean-am distclean-DEJAGNU distclean-compile \
        distclean-generic distclean-hdr distclean-libtool \
@@ -995,6 +1092,7 @@ installcheck-am:
 maintainer-clean: maintainer-clean-recursive
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
        -rm -rf $(top_srcdir)/autom4te.cache
+       -rm -rf ./$(DEPDIR)
        -rm -f Makefile
 maintainer-clean-am: distclean-am maintainer-clean-generic
 
@@ -1013,8 +1111,9 @@ ps-am:
 
 uninstall-am: uninstall-binPROGRAMS
 
-.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check-am \
-       ctags-recursive install-am install-strip tags-recursive
+.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \
+       check-am ctags-recursive install install-am install-strip \
+       tags-recursive
 
 .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
        all all-am am--refresh check check-DEJAGNU check-am clean \
@@ -1053,7 +1152,11 @@ installcheck:
        /bin/sh $(srcdir)/sanity.sh $(bindir)
 
 objdump.o:objdump.c
-       $(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(OBJDUMP_DEFS) $(srcdir)/objdump.c
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='objdump.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
 
 # The following is commented out for the conversion to automake.
 # This rule creates a single binary that switches between ar and ranlib
@@ -1084,14 +1187,14 @@ sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
        $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
 
-syslex.o:
+syslex.o: syslex.c
        if [ -r syslex.c ]; then \
          $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) syslex.c -Wno-error ; \
        else \
          $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS) $(srcdir)/syslex.c -Wno-error ;\
        fi
 
-sysinfo.o:
+sysinfo.o: sysinfo.c
        if [ -r sysinfo.c ]; then \
          $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) sysinfo.c -Wno-error ; \
        else \
@@ -1106,101 +1209,109 @@ embedspu: embedspu.sh
        chmod a+x $@
 
 # We need these for parallel make.
-arparse.h: arparse.c
-defparse.h: defparse.c
-nlmheader.h: nlmheader.c
-rcparse.h: rcparse.c
-mcparse.h: mcparse.c
 sysinfo.h: sysinfo.c
 
 # Disable -Werror, if it has been enabled, since old versions of bison/
 # yacc will produce working code which contain compile time warnings.
-arparse.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-arlex.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-sysroff.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-defparse.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-deflex.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-nlmheader.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-rcparse.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-mcparse.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-rclex.o:
-       $(COMPILE) -c $< $(NO_WERROR)
-mclex.o:
-       $(COMPILE) -c $< $(NO_WERROR)
+arparse.o: arparse.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ arparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='arparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c arparse.c $(NO_WERROR)
+
+arlex.o: arlex.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ arlex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='arlex.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c arlex.c $(NO_WERROR)
+
+sysroff.o: sysroff.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ sysroff.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='sysroff.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c sysroff.c $(NO_WERROR)
+
+defparse.o: defparse.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ defparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='defparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c defparse.c $(NO_WERROR)
+
+deflex.o: deflex.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ deflex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='deflex.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c deflex.c $(NO_WERROR)
+
+nlmheader.o: nlmheader.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ nlmheader.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='nlmheader.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c nlmheader.c $(NO_WERROR)
+
+rcparse.o: rcparse.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ rcparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='rcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c rcparse.c $(NO_WERROR)
+
+mcparse.o: mcparse.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ mcparse.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='mcparse.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c mcparse.c $(NO_WERROR)
+
+rclex.o: rclex.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/rclex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='rclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c $(srcdir)/rclex.c $(NO_WERROR)
+
+mclex.o: mclex.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/mclex.c $(NO_WERROR)
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='mclex.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c $(srcdir)/mclex.c $(NO_WERROR)
+srconv.o: sysroff.c
 
 dlltool.o:
-       $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='dlltool.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
 
 rescoff.o:
-       $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@  $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='rescoff.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
 
 # coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
 # scripts, since they are only included conditionally.
-nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
-       ldname=`echo ld | sed '$(transform)'`; \
-       $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
+nlmconv.o: nlmconv.c
+@am__fastdepCC_TRUE@   ldname=`echo ld | sed '$(transform)'`; \
+@am__fastdepCC_TRUE@   $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \
+@am__fastdepCC_TRUE@     -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
+@am__fastdepCC_TRUE@   mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      source='nlmconv.c' object='$@' libtool=no @AMDEPBACKSLASH@
+@AMDEP_TRUE@@am__fastdepCC_FALSE@      DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
+@am__fastdepCC_FALSE@  ldname=`echo ld | sed '$(transform)'`; \
+@am__fastdepCC_FALSE@  $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
 
 diststuff: $(EXTRA_DIST) info
 all: info
-
-# Targets to rebuild dependencies in this Makefile.
-# Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
-DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
-       rm -f DEP1
-       $(MAKE) MKDEP="$(MKDEP)" DEP1
-       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 DEP1 $@; \
-       fi
-
-DEP1: $(CFILES) $(GENERATED_CFILES)
-       echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
-       echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
-       for f in $?; do \
-         $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \
-         sed -n -e '1s/: .*/: \\/p' -e q < DEPA >> DEP2; \
-         sed -e '1s/.*: //' -f dep.sed < DEPA | \
-           LC_ALL=C sort | LC_ALL=C uniq | \
-           sed -e 's/^[AB]/  /' -e '$$s/ \\$$//' >> DEP2; \
-       done
-       rm -f DEPA
-       mv -f DEP2 $@
-
-dep.sed: dep-in.sed config.status
-       objdir=`pwd`; \
-       sed <$(srcdir)/dep-in.sed >dep.sed      \
-               -e 's!@INCDIR@!$(INCDIR)!'      \
-               -e 's!@BFDDIR@!$(BFDDIR)!'      \
-               -e 's!@SRCDIR@!$(srcdir)!'      \
-               -e "s!@OBJDIR@!$${objdir}!"     \
-               -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/binutils$$,,`'!'
-
-dep: DEP
-       sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
-       cat DEP >> tmp-Makefile
-       $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
-
-dep-in: DEP
-       sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
-       cat DEP >> tmp-Makefile.in
-       $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
-
-dep-am: DEP
-       sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
-       cat DEP >> tmp-Makefile.am
-       $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
-
-.PHONY: dep dep-in dep-am
 mostlyclean-local:
        -rm -rf tmpdir
 
@@ -1227,878 +1338,6 @@ install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
          fi; \
        done
 
-# What appears below is generated by a hacked mkdep using gcc -MM.
-
-# DO NOT DELETE THIS LINE -- mkdep uses it.
-# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
-addr2line.o: \
-  addr2line.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-ar.o: \
-  ar.c \
-  $(BFDDIR)/libbfd.h \
-  $(BFDDIR)/plugin.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/ar.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/hashtab.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/progress.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  arsup.h \
-  binemul.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-arsup.o: \
-  arsup.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  arsup.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-bin2c.o: \
-  bin2c.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-binemul.o: \
-  binemul.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  binemul.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-bucomm.o: \
-  bucomm.c \
-  $(BFDDIR)/libbfd.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/hashtab.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-coffdump.o: \
-  coffdump.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  coffgrok.h \
-  config.h \
-  sysdep.h
-coffgrok.o: \
-  coffgrok.c \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  coffgrok.h \
-  config.h \
-  sysdep.h
-cxxfilt.o: \
-  cxxfilt.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-dwarf.o: \
-  dwarf.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/dwarf2.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  dwarf.h \
-  sysdep.h
-debug.o: \
-  debug.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  config.h \
-  debug.h \
-  sysdep.h
-dlltool.o: \
-  dlltool.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/dyn-string.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  dlltool.h \
-  sysdep.h
-dllwrap.o: \
-  dllwrap.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/dyn-string.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-emul_aix.o: \
-  emul_aix.c \
-  $(BFDDIR)/libcoff.h \
-  $(BFDDIR)/libxcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/coff/xcoff.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  binemul.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-emul_vanilla.o: \
-  emul_vanilla.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  binemul.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-filemode.o: \
-  filemode.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-ieee.o: \
-  ieee.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/ieee.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-is-ranlib.o: \
-  is-ranlib.c
-is-strip.o: \
-  is-strip.c
-maybe-ranlib.o: \
-  maybe-ranlib.c
-maybe-strip.o: \
-  maybe-strip.c
-nlmconv.o: \
-  nlmconv.c \
-  $(BFDDIR)/libnlm.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/nlm/common.h \
-  $(INCDIR)/nlm/external.h \
-  $(INCDIR)/nlm/internal.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  nlmconv.h \
-  sysdep.h
-nm.o: \
-  nm.c \
-  $(BFDDIR)/elf-bfd.h \
-  $(BFDDIR)/plugin.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/ranlib.h \
-  $(INCDIR)/aout/stab.def \
-  $(INCDIR)/aout/stab_gnu.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/external.h \
-  $(INCDIR)/elf/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/progress.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-not-ranlib.o: \
-  not-ranlib.c
-not-strip.o: \
-  not-strip.c
-objcopy.o: \
-  objcopy.c \
-  $(BFDDIR)/elf-bfd.h \
-  $(BFDDIR)/libbfd.h \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/external.h \
-  $(INCDIR)/coff/i386.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/coff/pe.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/external.h \
-  $(INCDIR)/elf/internal.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fnmatch.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/hashtab.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/progress.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  sysdep.h
-objdump.o: \
-  objdump.c \
-  $(BFDDIR)/elf-bfd.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/aout64.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/dis-asm.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/external.h \
-  $(INCDIR)/elf/internal.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/progress.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  dwarf.h \
-  sysdep.h
-prdbg.o: \
-  prdbg.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-rclex.o: \
-  rclex.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  rcparse.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-rdcoff.o: \
-  rdcoff.c \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-rddbg.o: \
-  rddbg.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-readelf.o: \
-  readelf.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/ar.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/elf/alpha.h \
-  $(INCDIR)/elf/arc.h \
-  $(INCDIR)/elf/arm.h \
-  $(INCDIR)/elf/avr.h \
-  $(INCDIR)/elf/bfin.h \
-  $(INCDIR)/elf/common.h \
-  $(INCDIR)/elf/cr16.h \
-  $(INCDIR)/elf/cris.h \
-  $(INCDIR)/elf/crx.h \
-  $(INCDIR)/elf/d10v.h \
-  $(INCDIR)/elf/d30v.h \
-  $(INCDIR)/elf/dlx.h \
-  $(INCDIR)/elf/external.h \
-  $(INCDIR)/elf/fr30.h \
-  $(INCDIR)/elf/frv.h \
-  $(INCDIR)/elf/h8.h \
-  $(INCDIR)/elf/hppa.h \
-  $(INCDIR)/elf/i370.h \
-  $(INCDIR)/elf/i386.h \
-  $(INCDIR)/elf/i860.h \
-  $(INCDIR)/elf/i960.h \
-  $(INCDIR)/elf/ia64.h \
-  $(INCDIR)/elf/internal.h \
-  $(INCDIR)/elf/ip2k.h \
-  $(INCDIR)/elf/iq2000.h \
-  $(INCDIR)/elf/lm32.h \
-  $(INCDIR)/elf/m32c.h \
-  $(INCDIR)/elf/m32r.h \
-  $(INCDIR)/elf/m68hc11.h \
-  $(INCDIR)/elf/m68k.h \
-  $(INCDIR)/elf/mcore.h \
-  $(INCDIR)/elf/mep.h \
-  $(INCDIR)/elf/mips.h \
-  $(INCDIR)/elf/mmix.h \
-  $(INCDIR)/elf/mn10200.h \
-  $(INCDIR)/elf/mn10300.h \
-  $(INCDIR)/elf/msp430.h \
-  $(INCDIR)/elf/mt.h \
-  $(INCDIR)/elf/or32.h \
-  $(INCDIR)/elf/pj.h \
-  $(INCDIR)/elf/ppc.h \
-  $(INCDIR)/elf/ppc64.h \
-  $(INCDIR)/elf/reloc-macros.h \
-  $(INCDIR)/elf/s390.h \
-  $(INCDIR)/elf/score.h \
-  $(INCDIR)/elf/sh.h \
-  $(INCDIR)/elf/sparc.h \
-  $(INCDIR)/elf/spu.h \
-  $(INCDIR)/elf/v850.h \
-  $(INCDIR)/elf/vax.h \
-  $(INCDIR)/elf/x86-64.h \
-  $(INCDIR)/elf/xstormy16.h \
-  $(INCDIR)/elf/xtensa.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  dwarf.h \
-  sysdep.h \
-  unwind-ia64.h
-rename.o: \
-  rename.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-resbin.o: \
-  resbin.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-rescoff.o: \
-  rescoff.c \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-resrc.o: \
-  resrc.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-resres.o: \
-  resres.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-size.o: \
-  size.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-srconv.o: \
-  srconv.c \
-  $(BFDDIR)/libcoff.h \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/bfdlink.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/coff/internal.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  coffgrok.h \
-  config.h \
-  sysdep.h \
-  sysroff.c \
-  sysroff.h
-stabs.o: \
-  stabs.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/aout64.h \
-  $(INCDIR)/aout/stab.def \
-  $(INCDIR)/aout/stab_gnu.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/demangle.h \
-  $(INCDIR)/filenames.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-strings.o: \
-  strings.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-sysdump.o: \
-  sysdump.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  sysroff.c \
-  sysroff.h
-unwind-ia64.o: \
-  unwind-ia64.c \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/elf/ia64.h \
-  $(INCDIR)/elf/reloc-macros.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  unwind-ia64.h
-version.o: \
-  version.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h
-windres.o: \
-  windres.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/obstack.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-winduni.o: \
-  winduni.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  winduni.h
-wrstabs.o: \
-  wrstabs.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/aout/aout64.h \
-  $(INCDIR)/aout/stab.def \
-  $(INCDIR)/aout/stab_gnu.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  budbg.h \
-  config.h \
-  debug.h \
-  sysdep.h
-windmc.o: \
-  windmc.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/obstack.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windmc.h \
-  winduni.h
-mclex.o: \
-  mclex.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  mcparse.h \
-  sysdep.h \
-  windmc.h \
-  winduni.h
-arparse.o: \
-  arparse.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  arsup.h \
-  config.h \
-  sysdep.h
-arlex.o: \
-  arlex.c \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/libiberty.h \
-  arparse.h
-sysroff.o: \
-  sysroff.c
-sysinfo.o: \
-  sysinfo.c
-syslex.o: \
-  syslex.c \
-  config.h \
-  sysinfo.h
-defparse.o: \
-  defparse.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  config.h \
-  dlltool.h \
-  sysdep.h
-deflex.o: \
-  deflex.c \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/libiberty.h \
-  defparse.h \
-  dlltool.h
-nlmheader.o: \
-  nlmheader.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/nlm/common.h \
-  $(INCDIR)/nlm/internal.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  nlmconv.h \
-  sysdep.h
-rcparse.o: \
-  rcparse.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windint.h \
-  windres.h \
-  winduni.h
-mcparse.o: \
-  mcparse.c \
-  $(INCDIR)/alloca-conf.h \
-  $(INCDIR)/ansidecl.h \
-  $(INCDIR)/binary-io.h \
-  $(INCDIR)/fopen-same.h \
-  $(INCDIR)/libiberty.h \
-  $(INCDIR)/safe-ctype.h \
-  $(INCDIR)/symcat.h \
-  ../bfd/bfd.h \
-  ../bfd/bfdver.h \
-  bucomm.h \
-  config.h \
-  sysdep.h \
-  windmc.h \
-  winduni.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.
 .NOEXPORT: