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