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