Add --srec-len and --srec-forceS3 switches to objcopy
[deliverable/binutils-gdb.git] / binutils / Makefile.am
CommitLineData
252b5132
RH
1## Process this file with automake to generate Makefile.in
2
3## FIXME: Work around apparent bug in automake.
4INTLLIBS = @INTLLIBS@
5
6AUTOMAKE_OPTIONS = cygnus dejagnu
7
8SUBDIRS = po
9
10tooldir = $(exec_prefix)/$(target_alias)
11
12## These aren't set by automake, because they appear in
13## bfd/acinclude.m4, which is included by binutils/acinclude.m4, and
14## thus is not seen by automake.
15CC_FOR_BUILD = @CC_FOR_BUILD@
16EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
17
7a7b06ef 18YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
252b5132 19YFLAGS = -d
7a7b06ef 20LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
252b5132 21
a2d91340
AC
22WARN_CFLAGS = @WARN_CFLAGS@
23AM_CFLAGS = $(WARN_CFLAGS)
24
252b5132
RH
25# these two are almost the same program
26AR_PROG=ar
27RANLIB_PROG=ranlib
28
29# objcopy and strip should be the same program
30OBJCOPY_PROG=objcopy
31STRIP_PROG=strip-new
32
33STRINGS_PROG=strings
34
35READELF_PROG=readelf
36
37# These should all be the same program too.
38SIZE_PROG=size
39NM_PROG=nm-new
40OBJDUMP_PROG=objdump
41
42# This is the demangler, as a standalone program.
43# Note: This one is used as the installed name too, unlike the above.
8a965946 44DEMANGLER_PROG=cxxfilt
252b5132
RH
45
46ADDR2LINE_PROG=addr2line
47
48NLMCONV_PROG=nlmconv
49DLLTOOL_PROG=dlltool
50WINDRES_PROG=windres
51DLLWRAP_PROG=dllwrap
52
53SRCONV_PROG=srconv$(EXEEXT) sysdump$(EXEEXT) coffdump$(EXEEXT)
54
55man_MANS = ar.1 nm.1 objdump.1 ranlib.1 size.1 strings.1 strip.1 objcopy.1 \
8a965946 56 addr2line.1 nlmconv.1 $(DEMANGLER_NAME).1
252b5132
RH
57
58PROGS = $(SIZE_PROG) $(OBJDUMP_PROG) $(NM_PROG) $(AR_PROG) $(STRINGS_PROG) $(STRIP_PROG) $(RANLIB_PROG) $(DEMANGLER_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ @BUILD_WINDRES@ $(ADDR2LINE_PROG) $(READELF_PROG) @BUILD_DLLWRAP@ @BUILD_MISC@
59
8a965946 60bin_PROGRAMS = $(SIZE_PROG) $(OBJDUMP_PROG) $(AR_PROG) $(STRINGS_PROG) $(RANLIB_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ @BUILD_WINDRES@ $(ADDR2LINE_PROG) $(READELF_PROG) @BUILD_DLLWRAP@ @BUILD_MISC@
252b5132 61
8a965946
ILT
62## We need a special rule to install the programs which are built with
63## -new, and to rename cxxfilt to c++filt.
64noinst_PROGRAMS = $(NM_PROG) $(STRIP_PROG) $(DEMANGLER_PROG)
252b5132
RH
65
66EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) $(WINDRES_PROG) $(DLLWRAP_PROG)
67
68# Stuff that goes in tooldir/ if appropriate
69TOOL_PROGS = nm-new strip-new ar ranlib dlltool
70
71BASEDIR = $(srcdir)/..
72BFDDIR = $(BASEDIR)/bfd
73INCDIR = $(BASEDIR)/include
74
41b49281 75MKDEP = gcc -MM
252b5132
RH
76
77INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) @HDEFINES@ -I$(srcdir)/../intl -I../intl -DLOCALEDIR="\"$(prefix)/share/locale\""
78
79HFILES = arsup.h bucomm.h budbg.h coffgrok.h debug.h nlmconv.h dlltool.h \
0724d64b 80 windres.h winduni.h
252b5132 81
41b49281 82GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h
252b5132
RH
83
84CFILES = addr2line.c ar.c arsup.c bucomm.c coffdump.c coffgrok.c debug.c \
85 dlltool.c filemode.c ieee.c is-ranlib.c is-strip.c maybe-ranlib.c \
86 maybe-strip.c nlmconv.c nm.c not-ranlib.c not-strip.c \
87 objcopy.c objdump.c prdbg.c rdcoff.c rddbg.c size.c srconv.c \
88 stabs.c strings.c sysdump.c version.c wrstabs.c \
89 windres.c resrc.c rescoff.c resbin.c winduni.c readelf.c \
0724d64b 90 resres.c dllwrap.c rename.c
252b5132
RH
91
92GENERATED_CFILES = \
93 underscore.c arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
94 defparse.c deflex.c nlmheader.c rcparse.c rclex.c
95
96DEBUG_SRCS = rddbg.c debug.c stabs.c ieee.c rdcoff.c
97WRITE_DEBUG_SRCS = $(DEBUG_SRCS) wrstabs.c
98
99# Code shared by all the binutils.
100BULIBS = bucomm.c version.c filemode.c
101
102BFDLIB = ../bfd/libbfd.la
103
104OPCODES = ../opcodes/libopcodes.la
105
106LIBIBERTY = ../libiberty/libiberty.a
107
108POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES)
109po/POTFILES.in: @MAINT@ Makefile
110 for file in $(POTFILES); do echo $$file; done | sort > tmp \
111 && mv tmp $(srcdir)/po/POTFILES.in
112
113EXPECT = `if [ -f $$r/../expect/expect ] ; then \
114 echo $$r/../expect/expect ; \
115 else echo expect ; fi`
116RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \
117 echo ${srcdir}/../dejagnu/runtest ; \
118 else echo runtest ; fi`
119
120CC_FOR_TARGET = ` \
121 if [ -f $$r/../gcc/xgcc ] ; then \
122 if [ -f $$r/../newlib/Makefile ] ; then \
123 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
124 else \
125 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
126 fi; \
127 else \
128 if [ "@host@" = "@target@" ] ; then \
129 echo $(CC); \
130 else \
131 echo gcc | sed '$(transform)'; \
132 fi; \
133 fi`
134
135check-DEJAGNU: site.exp
136 srcdir=`cd $(srcdir) && pwd`; export srcdir; \
137 r=`pwd`; export r; \
138 EXPECT=$(EXPECT); export EXPECT; \
139 if [ -f $(top_builddir)/../expect/expect ]; then \
140 TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \
141 export TCL_LIBRARY; \
142 fi; \
143 runtest=$(RUNTEST); \
144 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
145 $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
146 CC_FOR_TARGET="$(CC_FOR_TARGET)" \
147 CFLAGS_FOR_TARGET="$(CFLAGS)" $(RUNTESTFLAGS); \
148 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
149 fi
150
151installcheck:
152 /bin/sh $(srcdir)/sanity.sh $(bindir)
153
154info_TEXINFOS = binutils.texi
155
156LDADD = $(BFDLIB) $(LIBIBERTY) $(INTLLIBS)
157
158size_SOURCES = size.c $(BULIBS)
159
160objcopy_SOURCES = objcopy.c not-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
161
162strings_SOURCES = strings.c $(BULIBS)
163
164readelf_SOURCES = readelf.c version.c
165readelf_LDADD = $(INTLLIBS) $(LIBIBERTY)
166
167strip_new_SOURCES = objcopy.c is-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
168
169nm_new_SOURCES = nm.c $(BULIBS)
170
171objdump_SOURCES = objdump.c prdbg.c $(DEBUG_SRCS) $(BULIBS)
172objdump_LDADD = $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(INTLLIBS)
173
174underscore.c: stamp-under ; @true
175
176stamp-under: Makefile
177 echo '/*WARNING: This file is automatically generated!*/' >underscore.t
178 echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t
179 $(SHELL) $(srcdir)/../move-if-change underscore.t underscore.c
180 touch stamp-under
181
182cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h
183 $(COMPILE) -c -DMAIN -DVERSION='"$(VERSION)"' $(BASEDIR)/libiberty/cplus-dem.c
184
8a965946
ILT
185cxxfilt_SOURCES =
186cxxfilt_LDADD = cplus-dem.o underscore.o $(LIBIBERTY) $(INTLLIBS)
252b5132
RH
187
188ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c $(BULIBS)
189ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
190
191ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c $(BULIBS)
192ranlib_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
193
194addr2line_SOURCES = addr2line.c $(BULIBS)
195
41b49281 196# The following is commented out for the conversion to automake.
252b5132
RH
197# This rule creates a single binary that switches between ar and ranlib
198# by looking at argv[0]. Use this kludge to save some disk space.
199# However, you have to install things by hand.
200# (That is after 'make install', replace the installed ranlib by a link to ar.)
201# Alternatively, you can install ranlib.sh as ranlib.
202# ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
203# $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
204# -rm -f $(RANLIB_PROG)
205# -ln $(AR_PROG) $(RANLIB_PROG)
206#
207# objcopy and strip in one binary that uses argv[0] to decide its action.
208#
209#objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
210# $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
211# -rm -f $(STRIP_PROG)
212# -ln $(OBJCOPY_PROG) $(STRIP_PROG)
213
214sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
215 ./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
216 ./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
217 ./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
218
219sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
220 ./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
221
222sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
223 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
224
225syslex.o: syslex.c sysinfo.h
226 if [ -r syslex.c ]; then \
227 $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \
228 else \
229 $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(CFLAGS) $(srcdir)/syslex.c ;\
230 fi
231
232sysinfo.o: sysinfo.c
233 if [ -r sysinfo.c ]; then \
234 $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \
235 else \
236 $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
237 fi
238
41b49281
AM
239# We need these for parallel make.
240arparse.h: arparse.c
241defparse.h: defparse.c
242nlmheader.h: nlmheader.c
243rcparse.h: rcparse.c
244sysinfo.h: sysinfo.c
245
252b5132
RH
246srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
247
0724d64b 248dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS)
252b5132
RH
249dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
250
251dlltool.o:dlltool.c
252 $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
253
09cda596
DD
254rescoff.o:rescoff.c
255 $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
256
252b5132
RH
257coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
258
259sysdump_SOURCES = sysdump.c $(BULIBS)
260
261# coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
262# scripts, since they are only included conditionally.
263nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
264 ldname=`echo ld | sed '$(transform)'`; \
265 $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
266
267nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS)
268
269windres_SOURCES = windres.c resrc.c rescoff.c resbin.c rcparse.y rclex.l \
270 winduni.c resres.c $(BULIBS)
271windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
272
0724d64b 273dllwrap_SOURCES = dllwrap.c version.c
bb0cb4db 274dllwrap_LDADD = $(LIBIBERTY) $(INTLLIBS)
252b5132
RH
275
276
277DISTSTUFF = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
278 syslex.c deflex.c defparse.h defparse.c rclex.c rcparse.h rcparse.c
279
280diststuff: $(DISTSTUFF) info
281
282DISTCLEANFILES = stamp-under sysinfo underscore.c sysroff.c sysroff.h \
283 site.exp site.bak
284
285# Targets to rebuild dependencies in this Makefile.
c278c150
ILT
286# Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
287DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
288 rm -f DEP1
41b49281 289 $(MAKE) MKDEP="$(MKDEP)" DEP1
0bdaf48b
AM
290 sed -f dep.sed < DEP1 > DEPA
291 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
292 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
6d5be915
AM
293 echo 'make DEP failed!'; exit 1; \
294 else \
0bdaf48b 295 mv -f DEPA $@; \
6d5be915 296 fi
252b5132 297
c278c150 298DEP1: $(CFILES) $(GENERATED_CFILES)
c278c150 299 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
41b49281
AM
300 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
301 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
302 mv -f DEP2 $@
252b5132
RH
303
304dep.sed: dep-in.sed config.status
305 objdir=`pwd`; \
306 sed <$(srcdir)/dep-in.sed >dep.sed \
307 -e 's!@INCDIR@!$(INCDIR)!' \
308 -e 's!@BFDDIR@!$(BFDDIR)!' \
309 -e 's!@SRCDIR@!$(srcdir)!' \
310 -e "s!@OBJDIR@!$${objdir}!"
311
c278c150 312dep: DEP
252b5132 313 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
c278c150 314 cat DEP >> tmp-Makefile
252b5132
RH
315 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
316
c278c150 317dep-in: DEP
252b5132 318 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
c278c150 319 cat DEP >> tmp-Makefile.in
252b5132
RH
320 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
321
c278c150 322dep-am: DEP
252b5132 323 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
c278c150 324 cat DEP >> tmp-Makefile.am
252b5132
RH
325 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
326
327.PHONY: dep dep-in dep-am
328
329###
330# DOCUMENTATION TARGETS
331config.texi: Makefile
332 rm -f config.texi
333 echo '@set VERSION $(VERSION)' > config.texi
334
335binutils.dvi: $(srcdir)/binutils.texi config.texi
336
337binutils.info: $(srcdir)/binutils.texi config.texi
338
339MAINTAINERCLEANFILES = config.texi
340
8a965946
ILT
341$(DEMANGLER_NAME).1: cxxfilt.man Makefile
342 sed -e 's/@PROGRAM@/$(DEMANGLER_NAME)/' < $(srcdir)/cxxfilt.man \
343 > $(DEMANGLER_NAME).1
252b5132 344
8a965946 345MOSTLYCLEANFILES = sysinfo $(DEMANGLER_NAME).1 binutils.log binutils.sum \
252b5132
RH
346 abcdefgh*
347mostlyclean-local:
348 -rm -rf tmpdir
349
0bdaf48b 350CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
252b5132
RH
351
352.PHONY: install-exec-local
353
9c28aef3 354install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
252b5132
RH
355 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
356 if test -f $$p; then \
8a965946
ILT
357 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
358 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
252b5132
RH
359 else :; fi; \
360 done
361 $(mkinstalldirs) $(tooldir)/bin
362 for i in $(TOOL_PROGS); do \
363 if [ -f $$i$(EXEEXT) ]; then \
364 j=`echo $$i | sed -e 's/-new//'`; \
365 k=`echo $$j | sed '$(transform)'`; \
366 if [ "$(bindir)/$$k$(EXEEXT)" != "$(tooldir)/bin/$$j$(EXEEXT)" ]; then \
367 rm -f $(tooldir)/bin/$$j$(EXEEXT); \
368 ln $(bindir)/$$k$(EXEEXT) $(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
369 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(tooldir)/bin/$$j$(EXEEXT); \
370 fi; \
371 else true; \
372 fi; \
373 done
374
375# What appears below is generated by a hacked mkdep using gcc -MM.
376
377# DO NOT DELETE THIS LINE -- mkdep uses it.
378# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
252b5132
RH
379addr2line.o: addr2line.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
380 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/demangle.h \
41b49281 381 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h
252b5132 382ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
41b49281
AM
383 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
384 $(INCDIR)/fopen-same.h $(INCDIR)/aout/ar.h $(BFDDIR)/libbfd.h \
2114f57b 385 arsup.h $(INCDIR)/filenames.h
252b5132 386arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281 387 arsup.h $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
2114f57b 388 $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h
252b5132 389bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281 390 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
2114f57b 391 $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h
41b49281
AM
392coffdump.o: coffdump.c coffgrok.h bucomm.h config.h \
393 $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h
394coffgrok.o: coffgrok.c bucomm.h config.h $(INCDIR)/bin-bugs.h \
395 $(INCDIR)/fopen-same.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
396 $(INCDIR)/bfdlink.h coffgrok.h
252b5132 397debug.o: debug.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
398 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
399 $(INCDIR)/libiberty.h debug.h
252b5132 400dlltool.o: dlltool.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281 401 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
1b61cf92
HPN
402 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h $(INCDIR)/demangle.h \
403 $(INCDIR)/dyn-string.h dlltool.h
252b5132 404filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281 405 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h
252b5132 406ieee.o: ieee.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/ieee.h \
41b49281 407 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
2114f57b 408 $(INCDIR)/libiberty.h debug.h budbg.h $(INCDIR)/filenames.h
252b5132
RH
409is-ranlib.o: is-ranlib.c
410is-strip.o: is-strip.c
411maybe-ranlib.o: maybe-ranlib.c
412maybe-strip.o: maybe-strip.c
413nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
414 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
415 $(INCDIR)/fopen-same.h $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \
416 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h
252b5132 417nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/progress.h \
41b49281 418 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
1b61cf92
HPN
419 $(INCDIR)/getopt.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def \
420 $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h
252b5132
RH
421not-ranlib.o: not-ranlib.c
422not-strip.o: not-strip.c
423objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281 424 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
1b61cf92
HPN
425 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h \
426 budbg.h $(INCDIR)/filenames.h
252b5132
RH
427objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
428 $(INCDIR)/getopt.h $(INCDIR)/progress.h bucomm.h config.h \
41b49281
AM
429 $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/dis-asm.h \
430 $(INCDIR)/libiberty.h $(INCDIR)/demangle.h debug.h \
431 budbg.h $(INCDIR)/aout/aout64.h
252b5132 432prdbg.o: prdbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
433 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
434 $(INCDIR)/libiberty.h debug.h budbg.h
252b5132 435rdcoff.o: rdcoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
436 $(INCDIR)/coff/internal.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
437 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/demangle.h \
438 debug.h budbg.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
252b5132 439rddbg.o: rddbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
440 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
441 $(INCDIR)/libiberty.h debug.h budbg.h
252b5132 442size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/getopt.h \
41b49281
AM
443 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
444 $(INCDIR)/libiberty.h
445srconv.o: srconv.c bucomm.h config.h $(INCDIR)/bin-bugs.h \
446 $(INCDIR)/fopen-same.h sysroff.h coffgrok.h $(INCDIR)/coff/internal.h \
447 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h sysroff.c
252b5132 448stabs.o: stabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
449 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
450 $(INCDIR)/libiberty.h $(INCDIR)/demangle.h debug.h \
451 budbg.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
452 $(INCDIR)/aout/stab.def
252b5132 453strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
454 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
455 $(INCDIR)/libiberty.h
252b5132 456sysdump.o: sysdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
457 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
458 sysroff.h sysroff.c
252b5132 459version.o: version.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281 460 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h
252b5132 461wrstabs.o: wrstabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
462 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
463 $(INCDIR)/libiberty.h debug.h budbg.h $(INCDIR)/aout/aout64.h \
464 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
252b5132 465windres.o: windres.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
466 $(INCDIR)/getopt.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
467 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/obstack.h \
252b5132 468 windres.h winduni.h
41b49281
AM
469resrc.o: resrc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
470 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
471 $(INCDIR)/libiberty.h windres.h winduni.h
252b5132 472rescoff.o: rescoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
473 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
474 $(INCDIR)/libiberty.h windres.h winduni.h $(INCDIR)/coff/internal.h \
475 $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
252b5132 476resbin.o: resbin.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
477 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
478 $(INCDIR)/libiberty.h windres.h winduni.h
252b5132 479winduni.o: winduni.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
480 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
481 winduni.h
252b5132
RH
482readelf.o: readelf.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
483 $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
484 $(INCDIR)/elf/dwarf2.h $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h \
485 $(INCDIR)/elf/v850.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/mips.h \
486 $(INCDIR)/elf/alpha.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/m68k.h \
487 $(INCDIR)/elf/sparc.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/d10v.h \
488 $(INCDIR)/elf/d30v.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/mn10200.h \
489 $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/arc.h \
bb0cb4db 490 $(INCDIR)/elf/fr30.h $(INCDIR)/elf/mcore.h $(INCDIR)/elf/i960.h \
2114f57b 491 $(INCDIR)/elf/pj.h $(INCDIR)/elf/avr.h $(INCDIR)/elf/ia64.h \
1b61cf92
HPN
492 $(INCDIR)/elf/cris.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
493 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h
252b5132 494resres.o: resres.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
495 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
496 $(INCDIR)/libiberty.h windres.h winduni.h
252b5132 497dllwrap.o: dllwrap.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281 498 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
1b61cf92 499 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h $(INCDIR)/dyn-string.h
252b5132 500rename.o: rename.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281 501 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h
252b5132
RH
502underscore.o: underscore.c
503arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
504 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
505 arsup.h
252b5132
RH
506arlex.o: arlex.c $(INCDIR)/libiberty.h arparse.h
507sysroff.o: sysroff.c
508sysinfo.o: sysinfo.c
509syslex.o: syslex.c sysinfo.h
510defparse.o: defparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
511 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
512 dlltool.h
252b5132
RH
513deflex.o: deflex.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
514 defparse.h dlltool.h
515nlmheader.o: nlmheader.c ../bfd/bfd.h bucomm.h config.h \
41b49281
AM
516 $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/nlm/common.h \
517 $(INCDIR)/nlm/internal.h nlmconv.h
252b5132 518rcparse.o: rcparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
519 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
520 $(INCDIR)/libiberty.h windres.h winduni.h
252b5132 521rclex.o: rclex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
41b49281
AM
522 bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
523 $(INCDIR)/libiberty.h windres.h winduni.h rcparse.h
252b5132 524# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.073944 seconds and 4 git commands to generate.