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