* Makefile.am (install-exec-local): Depend on $(noinst_PROGRAMS).
[deliverable/binutils-gdb.git] / binutils / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2
3 AUTOMAKE_OPTIONS = cygnus dejagnu
4
5 SUBDIRS = doc po
6
7 tooldir = $(exec_prefix)/$(target_alias)
8
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.
12 CC_FOR_BUILD = @CC_FOR_BUILD@
13 EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
14
15 YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
16 YFLAGS = -d
17 LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
18
19 WARN_CFLAGS = @WARN_CFLAGS@
20 NO_WERROR = @NO_WERROR@
21 AM_CFLAGS = $(WARN_CFLAGS)
22
23 # these two are almost the same program
24 AR_PROG=ar
25 RANLIB_PROG=ranlib
26
27 # objcopy and strip should be the same program
28 OBJCOPY_PROG=objcopy
29 STRIP_PROG=strip-new
30
31 STRINGS_PROG=strings
32
33 READELF_PROG=readelf
34
35 # These should all be the same program too.
36 SIZE_PROG=size
37 NM_PROG=nm-new
38 OBJDUMP_PROG=objdump
39
40 # This is the demangler, as a standalone program.
41 # Note: This one is used as the installed name too, unlike the above.
42 DEMANGLER_PROG=cxxfilt
43
44 ADDR2LINE_PROG=addr2line
45
46 NLMCONV_PROG=nlmconv
47 DLLTOOL_PROG=dlltool
48 WINDRES_PROG=windres
49 DLLWRAP_PROG=dllwrap
50
51 SRCONV_PROG=srconv$(EXEEXT) sysdump$(EXEEXT) coffdump$(EXEEXT)
52
53 bin_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_INSTALL_MISC@
54
55 ## We need a special rule to install the programs which are built with
56 ## -new, and to rename cxxfilt to c++filt.
57 RENAMED_PROGS = $(NM_PROG) $(STRIP_PROG) $(DEMANGLER_PROG)
58 noinst_PROGRAMS = $(RENAMED_PROGS) @BUILD_MISC@
59
60 EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) $(WINDRES_PROG) $(DLLWRAP_PROG)
61
62 # Stuff that goes in tooldir/ if appropriate.
63 TOOL_PROGS = nm-new strip-new ar ranlib dlltool objdump
64
65 BASEDIR = $(srcdir)/..
66 BFDDIR = $(BASEDIR)/bfd
67 INCDIR = $(BASEDIR)/include
68
69 MKDEP = gcc -MM
70
71 REPORT_BUGS_TO = "\"@REPORT_BUGS_TO@\""
72
73 INCLUDES = -D_GNU_SOURCE \
74 -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) \
75 @HDEFINES@ \
76 @INCINTL@ \
77 -DLOCALEDIR="\"$(datadir)/locale\"" \
78 -DREPORT_BUGS_TO=$(REPORT_BUGS_TO) \
79 -Dbin_dummy_emulation=$(EMULATION_VECTOR)
80
81 HFILES = \
82 arsup.h binemul.h bucomm.h budbg.h budemang.h \
83 coffgrok.h debug.h dlltool.h nlmconv.h \
84 windres.h winduni.h
85
86 GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h
87
88 CFILES = \
89 addr2line.c ar.c arsup.c bin2c.c binemul.c bucomm.c budemang.c \
90 coffdump.c coffgrok.c cxxfilt.c \
91 dwarf.c debug.c dlltool.c dllwrap.c \
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
100
101 GENERATED_CFILES = \
102 arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
103 defparse.c deflex.c nlmheader.c rcparse.c rclex.c
104
105 DEBUG_SRCS = rddbg.c debug.c stabs.c ieee.c rdcoff.c
106 WRITE_DEBUG_SRCS = $(DEBUG_SRCS) wrstabs.c
107
108 # Code shared by all the binutils.
109 BULIBS = bucomm.c version.c filemode.c
110
111 BFDLIB = ../bfd/libbfd.la
112
113 OPCODES = ../opcodes/libopcodes.la
114
115 LIBIBERTY = ../libiberty/libiberty.a
116
117 .PHONY: install-html install-html-am install-html-recursive
118
119 install-html: install-html-recursive
120
121 install-html-recursive:
122 @failcom='exit 1'; \
123 for f in x $$MAKEFLAGS; do \
124 case $$f in \
125 *=* | --[!k]*);; \
126 *k*) failcom='fail=yes';; \
127 esac; \
128 done; \
129 dot_seen=no; \
130 target=`echo $@ | sed s/-recursive//`; \
131 list='$(SUBDIRS)'; for subdir in $$list; do \
132 echo "Making $$target in $$subdir"; \
133 if test "$$subdir" = "."; then \
134 dot_seen=yes; \
135 local_target="$$target-am"; \
136 else \
137 local_target="$$target"; \
138 fi; \
139 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
140 || eval $$failcom; \
141 done; \
142 if test "$$dot_seen" = "no"; then \
143 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
144 fi; test -z "$$fail"
145
146 POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES)
147 po/POTFILES.in: @MAINT@ Makefile
148 for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
149 && mv tmp $(srcdir)/po/POTFILES.in
150
151 EXPECT = expect
152 RUNTEST = runtest
153
154 CC_FOR_TARGET = ` \
155 if [ -f $$r/../gcc/xgcc ] ; then \
156 if [ -f $$r/../newlib/Makefile ] ; then \
157 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
158 else \
159 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
160 fi; \
161 else \
162 if [ "@host@" = "@target@" ] ; then \
163 echo $(CC); \
164 else \
165 echo gcc | sed '$(transform)'; \
166 fi; \
167 fi`
168
169 check-DEJAGNU: site.exp
170 srcdir=`cd $(srcdir) && pwd`; export srcdir; \
171 r=`pwd`; export r; \
172 EXPECT=$(EXPECT); export EXPECT; \
173 runtest=$(RUNTEST); \
174 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
175 CC_FOR_TARGET="$(CC_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS)" \
176 $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
177 $(RUNTESTFLAGS); \
178 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
179 fi
180
181 installcheck:
182 /bin/sh $(srcdir)/sanity.sh $(bindir)
183
184 # There's no global DEPENDENCIES. So, we must explicitly list everything
185 # which depends on libintl, since we don't know whether LIBINTL_DEP will be
186 # non-empty until configure time. Ugh!
187 size_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
188 objdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB) $(OPCODES)
189 nm_new_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
190 ar_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
191 strings_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
192 strip_new_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
193 ranlib_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
194 cxxfilt_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
195 objcopy_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
196 nlmconv_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
197 srconv_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
198 sysdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
199 coffdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
200 dlltool_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
201 windres_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
202 addr2line_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
203 readelf_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY)
204 dllwrap_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY)
205
206 LDADD = $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
207
208 size_SOURCES = size.c $(BULIBS)
209
210 objcopy_SOURCES = objcopy.c not-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
211
212 strings_SOURCES = strings.c $(BULIBS)
213
214 readelf_SOURCES = readelf.c version.c unwind-ia64.c dwarf.c
215 readelf_LDADD = $(LIBINTL) $(LIBIBERTY)
216
217 strip_new_SOURCES = objcopy.c is-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
218
219 nm_new_SOURCES = nm.c budemang.c $(BULIBS)
220
221 objdump_SOURCES = objdump.c dwarf.c budemang.c prdbg.c $(DEBUG_SRCS) $(BULIBS)
222 objdump_LDADD = $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
223
224 objdump.o:objdump.c
225 $(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
226
227 cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
228
229 ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c binemul.c \
230 emul_$(EMULATION).c $(BULIBS)
231 ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
232
233 ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c \
234 binemul.c emul_$(EMULATION).c $(BULIBS)
235 ranlib_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
236
237 addr2line_SOURCES = addr2line.c budemang.c $(BULIBS)
238
239 # The following is commented out for the conversion to automake.
240 # This rule creates a single binary that switches between ar and ranlib
241 # by looking at argv[0]. Use this kludge to save some disk space.
242 # However, you have to install things by hand.
243 # (That is after 'make install', replace the installed ranlib by a link to ar.)
244 # Alternatively, you can install ranlib.sh as ranlib.
245 # ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
246 # $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
247 # -rm -f $(RANLIB_PROG)
248 # -ln $(AR_PROG) $(RANLIB_PROG)
249 #
250 # objcopy and strip in one binary that uses argv[0] to decide its action.
251 #
252 #objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
253 # $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
254 # -rm -f $(STRIP_PROG)
255 # -ln $(OBJCOPY_PROG) $(STRIP_PROG)
256
257 sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
258 ./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
259 ./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
260 ./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
261
262 sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
263 ./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
264
265 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
266 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
267
268 syslex.o:
269 if [ -r syslex.c ]; then \
270 $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) syslex.c -Wno-error ; \
271 else \
272 $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS) $(srcdir)/syslex.c -Wno-error ;\
273 fi
274
275 sysinfo.o:
276 if [ -r sysinfo.c ]; then \
277 $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) sysinfo.c -Wno-error ; \
278 else \
279 $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) $(srcdir)/sysinfo.c -Wno-error ; \
280 fi
281
282 bin2c$(EXEEXT_FOR_BUILD):
283 $(CC_FOR_BUILD) -o $@ $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) $(srcdir)/bin2c.c $(srcdir)/version.c
284
285 embedspu: embedspu.sh
286 sed "s@^program_transform_name=@program_transform_name=$(program_transform_name)@" < $< > $@
287 chmod a+x $@
288
289 # We need these for parallel make.
290 arparse.h: arparse.c
291 defparse.h: defparse.c
292 nlmheader.h: nlmheader.c
293 rcparse.h: rcparse.c
294 sysinfo.h: sysinfo.c
295
296 # Disable -Werror, if it has been enabled, since old versions of bison/
297 # yacc will produce working code which contain compile time warnings.
298 arparse.o:
299 $(COMPILE) -c $< $(NO_WERROR)
300 arlex.o:
301 $(COMPILE) -c $< $(NO_WERROR)
302 sysroff.o:
303 $(COMPILE) -c $< $(NO_WERROR)
304 defparse.o:
305 $(COMPILE) -c $< $(NO_WERROR)
306 deflex.o:
307 $(COMPILE) -c $< $(NO_WERROR)
308 nlmheader.o:
309 $(COMPILE) -c $< $(NO_WERROR)
310 rcparse.o:
311 $(COMPILE) -c $< $(NO_WERROR)
312 rclex.o:
313 $(COMPILE) -c $< $(NO_WERROR)
314
315 srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
316
317 dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS)
318 dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
319
320 dlltool.o:
321 $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
322
323 rescoff.o:
324 $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
325
326 coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
327
328 sysdump_SOURCES = sysdump.c $(BULIBS)
329
330 # coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
331 # scripts, since they are only included conditionally.
332 nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
333 ldname=`echo ld | sed '$(transform)'`; \
334 $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
335
336 nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS)
337
338 windres_SOURCES = windres.c resrc.c rescoff.c resbin.c rcparse.y rclex.l \
339 winduni.c resres.c $(BULIBS)
340 windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
341
342 dllwrap_SOURCES = dllwrap.c version.c
343 dllwrap_LDADD = $(LIBIBERTY) $(LIBINTL)
344
345
346 EXTRA_DIST = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
347 syslex.c deflex.c defparse.h defparse.c rclex.c rcparse.h rcparse.c
348
349 diststuff: $(EXTRA_DIST) info
350 all: info
351
352 DISTCLEANFILES = sysroff.c sysroff.h site.exp site.bak
353
354 # Targets to rebuild dependencies in this Makefile.
355 # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
356 DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
357 rm -f DEP1
358 $(MAKE) MKDEP="$(MKDEP)" DEP1
359 sed -f dep.sed < DEP1 > DEPA
360 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
361 if grep ' /' DEPA > /dev/null 2> /dev/null; then \
362 echo 'make DEP failed!'; exit 1; \
363 else \
364 mv -f DEPA $@; \
365 fi
366
367 DEP1: $(CFILES) $(GENERATED_CFILES)
368 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
369 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
370 $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
371 mv -f DEP2 $@
372
373 dep.sed: dep-in.sed config.status
374 objdir=`pwd`; \
375 sed <$(srcdir)/dep-in.sed >dep.sed \
376 -e 's!@INCDIR@!$(INCDIR)!' \
377 -e 's!@BFDDIR@!$(BFDDIR)!' \
378 -e 's!@SRCDIR@!$(srcdir)!' \
379 -e "s!@OBJDIR@!$${objdir}!" \
380 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/binutils$$,,`'!'
381
382 dep: DEP
383 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
384 cat DEP >> tmp-Makefile
385 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
386
387 dep-in: DEP
388 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
389 cat DEP >> tmp-Makefile.in
390 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
391
392 dep-am: DEP
393 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
394 cat DEP >> tmp-Makefile.am
395 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
396
397 .PHONY: dep dep-in dep-am
398
399 ###
400
401 MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
402 binutils.log binutils.sum abcdefgh*
403 mostlyclean-local:
404 -rm -rf tmpdir
405
406 CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
407
408 .PHONY: install-exec-local
409
410 install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
411 @list='$(RENAMED_PROGS)'; for p in $$list; do \
412 if test -f $$p$(EXEEXT); then \
413 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p$(EXEEXT) $(bindir)/`echo $$p|sed -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
414 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p$(EXEEXT) $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
415 else :; fi; \
416 done
417 $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
418 for i in $(TOOL_PROGS); do \
419 if [ -f $$i$(EXEEXT) ]; then \
420 j=`echo $$i | sed -e 's/-new//'`; \
421 k=`echo $$j | sed '$(transform)'`; \
422 if [ "$(bindir)/$$k" != "$(tooldir)/bin/$$j" ]; then \
423 rm -f $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
424 ln $(DESTDIR)$(bindir)/$$k$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
425 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
426 fi; \
427 else true; \
428 fi; \
429 done
430
431 # What appears below is generated by a hacked mkdep using gcc -MM.
432
433 # DO NOT DELETE THIS LINE -- mkdep uses it.
434 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
435 addr2line.o: addr2line.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
436 $(INCDIR)/symcat.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h \
437 $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
438 bucomm.h $(INCDIR)/ansidecl.h $(INCDIR)/fopen-same.h \
439 budemang.h
440 ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
441 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/progress.h \
442 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
443 $(INCDIR)/aout/ar.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h \
444 arsup.h $(INCDIR)/filenames.h binemul.h
445 arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
446 $(INCDIR)/symcat.h arsup.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
447 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
448 $(INCDIR)/filenames.h
449 bin2c.o: bin2c.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
450 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
451 $(INCDIR)/fopen-same.h
452 binemul.o: binemul.c binemul.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
453 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
454 $(INCDIR)/fopen-same.h
455 bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
456 $(INCDIR)/symcat.h ../bfd/bfdver.h $(INCDIR)/libiberty.h \
457 $(INCDIR)/ansidecl.h bucomm.h $(INCDIR)/ansidecl.h \
458 config.h $(INCDIR)/fopen-same.h $(INCDIR)/filenames.h \
459 $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h
460 budemang.o: budemang.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
461 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
462 $(INCDIR)/demangle.h $(INCDIR)/libiberty.h budemang.h
463 coffdump.o: coffdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
464 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
465 coffgrok.h bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h
466 coffgrok.o: coffgrok.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
467 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
468 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
469 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
470 coffgrok.h
471 cxxfilt.o: cxxfilt.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
472 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h $(INCDIR)/fopen-same.h \
473 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h \
474 $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h
475 dwarf.o: dwarf.c dwarf.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
476 $(INCDIR)/symcat.h $(INCDIR)/elf/dwarf2.h bucomm.h \
477 $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
478 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
479 debug.o: debug.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
480 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
481 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
482 debug.h
483 dlltool.o: dlltool.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
484 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
485 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
486 $(INCDIR)/demangle.h $(INCDIR)/libiberty.h $(INCDIR)/dyn-string.h \
487 dlltool.h $(INCDIR)/safe-ctype.h
488 dllwrap.o: dllwrap.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
489 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
490 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
491 $(INCDIR)/dyn-string.h
492 emul_aix.o: emul_aix.c binemul.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
493 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
494 $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
495 $(INCDIR)/coff/xcoff.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
496 $(BFDDIR)/libxcoff.h
497 emul_vanilla.o: emul_vanilla.c binemul.h ../bfd/bfd.h \
498 $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h \
499 config.h $(INCDIR)/fopen-same.h
500 filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
501 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
502 $(INCDIR)/fopen-same.h
503 ieee.o: ieee.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
504 $(INCDIR)/ieee.h bucomm.h $(INCDIR)/ansidecl.h config.h \
505 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
506 debug.h budbg.h $(INCDIR)/filenames.h
507 is-ranlib.o: is-ranlib.c
508 is-strip.o: is-strip.c
509 maybe-ranlib.o: maybe-ranlib.c
510 maybe-strip.o: maybe-strip.c
511 nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
512 $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
513 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
514 $(INCDIR)/safe-ctype.h $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h \
515 $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h nlmconv.h
516 nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
517 $(INCDIR)/progress.h bucomm.h $(INCDIR)/ansidecl.h \
518 config.h $(INCDIR)/fopen-same.h budemang.h $(INCDIR)/aout/stab_gnu.h \
519 $(INCDIR)/aout/stab.def $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h \
520 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
521 $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
522 $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/common.h
523 not-ranlib.o: not-ranlib.c
524 not-strip.o: not-strip.c
525 objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
526 $(INCDIR)/symcat.h $(INCDIR)/progress.h bucomm.h $(INCDIR)/ansidecl.h \
527 config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
528 $(INCDIR)/ansidecl.h budbg.h $(INCDIR)/filenames.h \
529 $(INCDIR)/fnmatch.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
530 $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h \
531 $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h
532 objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
533 $(INCDIR)/symcat.h ../bfd/bfdver.h $(INCDIR)/progress.h \
534 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
535 dwarf.h $(INCDIR)/elf/dwarf2.h budemang.h $(INCDIR)/safe-ctype.h \
536 $(INCDIR)/dis-asm.h ../bfd/bfd.h $(INCDIR)/libiberty.h \
537 $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
538 debug.h budbg.h $(INCDIR)/aout/aout64.h
539 prdbg.o: prdbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
540 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
541 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
542 debug.h budbg.h
543 rdcoff.o: rdcoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
544 $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h bucomm.h \
545 $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
546 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h debug.h \
547 budbg.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
548 rddbg.o: rddbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
549 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
550 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
551 debug.h budbg.h
552 readelf.o: readelf.c dwarf.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
553 $(INCDIR)/symcat.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/elf/common.h \
554 $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/h8.h \
555 $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/alpha.h \
556 $(INCDIR)/elf/arc.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/avr.h \
557 $(INCDIR)/elf/bfin.h $(INCDIR)/elf/cris.h $(INCDIR)/elf/crx.h \
558 $(INCDIR)/elf/d10v.h $(INCDIR)/elf/d30v.h $(INCDIR)/elf/dlx.h \
559 $(INCDIR)/elf/fr30.h $(INCDIR)/elf/frv.h $(INCDIR)/elf/hppa.h \
560 $(INCDIR)/elf/i386.h $(INCDIR)/elf/i370.h $(INCDIR)/elf/i860.h \
561 $(INCDIR)/elf/i960.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/ip2k.h \
562 $(INCDIR)/elf/iq2000.h $(INCDIR)/elf/m32c.h $(INCDIR)/elf/m32r.h \
563 $(INCDIR)/elf/m68k.h $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/mcore.h \
564 $(INCDIR)/elf/mep.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/mmix.h \
565 $(INCDIR)/elf/mn10200.h $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/mt.h \
566 $(INCDIR)/elf/msp430.h $(INCDIR)/elf/or32.h $(INCDIR)/elf/pj.h \
567 $(INCDIR)/elf/ppc.h $(INCDIR)/elf/ppc64.h $(INCDIR)/elf/s390.h \
568 $(INCDIR)/elf/score.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/sparc.h \
569 $(INCDIR)/elf/spu.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/vax.h \
570 $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/xstormy16.h $(INCDIR)/elf/xtensa.h \
571 $(INCDIR)/aout/ar.h bucomm.h $(INCDIR)/ansidecl.h config.h \
572 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
573 unwind-ia64.h
574 rename.o: rename.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
575 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
576 $(INCDIR)/fopen-same.h
577 resbin.o: resbin.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
578 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
579 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
580 windres.h winduni.h
581 rescoff.o: rescoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
582 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
583 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
584 windres.h winduni.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
585 $(INCDIR)/bfdlink.h
586 resrc.o: resrc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
587 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
588 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
589 $(INCDIR)/safe-ctype.h windres.h winduni.h
590 resres.o: resres.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
591 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
592 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
593 windres.h winduni.h
594 size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
595 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
596 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h
597 srconv.o: srconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
598 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
599 $(INCDIR)/fopen-same.h sysroff.h coffgrok.h $(INCDIR)/libiberty.h \
600 $(INCDIR)/ansidecl.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
601 $(INCDIR)/bfdlink.h sysroff.c
602 stabs.o: stabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
603 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
604 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
605 $(INCDIR)/safe-ctype.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
606 debug.h budbg.h $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \
607 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
608 strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
609 $(INCDIR)/symcat.h $(INCDIR)/getopt.h bucomm.h $(INCDIR)/ansidecl.h \
610 config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
611 $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h
612 sysdump.o: sysdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
613 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
614 $(INCDIR)/fopen-same.h $(INCDIR)/safe-ctype.h $(INCDIR)/libiberty.h \
615 $(INCDIR)/ansidecl.h sysroff.h sysroff.c $(INCDIR)/ansidecl.h
616 version.o: version.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
617 $(INCDIR)/symcat.h ../bfd/bfdver.h bucomm.h $(INCDIR)/ansidecl.h \
618 config.h $(INCDIR)/fopen-same.h
619 windres.o: windres.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
620 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h $(INCDIR)/fopen-same.h \
621 $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h \
622 $(INCDIR)/obstack.h windres.h winduni.h
623 winduni.o: winduni.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
624 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
625 $(INCDIR)/fopen-same.h winduni.h $(INCDIR)/safe-ctype.h
626 wrstabs.o: wrstabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
627 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
628 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
629 $(INCDIR)/safe-ctype.h debug.h budbg.h $(INCDIR)/aout/aout64.h \
630 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
631 arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
632 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
633 $(INCDIR)/fopen-same.h arsup.h
634 arlex.o: arlex.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
635 $(INCDIR)/ansidecl.h arparse.h
636 sysroff.o: sysroff.c
637 sysinfo.o: sysinfo.c
638 syslex.o: syslex.c config.h sysinfo.h
639 defparse.o: defparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
640 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
641 $(INCDIR)/fopen-same.h dlltool.h
642 deflex.o: deflex.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
643 defparse.h dlltool.h $(INCDIR)/ansidecl.h
644 nlmheader.o: nlmheader.c $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h \
645 ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
646 bucomm.h $(INCDIR)/ansidecl.h config.h $(INCDIR)/fopen-same.h \
647 $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h nlmconv.h
648 rcparse.o: rcparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
649 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
650 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
651 windres.h winduni.h $(INCDIR)/safe-ctype.h
652 rclex.o: rclex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
653 $(INCDIR)/symcat.h bucomm.h $(INCDIR)/ansidecl.h config.h \
654 $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
655 $(INCDIR)/safe-ctype.h windres.h winduni.h rcparse.h
656 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.046125 seconds and 4 git commands to generate.