summaryrefslogtreecommitdiff
path: root/binutils/Makefile.am
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2009-08-22 18:18:42 +0000
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>2009-08-22 18:18:42 +0000
commit52225508d9b434955c8af209411de59c9ec0d4d2 (patch)
tree768a70d776bbec144be96f15927766fb7620129a /binutils/Makefile.am
parent655b9c8b660aec015551f8ef1d7888eaf6231c33 (diff)
downloadbinutils-redhat-52225508d9b434955c8af209411de59c9ec0d4d2.tar.gz
dependency tracking in binutils
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.
Diffstat (limited to 'binutils/Makefile.am')
-rw-r--r--binutils/Makefile.am1122
1 files changed, 164 insertions, 958 deletions
diff --git a/binutils/Makefile.am b/binutils/Makefile.am
index 2d3871557b..9dc52950ef 100644
--- a/binutils/Makefile.am
+++ b/binutils/Makefile.am
@@ -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