1999-05-03 07:29:11 +00:00
|
|
|
## Process this file with automake to generate Makefile.in
|
|
|
|
|
|
|
|
AUTOMAKE_OPTIONS = cygnus dejagnu
|
2007-06-14 15:31:01 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2001-06-19 11:57:29 +00:00
|
|
|
SUBDIRS = doc po
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
tooldir = $(exec_prefix)/$(target_alias)
|
|
|
|
|
|
|
|
## These aren't set by automake, because they appear in
|
|
|
|
## bfd/acinclude.m4, which is included by binutils/acinclude.m4, and
|
|
|
|
## thus is not seen by automake.
|
|
|
|
CC_FOR_BUILD = @CC_FOR_BUILD@
|
|
|
|
EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
|
|
|
|
|
1999-08-05 15:35:10 +00:00
|
|
|
YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
|
1999-05-03 07:29:11 +00:00
|
|
|
YFLAGS = -d
|
1999-08-05 15:35:10 +00:00
|
|
|
LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-04-09 12:17:43 +00:00
|
|
|
WARN_CFLAGS = @WARN_CFLAGS@
|
2005-04-14 05:26:44 +00:00
|
|
|
NO_WERROR = @NO_WERROR@
|
2000-04-09 12:17:43 +00:00
|
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
* Makefile.am: Add LIBICONV to windres.
* acinclude.m4: Added missing "lib-*.m4" and "lt*.m4" files.
* configure.in: Add AC_CHECK_HEADER for iconv.h and use AM_ICONV.
* config.in: Add ICONV defines.
* aclocal: Regenerate.
* confugure: Regenerate.
* winduni.c: (local_iconv_map codepages, wind_language_t, languages, unicode_is$
(ascii_from_unicode): Use codepage_from_unicode.
(ascii_from_unicode): Use unicode_from_codepage.
Use for cygwin windows API for unicode transformation.
* winduni.h: (CP_ACP, CP_UTF7, CP_UTF8, CP_OEM, CP_UTF16): New macros.
(wind_language_t, local_iconv_map): New types.
(wind_find_language_by_id, wind_find_language_by_codepage,
(unicode_is_valid_codepage, wind_find_codepage_info, unicode_from_codepage, c$
2007-06-05 13:10:30 +00:00
|
|
|
LIBICONV = @LIBICONV@
|
2000-04-09 12:17:43 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
# these two are almost the same program
|
|
|
|
AR_PROG=ar
|
|
|
|
RANLIB_PROG=ranlib
|
|
|
|
|
|
|
|
# objcopy and strip should be the same program
|
|
|
|
OBJCOPY_PROG=objcopy
|
|
|
|
STRIP_PROG=strip-new
|
|
|
|
|
|
|
|
STRINGS_PROG=strings
|
|
|
|
|
|
|
|
READELF_PROG=readelf
|
|
|
|
|
|
|
|
# These should all be the same program too.
|
|
|
|
SIZE_PROG=size
|
|
|
|
NM_PROG=nm-new
|
|
|
|
OBJDUMP_PROG=objdump
|
|
|
|
|
|
|
|
# This is the demangler, as a standalone program.
|
|
|
|
# Note: This one is used as the installed name too, unlike the above.
|
1999-08-08 18:09:48 +00:00
|
|
|
DEMANGLER_PROG=cxxfilt
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
ADDR2LINE_PROG=addr2line
|
|
|
|
|
|
|
|
NLMCONV_PROG=nlmconv
|
|
|
|
DLLTOOL_PROG=dlltool
|
|
|
|
WINDRES_PROG=windres
|
2007-06-19 13:24:33 +00:00
|
|
|
WINDMC_PROG=windmc
|
1999-05-03 07:29:11 +00:00
|
|
|
DLLWRAP_PROG=dllwrap
|
|
|
|
|
2006-06-23 06:04:37 +00:00
|
|
|
SRCONV_PROG=srconv$(EXEEXT) sysdump$(EXEEXT) coffdump$(EXEEXT)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-06-19 13:24:33 +00:00
|
|
|
bin_PROGRAMS = $(SIZE_PROG) $(OBJDUMP_PROG) $(AR_PROG) $(STRINGS_PROG) $(RANLIB_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ @BUILD_WINDRES@ @BUILD_WINDMC@ $(ADDR2LINE_PROG) $(READELF_PROG) @BUILD_DLLWRAP@ @BUILD_INSTALL_MISC@
|
1999-05-03 07:29:11 +00:00
|
|
|
|
1999-08-08 18:09:48 +00:00
|
|
|
## We need a special rule to install the programs which are built with
|
|
|
|
## -new, and to rename cxxfilt to c++filt.
|
2007-02-28 07:10:52 +00:00
|
|
|
RENAMED_PROGS = $(NM_PROG) $(STRIP_PROG) $(DEMANGLER_PROG)
|
|
|
|
noinst_PROGRAMS = $(RENAMED_PROGS) @BUILD_MISC@
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-06-19 13:24:33 +00:00
|
|
|
EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) $(WINDRES_PROG) $(WINDMC_PROG) $(DLLWRAP_PROG)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2002-03-18 12:46:27 +00:00
|
|
|
# Stuff that goes in tooldir/ if appropriate.
|
2007-04-13 12:05:59 +00:00
|
|
|
TOOL_PROGS = nm-new strip-new ar ranlib dlltool objdump objcopy
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
BASEDIR = $(srcdir)/..
|
|
|
|
BFDDIR = $(BASEDIR)/bfd
|
|
|
|
INCDIR = $(BASEDIR)/include
|
|
|
|
|
2000-04-04 10:53:56 +00:00
|
|
|
MKDEP = gcc -MM
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-08-31 15:06:11 +00:00
|
|
|
INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) \
|
2002-03-18 12:46:27 +00:00
|
|
|
@HDEFINES@ \
|
2006-05-31 15:14:46 +00:00
|
|
|
@INCINTL@ \
|
2004-11-30 17:20:48 +00:00
|
|
|
-DLOCALEDIR="\"$(datadir)/locale\"" \
|
2002-03-18 12:46:27 +00:00
|
|
|
-Dbin_dummy_emulation=$(EMULATION_VECTOR)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2002-07-02 04:21:25 +00:00
|
|
|
HFILES = \
|
2007-04-19 10:43:47 +00:00
|
|
|
arsup.h binemul.h bucomm.h budbg.h \
|
2007-07-08 12:57:07 +00:00
|
|
|
coffgrok.h debug.h dlltool.h dwarf.h nlmconv.h \
|
|
|
|
sysdep.h unwind-ia64.h windres.h winduni.h windint.h \
|
2007-06-19 13:24:33 +00:00
|
|
|
windmc.h
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-06-19 13:24:33 +00:00
|
|
|
GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h mcparse.h
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2002-07-02 04:21:25 +00:00
|
|
|
CFILES = \
|
2007-04-19 10:43:47 +00:00
|
|
|
addr2line.c ar.c arsup.c bin2c.c binemul.c bucomm.c \
|
2005-09-30 14:55:05 +00:00
|
|
|
coffdump.c coffgrok.c cxxfilt.c \
|
|
|
|
dwarf.c debug.c dlltool.c dllwrap.c \
|
2002-07-02 04:21:25 +00:00
|
|
|
emul_aix.c emul_vanilla.c filemode.c \
|
|
|
|
ieee.c is-ranlib.c is-strip.c maybe-ranlib.c maybe-strip.c \
|
|
|
|
nlmconv.c nm.c not-ranlib.c not-strip.c \
|
|
|
|
objcopy.c objdump.c prdbg.c \
|
2007-05-23 08:48:29 +00:00
|
|
|
rclex.c rdcoff.c rddbg.c readelf.c rename.c \
|
2002-07-02 04:21:25 +00:00
|
|
|
resbin.c rescoff.c resrc.c resres.c \
|
2007-07-08 12:57:07 +00:00
|
|
|
size.c srconv.c stabs.c strings.c sysdump.c \
|
|
|
|
unwind-ia64.c version.c \
|
2007-06-19 13:24:33 +00:00
|
|
|
windres.c winduni.c wrstabs.c \
|
|
|
|
windmc.c mclex.c
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
GENERATED_CFILES = \
|
2002-09-17 07:09:47 +00:00
|
|
|
arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
|
2007-06-19 13:24:33 +00:00
|
|
|
defparse.c deflex.c nlmheader.c rcparse.c mcparse.c
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
DEBUG_SRCS = rddbg.c debug.c stabs.c ieee.c rdcoff.c
|
|
|
|
WRITE_DEBUG_SRCS = $(DEBUG_SRCS) wrstabs.c
|
|
|
|
|
|
|
|
# Code shared by all the binutils.
|
|
|
|
BULIBS = bucomm.c version.c filemode.c
|
|
|
|
|
|
|
|
BFDLIB = ../bfd/libbfd.la
|
|
|
|
|
|
|
|
OPCODES = ../opcodes/libopcodes.la
|
|
|
|
|
|
|
|
LIBIBERTY = ../libiberty/libiberty.a
|
|
|
|
|
2009-02-03 15:54:05 +00:00
|
|
|
.PHONY: install-pdf install-pdf-am install-pdf-recursive
|
|
|
|
|
|
|
|
install-pdf: install-pdf-recursive
|
|
|
|
|
|
|
|
install-pdf-recursive:
|
|
|
|
@failcom='exit 1'; \
|
|
|
|
for f in x $$MAKEFLAGS; do \
|
|
|
|
case $$f in \
|
|
|
|
*=* | --[!k]*);; \
|
|
|
|
*k*) failcom='fail=yes';; \
|
|
|
|
esac; \
|
|
|
|
done; \
|
|
|
|
dot_seen=no; \
|
|
|
|
target=`echo $@ | sed s/-recursive//`; \
|
|
|
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
|
|
echo "Making $$target in $$subdir"; \
|
|
|
|
if test "$$subdir" = "."; then \
|
|
|
|
dot_seen=yes; \
|
|
|
|
local_target="$$target-am"; \
|
|
|
|
else \
|
|
|
|
local_target="$$target"; \
|
|
|
|
fi; \
|
|
|
|
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
|
|
|| eval $$failcom; \
|
|
|
|
done; \
|
|
|
|
if test "$$dot_seen" = "no"; then \
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
|
|
|
fi; test -z "$$fail"
|
|
|
|
|
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.tpl: Add install-html target.
* Makefile.def: Add install-html target.
* Makefile.in: Regenerate.
* configure.in: Add --with-datarootdir, --with-docdir,
and --with-htmldir options.
* configure: Regenerate.
bfd/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Rename docdir to bfddocdir. Add datarootdir, docdir
htmldir. Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST for datarootdir, docdir and htmldir.
* configure: Regenerate.
bfd/doc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html and install-html-am targets.
Define datarootdir, docdir and htmldir.
* Makefile.in: Regenerate.
binutils/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir and htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
etc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add install-html target. Add htmldir,
docdir and datarootdir.
* configure.texi: Document install-html target.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
gas/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
gprof/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html, install-html-am and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
intl/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* intl/Makefile.in: Add html info and dvi and install-html to .PHONY
Add install-html target.
ld/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html, install-html-am, and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* po/Make-in: Add install-html target.
opcodes/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html target.
* Makefile.in: Regenerate.
2006-04-06 21:49:35 +00:00
|
|
|
.PHONY: install-html install-html-am install-html-recursive
|
|
|
|
|
2006-06-23 06:04:37 +00:00
|
|
|
install-html: install-html-recursive
|
|
|
|
|
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.tpl: Add install-html target.
* Makefile.def: Add install-html target.
* Makefile.in: Regenerate.
* configure.in: Add --with-datarootdir, --with-docdir,
and --with-htmldir options.
* configure: Regenerate.
bfd/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Rename docdir to bfddocdir. Add datarootdir, docdir
htmldir. Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST for datarootdir, docdir and htmldir.
* configure: Regenerate.
bfd/doc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html and install-html-am targets.
Define datarootdir, docdir and htmldir.
* Makefile.in: Regenerate.
binutils/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir and htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
etc/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.in: Add install-html target. Add htmldir,
docdir and datarootdir.
* configure.texi: Document install-html target.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
gas/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html and install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* doc/Makefile.am: Add install-html and install-html-am targets.
* doc/Makefile.in: Regenerate.
gprof/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* po/Make-in: Add install-html target.
* Makefile.am: Add install-html, install-html-am and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
intl/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* intl/Makefile.in: Add html info and dvi and install-html to .PHONY
Add install-html target.
ld/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html, install-html-am, and
install-html-recursive targets.
* Makefile.in: Regenerate.
* configure.in: AC_SUBST datarootdir, docdir, htmldir.
* configure: Regenerate.
* po/Make-in: Add install-html target.
opcodes/
2006-04-06 Carlos O'Donell <carlos@codesourcery.com>
* Makefile.am: Add install-html target.
* Makefile.in: Regenerate.
2006-04-06 21:49:35 +00:00
|
|
|
install-html-recursive:
|
|
|
|
@failcom='exit 1'; \
|
|
|
|
for f in x $$MAKEFLAGS; do \
|
|
|
|
case $$f in \
|
|
|
|
*=* | --[!k]*);; \
|
|
|
|
*k*) failcom='fail=yes';; \
|
|
|
|
esac; \
|
|
|
|
done; \
|
|
|
|
dot_seen=no; \
|
|
|
|
target=`echo $@ | sed s/-recursive//`; \
|
|
|
|
list='$(SUBDIRS)'; for subdir in $$list; do \
|
|
|
|
echo "Making $$target in $$subdir"; \
|
|
|
|
if test "$$subdir" = "."; then \
|
|
|
|
dot_seen=yes; \
|
|
|
|
local_target="$$target-am"; \
|
|
|
|
else \
|
|
|
|
local_target="$$target"; \
|
|
|
|
fi; \
|
|
|
|
(cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
|
|
|
|| eval $$failcom; \
|
|
|
|
done; \
|
|
|
|
if test "$$dot_seen" = "no"; then \
|
|
|
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
|
|
|
fi; test -z "$$fail"
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES)
|
|
|
|
po/POTFILES.in: @MAINT@ Makefile
|
2008-08-04 06:55:33 +00:00
|
|
|
for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
|
1999-05-03 07:29:11 +00:00
|
|
|
&& mv tmp $(srcdir)/po/POTFILES.in
|
|
|
|
|
2005-06-29 20:30:00 +00:00
|
|
|
EXPECT = expect
|
|
|
|
RUNTEST = runtest
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
CC_FOR_TARGET = ` \
|
|
|
|
if [ -f $$r/../gcc/xgcc ] ; then \
|
|
|
|
if [ -f $$r/../newlib/Makefile ] ; then \
|
|
|
|
echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
|
|
|
|
else \
|
|
|
|
echo $$r/../gcc/xgcc -B$$r/../gcc/; \
|
|
|
|
fi; \
|
|
|
|
else \
|
|
|
|
if [ "@host@" = "@target@" ] ; then \
|
|
|
|
echo $(CC); \
|
|
|
|
else \
|
|
|
|
echo gcc | sed '$(transform)'; \
|
|
|
|
fi; \
|
|
|
|
fi`
|
|
|
|
|
|
|
|
check-DEJAGNU: site.exp
|
|
|
|
srcdir=`cd $(srcdir) && pwd`; export srcdir; \
|
|
|
|
r=`pwd`; export r; \
|
|
|
|
EXPECT=$(EXPECT); export EXPECT; \
|
|
|
|
runtest=$(RUNTEST); \
|
|
|
|
if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
|
2001-11-29 17:00:58 +00:00
|
|
|
CC_FOR_TARGET="$(CC_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS)" \
|
|
|
|
$$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
|
|
|
|
$(RUNTESTFLAGS); \
|
1999-05-03 07:29:11 +00:00
|
|
|
else echo "WARNING: could not find \`runtest'" 1>&2; :;\
|
|
|
|
fi
|
|
|
|
|
|
|
|
installcheck:
|
|
|
|
/bin/sh $(srcdir)/sanity.sh $(bindir)
|
|
|
|
|
2006-05-31 15:14:46 +00:00
|
|
|
# There's no global DEPENDENCIES. So, we must explicitly list everything
|
|
|
|
# which depends on libintl, since we don't know whether LIBINTL_DEP will be
|
|
|
|
# non-empty until configure time. Ugh!
|
2006-06-23 06:04:37 +00:00
|
|
|
size_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
objdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB) $(OPCODES)
|
|
|
|
nm_new_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
2006-06-23 14:30:59 +00:00
|
|
|
ar_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
2006-06-23 06:04:37 +00:00
|
|
|
strings_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
strip_new_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
2006-06-23 14:30:59 +00:00
|
|
|
ranlib_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
2006-06-23 06:04:37 +00:00
|
|
|
cxxfilt_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
objcopy_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
nlmconv_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
srconv_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
sysdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
coffdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
2006-06-23 14:30:59 +00:00
|
|
|
dlltool_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
2007-06-26 14:39:52 +00:00
|
|
|
windres_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
windmc_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
2006-06-23 06:04:37 +00:00
|
|
|
addr2line_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
|
|
|
|
readelf_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY)
|
|
|
|
dllwrap_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY)
|
2006-05-31 15:14:46 +00:00
|
|
|
|
|
|
|
LDADD = $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
size_SOURCES = size.c $(BULIBS)
|
|
|
|
|
|
|
|
objcopy_SOURCES = objcopy.c not-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
|
|
|
|
|
|
|
|
strings_SOURCES = strings.c $(BULIBS)
|
|
|
|
|
2005-09-30 14:55:05 +00:00
|
|
|
readelf_SOURCES = readelf.c version.c unwind-ia64.c dwarf.c
|
2006-05-31 15:14:46 +00:00
|
|
|
readelf_LDADD = $(LIBINTL) $(LIBIBERTY)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
strip_new_SOURCES = objcopy.c is-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
|
|
|
|
|
2007-04-19 10:43:47 +00:00
|
|
|
nm_new_SOURCES = nm.c $(BULIBS)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-04-19 10:43:47 +00:00
|
|
|
objdump_SOURCES = objdump.c dwarf.c prdbg.c $(DEBUG_SRCS) $(BULIBS)
|
2006-05-31 15:14:46 +00:00
|
|
|
objdump_LDADD = $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2001-01-09 20:25:31 +00:00
|
|
|
objdump.o:objdump.c
|
|
|
|
$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
|
|
|
|
|
2002-09-17 07:09:47 +00:00
|
|
|
cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2002-03-18 12:46:27 +00:00
|
|
|
ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c binemul.c \
|
|
|
|
emul_$(EMULATION).c $(BULIBS)
|
2006-05-31 15:14:46 +00:00
|
|
|
ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2002-03-18 12:46:27 +00:00
|
|
|
ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c \
|
|
|
|
binemul.c emul_$(EMULATION).c $(BULIBS)
|
2006-05-31 15:14:46 +00:00
|
|
|
ranlib_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-04-19 10:43:47 +00:00
|
|
|
addr2line_SOURCES = addr2line.c $(BULIBS)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2000-04-04 10:53:56 +00:00
|
|
|
# The following is commented out for the conversion to automake.
|
1999-05-03 07:29:11 +00:00
|
|
|
# This rule creates a single binary that switches between ar and ranlib
|
|
|
|
# by looking at argv[0]. Use this kludge to save some disk space.
|
|
|
|
# However, you have to install things by hand.
|
|
|
|
# (That is after 'make install', replace the installed ranlib by a link to ar.)
|
|
|
|
# Alternatively, you can install ranlib.sh as ranlib.
|
|
|
|
# ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
|
|
|
|
# $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
|
|
|
|
# -rm -f $(RANLIB_PROG)
|
|
|
|
# -ln $(AR_PROG) $(RANLIB_PROG)
|
|
|
|
#
|
|
|
|
# objcopy and strip in one binary that uses argv[0] to decide its action.
|
|
|
|
#
|
|
|
|
#objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
|
|
|
|
# $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
|
|
|
|
# -rm -f $(STRIP_PROG)
|
|
|
|
# -ln $(OBJCOPY_PROG) $(STRIP_PROG)
|
|
|
|
|
2006-06-23 06:04:37 +00:00
|
|
|
sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
|
1999-05-03 07:29:11 +00:00
|
|
|
./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
|
|
|
|
./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
|
|
|
|
./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
|
|
|
|
|
|
|
|
sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
|
|
|
|
./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
|
|
|
|
|
|
|
|
sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
|
2005-02-22 12:57:27 +00:00
|
|
|
$(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-02-22 12:57:27 +00:00
|
|
|
syslex.o:
|
1999-05-03 07:29:11 +00:00
|
|
|
if [ -r syslex.c ]; then \
|
2005-04-12 02:50:28 +00:00
|
|
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) syslex.c -Wno-error ; \
|
1999-05-03 07:29:11 +00:00
|
|
|
else \
|
2005-04-12 02:50:28 +00:00
|
|
|
$(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS) $(srcdir)/syslex.c -Wno-error ;\
|
1999-05-03 07:29:11 +00:00
|
|
|
fi
|
|
|
|
|
2005-02-22 12:57:27 +00:00
|
|
|
sysinfo.o:
|
1999-05-03 07:29:11 +00:00
|
|
|
if [ -r sysinfo.c ]; then \
|
2005-04-12 02:50:28 +00:00
|
|
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) sysinfo.c -Wno-error ; \
|
1999-05-03 07:29:11 +00:00
|
|
|
else \
|
2005-04-12 02:50:28 +00:00
|
|
|
$(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) $(srcdir)/sysinfo.c -Wno-error ; \
|
1999-05-03 07:29:11 +00:00
|
|
|
fi
|
|
|
|
|
2007-02-28 01:29:32 +00:00
|
|
|
bin2c$(EXEEXT_FOR_BUILD):
|
|
|
|
$(CC_FOR_BUILD) -o $@ $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) $(srcdir)/bin2c.c $(srcdir)/version.c
|
|
|
|
|
2007-01-11 06:24:40 +00:00
|
|
|
embedspu: embedspu.sh
|
|
|
|
sed "s@^program_transform_name=@program_transform_name=$(program_transform_name)@" < $< > $@
|
|
|
|
chmod a+x $@
|
|
|
|
|
2000-04-04 10:53:56 +00:00
|
|
|
# We need these for parallel make.
|
|
|
|
arparse.h: arparse.c
|
|
|
|
defparse.h: defparse.c
|
|
|
|
nlmheader.h: nlmheader.c
|
|
|
|
rcparse.h: rcparse.c
|
2007-06-19 13:24:33 +00:00
|
|
|
mcparse.h: mcparse.c
|
2000-04-04 10:53:56 +00:00
|
|
|
sysinfo.h: sysinfo.c
|
|
|
|
|
2005-04-12 02:50:28 +00:00
|
|
|
# Disable -Werror, if it has been enabled, since old versions of bison/
|
2006-06-23 06:04:37 +00:00
|
|
|
# yacc will produce working code which contain compile time warnings.
|
2005-04-12 02:50:28 +00:00
|
|
|
arparse.o:
|
2005-04-14 05:26:44 +00:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 02:50:28 +00:00
|
|
|
arlex.o:
|
2005-04-14 05:26:44 +00:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 02:50:28 +00:00
|
|
|
sysroff.o:
|
2005-04-14 05:26:44 +00:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 02:50:28 +00:00
|
|
|
defparse.o:
|
2005-04-14 05:26:44 +00:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 02:50:28 +00:00
|
|
|
deflex.o:
|
2005-04-14 05:26:44 +00:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 02:50:28 +00:00
|
|
|
nlmheader.o:
|
2005-04-14 05:26:44 +00:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 02:50:28 +00:00
|
|
|
rcparse.o:
|
2005-04-14 05:26:44 +00:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2007-06-19 13:24:33 +00:00
|
|
|
mcparse.o:
|
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 02:50:28 +00:00
|
|
|
rclex.o:
|
2005-04-14 05:26:44 +00:00
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2007-06-19 13:24:33 +00:00
|
|
|
mclex.o:
|
|
|
|
$(COMPILE) -c $< $(NO_WERROR)
|
2005-04-12 02:50:28 +00:00
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
|
|
|
|
|
2000-06-16 00:46:22 +00:00
|
|
|
dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS)
|
2006-05-31 15:14:46 +00:00
|
|
|
dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2005-02-22 12:57:27 +00:00
|
|
|
dlltool.o:
|
1999-05-03 07:29:11 +00:00
|
|
|
$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
|
|
|
|
|
2005-02-22 12:57:27 +00:00
|
|
|
rescoff.o:
|
1999-05-11 21:06:16 +00:00
|
|
|
$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
|
|
|
|
|
1999-05-03 07:29:11 +00:00
|
|
|
coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
|
|
|
|
|
|
|
|
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
|
|
|
|
ldname=`echo ld | sed '$(transform)'`; \
|
|
|
|
$(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
|
|
|
|
|
|
|
|
nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS)
|
|
|
|
|
2007-05-23 08:48:29 +00:00
|
|
|
windres_SOURCES = windres.c resrc.c rescoff.c resbin.c rcparse.y rclex.c \
|
1999-05-03 07:29:11 +00:00
|
|
|
winduni.c resres.c $(BULIBS)
|
2007-06-26 14:39:52 +00:00
|
|
|
windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL) $(LIBICONV)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-06-19 13:24:33 +00:00
|
|
|
windmc_SOURCES = windmc.c mcparse.y mclex.c \
|
|
|
|
winduni.c $(BULIBS)
|
2007-06-26 14:39:52 +00:00
|
|
|
windmc_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL) $(LIBICONV)
|
2007-06-19 13:24:33 +00:00
|
|
|
|
2000-06-16 00:46:22 +00:00
|
|
|
dllwrap_SOURCES = dllwrap.c version.c
|
2006-05-31 15:14:46 +00:00
|
|
|
dllwrap_LDADD = $(LIBIBERTY) $(LIBINTL)
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
|
2001-06-19 11:57:29 +00:00
|
|
|
EXTRA_DIST = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
|
2007-06-19 13:24:33 +00:00
|
|
|
syslex.c deflex.c defparse.h defparse.c rcparse.h rcparse.c \
|
|
|
|
mcparse.h mcparse.c
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2001-06-19 11:57:29 +00:00
|
|
|
diststuff: $(EXTRA_DIST) info
|
2005-05-19 23:49:52 +00:00
|
|
|
all: info
|
1999-05-03 07:29:11 +00:00
|
|
|
|
2007-02-28 01:29:32 +00:00
|
|
|
DISTCLEANFILES = sysroff.c sysroff.h site.exp site.bak
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
# Targets to rebuild dependencies in this Makefile.
|
1999-08-08 17:34:16 +00:00
|
|
|
# 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
|
2000-04-04 10:53:56 +00:00
|
|
|
$(MAKE) MKDEP="$(MKDEP)" DEP1
|
2009-05-26 03:20:10 +00:00
|
|
|
echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEP1
|
|
|
|
if grep ' /' DEP1 > /dev/null 2> /dev/null; then \
|
2000-06-22 13:14:21 +00:00
|
|
|
echo 'make DEP failed!'; exit 1; \
|
|
|
|
else \
|
2009-05-26 03:20:10 +00:00
|
|
|
mv -f DEP1 $@; \
|
2000-06-22 13:14:21 +00:00
|
|
|
fi
|
1999-05-03 07:29:11 +00:00
|
|
|
|
1999-08-08 17:34:16 +00:00
|
|
|
DEP1: $(CFILES) $(GENERATED_CFILES)
|
|
|
|
echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
|
2000-04-04 10:53:56 +00:00
|
|
|
echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
|
2009-05-26 03:20:10 +00:00
|
|
|
for f in $?; do \
|
|
|
|
$(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \
|
|
|
|
sed -n -e '1s/: .*/: \\/p' -e q < DEPA >> DEP2; \
|
2009-06-04 06:56:53 +00:00
|
|
|
sed -e '1s/.*: //' -f dep.sed < DEPA | \
|
|
|
|
LC_ALL=C sort | LC_ALL=C uniq | \
|
2009-05-26 03:20:10 +00:00
|
|
|
sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \
|
|
|
|
done
|
|
|
|
rm -f DEPA
|
2000-04-04 10:53:56 +00:00
|
|
|
mv -f DEP2 $@
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
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)!' \
|
2002-04-04 14:07:22 +00:00
|
|
|
-e "s!@OBJDIR@!$${objdir}!" \
|
|
|
|
-e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/binutils$$,,`'!'
|
1999-05-03 07:29:11 +00:00
|
|
|
|
1999-08-08 17:34:16 +00:00
|
|
|
dep: DEP
|
1999-05-03 07:29:11 +00:00
|
|
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
|
1999-08-08 17:34:16 +00:00
|
|
|
cat DEP >> tmp-Makefile
|
1999-05-03 07:29:11 +00:00
|
|
|
$(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
|
|
|
|
|
1999-08-08 17:34:16 +00:00
|
|
|
dep-in: DEP
|
1999-05-03 07:29:11 +00:00
|
|
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
|
1999-08-08 17:34:16 +00:00
|
|
|
cat DEP >> tmp-Makefile.in
|
1999-05-03 07:29:11 +00:00
|
|
|
$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
|
|
|
|
|
1999-08-08 17:34:16 +00:00
|
|
|
dep-am: DEP
|
1999-05-03 07:29:11 +00:00
|
|
|
sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
|
1999-08-08 17:34:16 +00:00
|
|
|
cat DEP >> tmp-Makefile.am
|
1999-05-03 07:29:11 +00:00
|
|
|
$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
|
|
|
|
|
|
|
|
.PHONY: dep dep-in dep-am
|
|
|
|
|
|
|
|
###
|
2001-06-19 11:57:29 +00:00
|
|
|
|
2007-02-28 01:29:32 +00:00
|
|
|
MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
|
|
|
|
binutils.log binutils.sum abcdefgh*
|
1999-05-03 07:29:11 +00:00
|
|
|
mostlyclean-local:
|
|
|
|
-rm -rf tmpdir
|
|
|
|
|
2000-07-01 01:41:09 +00:00
|
|
|
CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
|
1999-05-03 07:29:11 +00:00
|
|
|
|
|
|
|
.PHONY: install-exec-local
|
|
|
|
|
2007-03-01 12:35:40 +00:00
|
|
|
install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
|
2007-02-28 07:10:52 +00:00
|
|
|
@list='$(RENAMED_PROGS)'; for p in $$list; do \
|
2007-03-01 12:35:40 +00:00
|
|
|
if test -f $$p$(EXEEXT); then \
|
|
|
|
echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p$(EXEEXT) $(bindir)/`echo $$p|sed -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
|
|
|
|
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p$(EXEEXT) $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
|
1999-05-03 07:29:11 +00:00
|
|
|
else :; fi; \
|
|
|
|
done
|
2002-05-07 17:22:20 +00:00
|
|
|
$(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
|
1999-05-03 07:29:11 +00:00
|
|
|
for i in $(TOOL_PROGS); do \
|
|
|
|
if [ -f $$i$(EXEEXT) ]; then \
|
|
|
|
j=`echo $$i | sed -e 's/-new//'`; \
|
|
|
|
k=`echo $$j | sed '$(transform)'`; \
|
2003-11-28 04:58:41 +00:00
|
|
|
if [ "$(bindir)/$$k" != "$(tooldir)/bin/$$j" ]; then \
|
2002-05-07 17:22:20 +00:00
|
|
|
rm -f $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
|
|
|
|
ln $(DESTDIR)$(bindir)/$$k$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
|
|
|
|
|| $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
|
1999-05-03 07:29:11 +00:00
|
|
|
fi; \
|
|
|
|
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.
|
2009-05-26 03:20:10 +00:00
|
|
|
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 \
|
2009-06-04 06:56:53 +00:00
|
|
|
$(BFDDIR)/plugin.h \
|
2009-05-26 03:20:10 +00:00
|
|
|
$(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)/elf/common.h \
|
|
|
|
$(INCDIR)/elf/dwarf2.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 \
|
2009-06-04 06:56:53 +00:00
|
|
|
$(BFDDIR)/plugin.h \
|
2009-05-26 03:20:10 +00:00
|
|
|
$(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 \
|
2009-03-03 02:41:14 +00:00
|
|
|
arparse.h
|
2009-05-26 03:20:10 +00:00
|
|
|
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
|
1999-05-03 07:29:11 +00:00
|
|
|
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
|