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