Commit | Line | Data |
---|---|---|
252b5132 RH |
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@ @BUILD_MISC@ | |
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@ @BUILD_MISC@ | |
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) $(WINDRES_PROG) $(DLLWRAP_PROG) | |
63 | ||
64 | # Stuff that goes in tooldir/ if appropriate | |
65 | TOOL_PROGS = nm-new strip-new ar ranlib dlltool | |
66 | ||
67 | BASEDIR = $(srcdir)/.. | |
68 | BFDDIR = $(BASEDIR)/bfd | |
69 | INCDIR = $(BASEDIR)/include | |
70 | ||
71 | DEP = mkdep | |
72 | ||
73 | INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) @HDEFINES@ -I$(srcdir)/../intl -I../intl -DLOCALEDIR="\"$(prefix)/share/locale\"" | |
74 | ||
75 | HFILES = arsup.h bucomm.h budbg.h coffgrok.h debug.h nlmconv.h dlltool.h \ | |
76 | windres.h winduni.h dyn-string.h | |
77 | ||
78 | GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h | |
79 | ||
80 | CFILES = addr2line.c ar.c arsup.c bucomm.c coffdump.c coffgrok.c debug.c \ | |
81 | dlltool.c filemode.c ieee.c is-ranlib.c is-strip.c maybe-ranlib.c \ | |
82 | maybe-strip.c nlmconv.c nm.c not-ranlib.c not-strip.c \ | |
83 | objcopy.c objdump.c prdbg.c rdcoff.c rddbg.c size.c srconv.c \ | |
84 | stabs.c strings.c sysdump.c version.c wrstabs.c \ | |
85 | windres.c resrc.c rescoff.c resbin.c winduni.c readelf.c \ | |
86 | resres.c dyn-string.c dllwrap.c rename.c | |
87 | ||
88 | GENERATED_CFILES = \ | |
89 | underscore.c arparse.c arlex.c sysroff.c sysinfo.c syslex.c \ | |
90 | defparse.c deflex.c nlmheader.c rcparse.c rclex.c | |
91 | ||
92 | DEBUG_SRCS = rddbg.c debug.c stabs.c ieee.c rdcoff.c | |
93 | WRITE_DEBUG_SRCS = $(DEBUG_SRCS) wrstabs.c | |
94 | ||
95 | # Code shared by all the binutils. | |
96 | BULIBS = bucomm.c version.c filemode.c | |
97 | ||
98 | BFDLIB = ../bfd/libbfd.la | |
99 | ||
100 | OPCODES = ../opcodes/libopcodes.la | |
101 | ||
102 | LIBIBERTY = ../libiberty/libiberty.a | |
103 | ||
104 | POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES) | |
105 | po/POTFILES.in: @MAINT@ Makefile | |
106 | for file in $(POTFILES); do echo $$file; done | sort > tmp \ | |
107 | && mv tmp $(srcdir)/po/POTFILES.in | |
108 | ||
109 | EXPECT = `if [ -f $$r/../expect/expect ] ; then \ | |
110 | echo $$r/../expect/expect ; \ | |
111 | else echo expect ; fi` | |
112 | RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \ | |
113 | echo ${srcdir}/../dejagnu/runtest ; \ | |
114 | else echo runtest ; fi` | |
115 | ||
116 | CC_FOR_TARGET = ` \ | |
117 | if [ -f $$r/../gcc/xgcc ] ; then \ | |
118 | if [ -f $$r/../newlib/Makefile ] ; then \ | |
119 | echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \ | |
120 | else \ | |
121 | echo $$r/../gcc/xgcc -B$$r/../gcc/; \ | |
122 | fi; \ | |
123 | else \ | |
124 | if [ "@host@" = "@target@" ] ; then \ | |
125 | echo $(CC); \ | |
126 | else \ | |
127 | echo gcc | sed '$(transform)'; \ | |
128 | fi; \ | |
129 | fi` | |
130 | ||
131 | check-DEJAGNU: site.exp | |
132 | srcdir=`cd $(srcdir) && pwd`; export srcdir; \ | |
133 | r=`pwd`; export r; \ | |
134 | EXPECT=$(EXPECT); export EXPECT; \ | |
135 | if [ -f $(top_builddir)/../expect/expect ]; then \ | |
136 | TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \ | |
137 | export TCL_LIBRARY; \ | |
138 | fi; \ | |
139 | runtest=$(RUNTEST); \ | |
140 | if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \ | |
141 | $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \ | |
142 | CC_FOR_TARGET="$(CC_FOR_TARGET)" \ | |
143 | CFLAGS_FOR_TARGET="$(CFLAGS)" $(RUNTESTFLAGS); \ | |
144 | else echo "WARNING: could not find \`runtest'" 1>&2; :;\ | |
145 | fi | |
146 | ||
147 | installcheck: | |
148 | /bin/sh $(srcdir)/sanity.sh $(bindir) | |
149 | ||
150 | info_TEXINFOS = binutils.texi | |
151 | ||
152 | LDADD = $(BFDLIB) $(LIBIBERTY) $(INTLLIBS) | |
153 | ||
154 | size_SOURCES = size.c $(BULIBS) | |
155 | ||
156 | objcopy_SOURCES = objcopy.c not-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS) | |
157 | ||
158 | strings_SOURCES = strings.c $(BULIBS) | |
159 | ||
160 | readelf_SOURCES = readelf.c version.c | |
161 | readelf_LDADD = $(INTLLIBS) $(LIBIBERTY) | |
162 | ||
163 | strip_new_SOURCES = objcopy.c is-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS) | |
164 | ||
165 | nm_new_SOURCES = nm.c $(BULIBS) | |
166 | ||
167 | objdump_SOURCES = objdump.c prdbg.c $(DEBUG_SRCS) $(BULIBS) | |
168 | objdump_LDADD = $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(INTLLIBS) | |
169 | ||
170 | underscore.c: stamp-under ; @true | |
171 | ||
172 | stamp-under: Makefile | |
173 | echo '/*WARNING: This file is automatically generated!*/' >underscore.t | |
174 | echo "int prepends_underscore = @UNDERSCORE@;" >>underscore.t | |
175 | $(SHELL) $(srcdir)/../move-if-change underscore.t underscore.c | |
176 | touch stamp-under | |
177 | ||
178 | cplus-dem.o: $(BASEDIR)/libiberty/cplus-dem.c $(INCDIR)/getopt.h | |
179 | $(COMPILE) -c -DMAIN -DVERSION='"$(VERSION)"' $(BASEDIR)/libiberty/cplus-dem.c | |
180 | ||
181 | c__filt_SOURCES = | |
182 | c__filt_LDADD = cplus-dem.o underscore.o $(LIBIBERTY) $(INTLLIBS) | |
183 | ||
184 | ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c $(BULIBS) | |
185 | ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS) | |
186 | ||
187 | ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c $(BULIBS) | |
188 | ranlib_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS) | |
189 | ||
190 | addr2line_SOURCES = addr2line.c $(BULIBS) | |
191 | ||
192 | # The following is commented out for the convertion to automake. | |
193 | # This rule creates a single binary that switches between ar and ranlib | |
194 | # by looking at argv[0]. Use this kludge to save some disk space. | |
195 | # However, you have to install things by hand. | |
196 | # (That is after 'make install', replace the installed ranlib by a link to ar.) | |
197 | # Alternatively, you can install ranlib.sh as ranlib. | |
198 | # ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o | |
199 | # $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS) | |
200 | # -rm -f $(RANLIB_PROG) | |
201 | # -ln $(AR_PROG) $(RANLIB_PROG) | |
202 | # | |
203 | # objcopy and strip in one binary that uses argv[0] to decide its action. | |
204 | # | |
205 | #objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o | |
206 | # $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS) | |
207 | # -rm -f $(STRIP_PROG) | |
208 | # -ln $(OBJCOPY_PROG) $(STRIP_PROG) | |
209 | ||
210 | sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info | |
211 | ./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c | |
212 | ./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c | |
213 | ./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c | |
214 | ||
215 | sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info | |
216 | ./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h | |
217 | ||
218 | sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o | |
219 | $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o | |
220 | ||
221 | syslex.o: syslex.c sysinfo.h | |
222 | if [ -r syslex.c ]; then \ | |
223 | $(CC_FOR_BUILD) -c -I. $(CFLAGS) syslex.c ; \ | |
224 | else \ | |
225 | $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(CFLAGS) $(srcdir)/syslex.c ;\ | |
226 | fi | |
227 | ||
228 | sysinfo.o: sysinfo.c | |
229 | if [ -r sysinfo.c ]; then \ | |
230 | $(CC_FOR_BUILD) -c -I. $(CFLAGS) sysinfo.c ; \ | |
231 | else \ | |
232 | $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \ | |
233 | fi | |
234 | ||
235 | srconv_SOURCES = srconv.c coffgrok.c $(BULIBS) | |
236 | ||
237 | dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS) | |
238 | dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS) | |
239 | ||
240 | dlltool.o:dlltool.c | |
241 | $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c | |
242 | ||
243 | coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS) | |
244 | ||
245 | sysdump_SOURCES = sysdump.c $(BULIBS) | |
246 | ||
247 | # coff/sym.h and coff/ecoff.h won't be found by the automatic dependency | |
248 | # scripts, since they are only included conditionally. | |
249 | nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h | |
250 | ldname=`echo ld | sed '$(transform)'`; \ | |
251 | $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c | |
252 | ||
253 | nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS) | |
254 | ||
255 | windres_SOURCES = windres.c resrc.c rescoff.c resbin.c rcparse.y rclex.l \ | |
256 | winduni.c resres.c $(BULIBS) | |
257 | windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS) | |
258 | ||
259 | dllwrap_SOURCES = dllwrap.c dyn-string.c | |
260 | dllwrap_LDADD = $(LIBIBERTY) | |
261 | ||
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 | winduni.o: winduni.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
453 | bucomm.h config.h $(INCDIR)/fopen-same.h winduni.h | |
454 | readelf.o: readelf.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
455 | $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \ | |
456 | $(INCDIR)/elf/dwarf2.h $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h \ | |
457 | $(INCDIR)/elf/v850.h $(INCDIR)/elf/ppc.h $(INCDIR)/elf/mips.h \ | |
458 | $(INCDIR)/elf/alpha.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/m68k.h \ | |
459 | $(INCDIR)/elf/sparc.h $(INCDIR)/elf/m32r.h $(INCDIR)/elf/d10v.h \ | |
460 | $(INCDIR)/elf/d30v.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/mn10200.h \ | |
461 | $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/hppa.h $(INCDIR)/elf/arc.h \ | |
462 | $(INCDIR)/elf/fr30.h bucomm.h config.h $(INCDIR)/fopen-same.h \ | |
463 | $(INCDIR)/getopt.h | |
464 | resres.o: resres.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
465 | bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \ | |
466 | windres.h winduni.h | |
467 | dyn-string.o: dyn-string.c config.h $(INCDIR)/ansidecl.h \ | |
468 | dyn-string.h | |
469 | dllwrap.o: dllwrap.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
470 | $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h \ | |
471 | $(INCDIR)/getopt.h dyn-string.h | |
472 | rename.o: rename.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
473 | bucomm.h config.h $(INCDIR)/fopen-same.h | |
474 | underscore.o: underscore.c | |
475 | arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
476 | bucomm.h config.h $(INCDIR)/fopen-same.h arsup.h | |
477 | arlex.o: arlex.c $(INCDIR)/libiberty.h arparse.h | |
478 | sysroff.o: sysroff.c | |
479 | sysinfo.o: sysinfo.c | |
480 | syslex.o: syslex.c sysinfo.h | |
481 | defparse.o: defparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
482 | bucomm.h config.h $(INCDIR)/fopen-same.h dlltool.h | |
483 | deflex.o: deflex.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \ | |
484 | defparse.h dlltool.h | |
485 | nlmheader.o: nlmheader.c ../bfd/bfd.h bucomm.h config.h \ | |
486 | $(INCDIR)/fopen-same.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \ | |
487 | nlmconv.h | |
488 | rcparse.o: rcparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
489 | bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \ | |
490 | windres.h winduni.h | |
491 | rclex.o: rclex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
492 | bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \ | |
493 | windres.h winduni.h rcparse.h | |
494 | ||
495 | # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |