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