Cleanups after the update to Autoconf 2.64, Automake 1.11.
[deliverable/binutils-gdb.git] / binutils / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2
3 AUTOMAKE_OPTIONS = cygnus dejagnu
4 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
5
6 SUBDIRS = doc po
7
8 tooldir = $(exec_prefix)/$(target_alias)
9
10 ## These aren't set by automake, because they appear in
11 ## bfd/acinclude.m4, which is included by binutils/acinclude.m4, and
12 ## thus is not seen by automake.
13 CC_FOR_BUILD = @CC_FOR_BUILD@
14 EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
15
16 YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
17 YFLAGS = -d
18 LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
19
20 WARN_CFLAGS = @WARN_CFLAGS@
21 NO_WERROR = @NO_WERROR@
22 AM_CFLAGS = $(WARN_CFLAGS)
23 LIBICONV = @LIBICONV@
24
25 # these two are almost the same program
26 AR_PROG=ar
27 RANLIB_PROG=ranlib
28
29 # objcopy and strip should be the same program
30 OBJCOPY_PROG=objcopy
31 STRIP_PROG=strip-new
32
33 STRINGS_PROG=strings
34
35 READELF_PROG=readelf
36
37 # These should all be the same program too.
38 SIZE_PROG=size
39 NM_PROG=nm-new
40 OBJDUMP_PROG=objdump
41
42 # This is the demangler, as a standalone program.
43 # Note: This one is used as the installed name too, unlike the above.
44 DEMANGLER_PROG=cxxfilt
45
46 ADDR2LINE_PROG=addr2line
47
48 NLMCONV_PROG=nlmconv
49 DLLTOOL_PROG=dlltool
50 WINDRES_PROG=windres
51 WINDMC_PROG=windmc
52 DLLWRAP_PROG=dllwrap
53
54 SRCONV_PROG=srconv$(EXEEXT) sysdump$(EXEEXT) coffdump$(EXEEXT)
55
56 bin_PROGRAMS = $(SIZE_PROG) $(OBJDUMP_PROG) $(AR_PROG) $(STRINGS_PROG) $(RANLIB_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ @BUILD_WINDRES@ @BUILD_WINDMC@ $(ADDR2LINE_PROG) $(READELF_PROG) @BUILD_DLLWRAP@ @BUILD_INSTALL_MISC@
57
58 ## We need a special rule to install the programs which are built with
59 ## -new, and to rename cxxfilt to c++filt.
60 RENAMED_PROGS = $(NM_PROG) $(STRIP_PROG) $(DEMANGLER_PROG)
61 noinst_PROGRAMS = $(RENAMED_PROGS) @BUILD_MISC@
62
63 EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) $(WINDRES_PROG) $(WINDMC_PROG) $(DLLWRAP_PROG)
64
65 # Stuff that goes in tooldir/ if appropriate.
66 TOOL_PROGS = nm-new strip-new ar ranlib dlltool objdump objcopy
67
68 BASEDIR = $(srcdir)/..
69 BFDDIR = $(BASEDIR)/bfd
70 INCDIR = $(BASEDIR)/include
71
72 MKDEP = gcc -MM
73
74 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) \
75 @HDEFINES@ \
76 @INCINTL@ \
77 -DLOCALEDIR="\"$(datadir)/locale\"" \
78 -Dbin_dummy_emulation=$(EMULATION_VECTOR)
79
80 HFILES = \
81 arsup.h binemul.h bucomm.h budbg.h \
82 coffgrok.h debug.h dlltool.h dwarf.h nlmconv.h \
83 sysdep.h unwind-ia64.h windres.h winduni.h windint.h \
84 windmc.h
85
86 GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h mcparse.h
87
88 CFILES = \
89 addr2line.c ar.c arsup.c bin2c.c binemul.c bucomm.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 rclex.c 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 \
99 unwind-ia64.c version.c \
100 windres.c winduni.c wrstabs.c \
101 windmc.c mclex.c
102
103 GENERATED_CFILES = \
104 arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
105 defparse.c deflex.c nlmheader.c rcparse.c mcparse.c
106
107 DEBUG_SRCS = rddbg.c debug.c stabs.c ieee.c rdcoff.c
108 WRITE_DEBUG_SRCS = $(DEBUG_SRCS) wrstabs.c
109
110 # Code shared by all the binutils.
111 BULIBS = bucomm.c version.c filemode.c
112
113 BFDLIB = ../bfd/libbfd.la
114
115 OPCODES = ../opcodes/libopcodes.la
116
117 LIBIBERTY = ../libiberty/libiberty.a
118
119 POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES)
120 po/POTFILES.in: @MAINT@ Makefile
121 for f in $(POTFILES); do echo $$f; done | LC_ALL=C sort > tmp \
122 && mv tmp $(srcdir)/po/POTFILES.in
123
124 EXPECT = expect
125 RUNTEST = runtest
126
127 CC_FOR_TARGET = ` \
128 if [ -f $$r/../gcc/xgcc ] ; then \
129 if [ -f $$r/../newlib/Makefile ] ; then \
130 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
131 else \
132 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
133 fi; \
134 else \
135 if [ "@host@" = "@target@" ] ; then \
136 echo $(CC); \
137 else \
138 echo gcc | sed '$(transform)'; \
139 fi; \
140 fi`
141
142 check-DEJAGNU: site.exp
143 srcdir=`cd $(srcdir) && pwd`; export srcdir; \
144 r=`pwd`; export r; \
145 EXPECT=$(EXPECT); export EXPECT; \
146 runtest=$(RUNTEST); \
147 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
148 CC_FOR_TARGET="$(CC_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS)" \
149 $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
150 $(RUNTESTFLAGS); \
151 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
152 fi
153
154 installcheck:
155 /bin/sh $(srcdir)/sanity.sh $(bindir)
156
157 # There's no global DEPENDENCIES. So, we must explicitly list everything
158 # which depends on libintl, since we don't know whether LIBINTL_DEP will be
159 # non-empty until configure time. Ugh!
160 size_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
161 objdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB) $(OPCODES)
162 nm_new_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
163 ar_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
164 strings_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
165 strip_new_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
166 ranlib_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
167 cxxfilt_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
168 objcopy_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
169 nlmconv_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
170 srconv_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
171 sysdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
172 coffdump_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
173 dlltool_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
174 windres_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
175 windmc_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
176 addr2line_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
177 readelf_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY)
178 dllwrap_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY)
179
180 LDADD = $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
181
182 size_SOURCES = size.c $(BULIBS)
183
184 objcopy_SOURCES = objcopy.c not-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
185
186 strings_SOURCES = strings.c $(BULIBS)
187
188 readelf_SOURCES = readelf.c version.c unwind-ia64.c dwarf.c
189 readelf_LDADD = $(LIBINTL) $(LIBIBERTY)
190
191 strip_new_SOURCES = objcopy.c is-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
192
193 nm_new_SOURCES = nm.c $(BULIBS)
194
195 objdump_SOURCES = objdump.c dwarf.c prdbg.c $(DEBUG_SRCS) $(BULIBS)
196 objdump_LDADD = $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
197
198 objdump.o:objdump.c
199 $(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
200
201 cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
202
203 ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c binemul.c \
204 emul_$(EMULATION).c $(BULIBS)
205 ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
206
207 ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c \
208 binemul.c emul_$(EMULATION).c $(BULIBS)
209 ranlib_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
210
211 addr2line_SOURCES = addr2line.c $(BULIBS)
212
213 # The following is commented out for the conversion to automake.
214 # This rule creates a single binary that switches between ar and ranlib
215 # by looking at argv[0]. Use this kludge to save some disk space.
216 # However, you have to install things by hand.
217 # (That is after 'make install', replace the installed ranlib by a link to ar.)
218 # Alternatively, you can install ranlib.sh as ranlib.
219 # ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
220 # $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
221 # -rm -f $(RANLIB_PROG)
222 # -ln $(AR_PROG) $(RANLIB_PROG)
223 #
224 # objcopy and strip in one binary that uses argv[0] to decide its action.
225 #
226 #objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
227 # $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
228 # -rm -f $(STRIP_PROG)
229 # -ln $(OBJCOPY_PROG) $(STRIP_PROG)
230
231 sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
232 ./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
233 ./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
234 ./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
235
236 sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
237 ./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
238
239 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
240 $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
241
242 syslex.o:
243 if [ -r syslex.c ]; then \
244 $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) syslex.c -Wno-error ; \
245 else \
246 $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS) $(srcdir)/syslex.c -Wno-error ;\
247 fi
248
249 sysinfo.o:
250 if [ -r sysinfo.c ]; then \
251 $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) sysinfo.c -Wno-error ; \
252 else \
253 $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) $(srcdir)/sysinfo.c -Wno-error ; \
254 fi
255
256 bin2c$(EXEEXT_FOR_BUILD):
257 $(CC_FOR_BUILD) -o $@ $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) $(srcdir)/bin2c.c $(srcdir)/version.c
258
259 embedspu: embedspu.sh
260 sed "s@^program_transform_name=@program_transform_name=$(program_transform_name)@" < $< > $@
261 chmod a+x $@
262
263 # We need these for parallel make.
264 arparse.h: arparse.c
265 defparse.h: defparse.c
266 nlmheader.h: nlmheader.c
267 rcparse.h: rcparse.c
268 mcparse.h: mcparse.c
269 sysinfo.h: sysinfo.c
270
271 # Disable -Werror, if it has been enabled, since old versions of bison/
272 # yacc will produce working code which contain compile time warnings.
273 arparse.o:
274 $(COMPILE) -c $< $(NO_WERROR)
275 arlex.o:
276 $(COMPILE) -c $< $(NO_WERROR)
277 sysroff.o:
278 $(COMPILE) -c $< $(NO_WERROR)
279 defparse.o:
280 $(COMPILE) -c $< $(NO_WERROR)
281 deflex.o:
282 $(COMPILE) -c $< $(NO_WERROR)
283 nlmheader.o:
284 $(COMPILE) -c $< $(NO_WERROR)
285 rcparse.o:
286 $(COMPILE) -c $< $(NO_WERROR)
287 mcparse.o:
288 $(COMPILE) -c $< $(NO_WERROR)
289 rclex.o:
290 $(COMPILE) -c $< $(NO_WERROR)
291 mclex.o:
292 $(COMPILE) -c $< $(NO_WERROR)
293
294 srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
295
296 dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS)
297 dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
298
299 dlltool.o:
300 $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
301
302 rescoff.o:
303 $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
304
305 coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
306
307 sysdump_SOURCES = sysdump.c $(BULIBS)
308
309 # coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
310 # scripts, since they are only included conditionally.
311 nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
312 ldname=`echo ld | sed '$(transform)'`; \
313 $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
314
315 nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS)
316
317 windres_SOURCES = windres.c resrc.c rescoff.c resbin.c rcparse.y rclex.c \
318 winduni.c resres.c $(BULIBS)
319 windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL) $(LIBICONV)
320
321 windmc_SOURCES = windmc.c mcparse.y mclex.c \
322 winduni.c $(BULIBS)
323 windmc_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL) $(LIBICONV)
324
325 dllwrap_SOURCES = dllwrap.c version.c
326 dllwrap_LDADD = $(LIBIBERTY) $(LIBINTL)
327
328
329 EXTRA_DIST = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
330 syslex.c deflex.c defparse.h defparse.c rcparse.h rcparse.c \
331 mcparse.h mcparse.c
332
333 diststuff: $(EXTRA_DIST) info
334 all: info
335
336 DISTCLEANFILES = sysroff.c sysroff.h site.exp site.bak
337
338 # Targets to rebuild dependencies in this Makefile.
339 # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
340 DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
341 rm -f DEP1
342 $(MAKE) MKDEP="$(MKDEP)" DEP1
343 echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEP1
344 if grep ' /' DEP1 > /dev/null 2> /dev/null; then \
345 echo 'make DEP failed!'; exit 1; \
346 else \
347 mv -f DEP1 $@; \
348 fi
349
350 DEP1: $(CFILES) $(GENERATED_CFILES)
351 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
352 echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
353 for f in $?; do \
354 $(MKDEP) $(INCLUDES) $(CFLAGS) $$f > DEPA; \
355 sed -n -e '1s/: .*/: \\/p' -e q < DEPA >> DEP2; \
356 sed -e '1s/.*: //' -f dep.sed < DEPA | \
357 LC_ALL=C sort | LC_ALL=C uniq | \
358 sed -e 's/^[AB]/ /' -e '$$s/ \\$$//' >> DEP2; \
359 done
360 rm -f DEPA
361 mv -f DEP2 $@
362
363 dep.sed: dep-in.sed config.status
364 objdir=`pwd`; \
365 sed <$(srcdir)/dep-in.sed >dep.sed \
366 -e 's!@INCDIR@!$(INCDIR)!' \
367 -e 's!@BFDDIR@!$(BFDDIR)!' \
368 -e 's!@SRCDIR@!$(srcdir)!' \
369 -e "s!@OBJDIR@!$${objdir}!" \
370 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/binutils$$,,`'!'
371
372 dep: DEP
373 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
374 cat DEP >> tmp-Makefile
375 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
376
377 dep-in: DEP
378 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
379 cat DEP >> tmp-Makefile.in
380 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
381
382 dep-am: DEP
383 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
384 cat DEP >> tmp-Makefile.am
385 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
386
387 .PHONY: dep dep-in dep-am
388
389 ###
390
391 MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
392 binutils.log binutils.sum abcdefgh*
393 mostlyclean-local:
394 -rm -rf tmpdir
395
396 CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
397
398 .PHONY: install-exec-local
399
400 install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
401 @list='$(RENAMED_PROGS)'; for p in $$list; do \
402 if test -f $$p$(EXEEXT); then \
403 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)/'`"; \
404 $(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)/'`; \
405 else :; fi; \
406 done
407 $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
408 for i in $(TOOL_PROGS); do \
409 if [ -f $$i$(EXEEXT) ]; then \
410 j=`echo $$i | sed -e 's/-new//'`; \
411 k=`echo $$j | sed '$(transform)'`; \
412 if [ "$(bindir)/$$k" != "$(tooldir)/bin/$$j" ]; then \
413 rm -f $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
414 ln $(DESTDIR)$(bindir)/$$k$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
415 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
416 fi; \
417 else true; \
418 fi; \
419 done
420
421 # What appears below is generated by a hacked mkdep using gcc -MM.
422
423 # DO NOT DELETE THIS LINE -- mkdep uses it.
424 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
425 addr2line.o: \
426 addr2line.c \
427 $(INCDIR)/alloca-conf.h \
428 $(INCDIR)/ansidecl.h \
429 $(INCDIR)/binary-io.h \
430 $(INCDIR)/demangle.h \
431 $(INCDIR)/fopen-same.h \
432 $(INCDIR)/libiberty.h \
433 $(INCDIR)/symcat.h \
434 ../bfd/bfd.h \
435 ../bfd/bfdver.h \
436 bucomm.h \
437 config.h \
438 sysdep.h
439 ar.o: \
440 ar.c \
441 $(BFDDIR)/libbfd.h \
442 $(BFDDIR)/plugin.h \
443 $(INCDIR)/alloca-conf.h \
444 $(INCDIR)/ansidecl.h \
445 $(INCDIR)/aout/ar.h \
446 $(INCDIR)/binary-io.h \
447 $(INCDIR)/filenames.h \
448 $(INCDIR)/fopen-same.h \
449 $(INCDIR)/hashtab.h \
450 $(INCDIR)/libiberty.h \
451 $(INCDIR)/progress.h \
452 $(INCDIR)/symcat.h \
453 ../bfd/bfd.h \
454 ../bfd/bfdver.h \
455 arsup.h \
456 binemul.h \
457 bucomm.h \
458 config.h \
459 sysdep.h
460 arsup.o: \
461 arsup.c \
462 $(INCDIR)/alloca-conf.h \
463 $(INCDIR)/ansidecl.h \
464 $(INCDIR)/binary-io.h \
465 $(INCDIR)/filenames.h \
466 $(INCDIR)/fopen-same.h \
467 $(INCDIR)/libiberty.h \
468 $(INCDIR)/symcat.h \
469 ../bfd/bfd.h \
470 ../bfd/bfdver.h \
471 arsup.h \
472 bucomm.h \
473 config.h \
474 sysdep.h
475 bin2c.o: \
476 bin2c.c \
477 $(INCDIR)/alloca-conf.h \
478 $(INCDIR)/ansidecl.h \
479 $(INCDIR)/binary-io.h \
480 $(INCDIR)/fopen-same.h \
481 $(INCDIR)/symcat.h \
482 ../bfd/bfd.h \
483 ../bfd/bfdver.h \
484 bucomm.h \
485 config.h \
486 sysdep.h
487 binemul.o: \
488 binemul.c \
489 $(INCDIR)/alloca-conf.h \
490 $(INCDIR)/ansidecl.h \
491 $(INCDIR)/binary-io.h \
492 $(INCDIR)/fopen-same.h \
493 $(INCDIR)/symcat.h \
494 ../bfd/bfd.h \
495 ../bfd/bfdver.h \
496 binemul.h \
497 bucomm.h \
498 config.h \
499 sysdep.h
500 bucomm.o: \
501 bucomm.c \
502 $(BFDDIR)/libbfd.h \
503 $(INCDIR)/alloca-conf.h \
504 $(INCDIR)/ansidecl.h \
505 $(INCDIR)/binary-io.h \
506 $(INCDIR)/filenames.h \
507 $(INCDIR)/fopen-same.h \
508 $(INCDIR)/hashtab.h \
509 $(INCDIR)/libiberty.h \
510 $(INCDIR)/symcat.h \
511 ../bfd/bfd.h \
512 ../bfd/bfdver.h \
513 bucomm.h \
514 config.h \
515 sysdep.h
516 coffdump.o: \
517 coffdump.c \
518 $(INCDIR)/alloca-conf.h \
519 $(INCDIR)/ansidecl.h \
520 $(INCDIR)/binary-io.h \
521 $(INCDIR)/fopen-same.h \
522 $(INCDIR)/libiberty.h \
523 $(INCDIR)/symcat.h \
524 ../bfd/bfd.h \
525 ../bfd/bfdver.h \
526 bucomm.h \
527 coffgrok.h \
528 config.h \
529 sysdep.h
530 coffgrok.o: \
531 coffgrok.c \
532 $(BFDDIR)/libcoff.h \
533 $(INCDIR)/alloca-conf.h \
534 $(INCDIR)/ansidecl.h \
535 $(INCDIR)/bfdlink.h \
536 $(INCDIR)/binary-io.h \
537 $(INCDIR)/coff/internal.h \
538 $(INCDIR)/fopen-same.h \
539 $(INCDIR)/libiberty.h \
540 $(INCDIR)/symcat.h \
541 ../bfd/bfd.h \
542 ../bfd/bfdver.h \
543 bucomm.h \
544 coffgrok.h \
545 config.h \
546 sysdep.h
547 cxxfilt.o: \
548 cxxfilt.c \
549 $(INCDIR)/alloca-conf.h \
550 $(INCDIR)/ansidecl.h \
551 $(INCDIR)/binary-io.h \
552 $(INCDIR)/demangle.h \
553 $(INCDIR)/fopen-same.h \
554 $(INCDIR)/libiberty.h \
555 $(INCDIR)/safe-ctype.h \
556 $(INCDIR)/symcat.h \
557 ../bfd/bfd.h \
558 ../bfd/bfdver.h \
559 bucomm.h \
560 config.h \
561 sysdep.h
562 dwarf.o: \
563 dwarf.c \
564 $(INCDIR)/alloca-conf.h \
565 $(INCDIR)/ansidecl.h \
566 $(INCDIR)/binary-io.h \
567 $(INCDIR)/dwarf2.h \
568 $(INCDIR)/elf/common.h \
569 $(INCDIR)/fopen-same.h \
570 $(INCDIR)/libiberty.h \
571 $(INCDIR)/symcat.h \
572 ../bfd/bfd.h \
573 ../bfd/bfdver.h \
574 bucomm.h \
575 config.h \
576 dwarf.h \
577 sysdep.h
578 debug.o: \
579 debug.c \
580 $(INCDIR)/alloca-conf.h \
581 $(INCDIR)/ansidecl.h \
582 $(INCDIR)/binary-io.h \
583 $(INCDIR)/fopen-same.h \
584 $(INCDIR)/libiberty.h \
585 $(INCDIR)/symcat.h \
586 ../bfd/bfd.h \
587 ../bfd/bfdver.h \
588 config.h \
589 debug.h \
590 sysdep.h
591 dlltool.o: \
592 dlltool.c \
593 $(INCDIR)/alloca-conf.h \
594 $(INCDIR)/ansidecl.h \
595 $(INCDIR)/binary-io.h \
596 $(INCDIR)/demangle.h \
597 $(INCDIR)/dyn-string.h \
598 $(INCDIR)/fopen-same.h \
599 $(INCDIR)/libiberty.h \
600 $(INCDIR)/safe-ctype.h \
601 $(INCDIR)/symcat.h \
602 ../bfd/bfd.h \
603 ../bfd/bfdver.h \
604 bucomm.h \
605 config.h \
606 dlltool.h \
607 sysdep.h
608 dllwrap.o: \
609 dllwrap.c \
610 $(INCDIR)/alloca-conf.h \
611 $(INCDIR)/ansidecl.h \
612 $(INCDIR)/binary-io.h \
613 $(INCDIR)/dyn-string.h \
614 $(INCDIR)/fopen-same.h \
615 $(INCDIR)/libiberty.h \
616 $(INCDIR)/symcat.h \
617 ../bfd/bfd.h \
618 ../bfd/bfdver.h \
619 bucomm.h \
620 config.h \
621 sysdep.h
622 emul_aix.o: \
623 emul_aix.c \
624 $(BFDDIR)/libcoff.h \
625 $(BFDDIR)/libxcoff.h \
626 $(INCDIR)/alloca-conf.h \
627 $(INCDIR)/ansidecl.h \
628 $(INCDIR)/bfdlink.h \
629 $(INCDIR)/binary-io.h \
630 $(INCDIR)/coff/internal.h \
631 $(INCDIR)/coff/xcoff.h \
632 $(INCDIR)/fopen-same.h \
633 $(INCDIR)/symcat.h \
634 ../bfd/bfd.h \
635 ../bfd/bfdver.h \
636 binemul.h \
637 bucomm.h \
638 config.h \
639 sysdep.h
640 emul_vanilla.o: \
641 emul_vanilla.c \
642 $(INCDIR)/alloca-conf.h \
643 $(INCDIR)/ansidecl.h \
644 $(INCDIR)/binary-io.h \
645 $(INCDIR)/fopen-same.h \
646 $(INCDIR)/symcat.h \
647 ../bfd/bfd.h \
648 ../bfd/bfdver.h \
649 binemul.h \
650 bucomm.h \
651 config.h \
652 sysdep.h
653 filemode.o: \
654 filemode.c \
655 $(INCDIR)/alloca-conf.h \
656 $(INCDIR)/ansidecl.h \
657 $(INCDIR)/binary-io.h \
658 $(INCDIR)/fopen-same.h \
659 $(INCDIR)/symcat.h \
660 ../bfd/bfd.h \
661 ../bfd/bfdver.h \
662 bucomm.h \
663 config.h \
664 sysdep.h
665 ieee.o: \
666 ieee.c \
667 $(INCDIR)/alloca-conf.h \
668 $(INCDIR)/ansidecl.h \
669 $(INCDIR)/binary-io.h \
670 $(INCDIR)/filenames.h \
671 $(INCDIR)/fopen-same.h \
672 $(INCDIR)/ieee.h \
673 $(INCDIR)/libiberty.h \
674 $(INCDIR)/symcat.h \
675 ../bfd/bfd.h \
676 ../bfd/bfdver.h \
677 budbg.h \
678 config.h \
679 debug.h \
680 sysdep.h
681 is-ranlib.o: \
682 is-ranlib.c
683 is-strip.o: \
684 is-strip.c
685 maybe-ranlib.o: \
686 maybe-ranlib.c
687 maybe-strip.o: \
688 maybe-strip.c
689 nlmconv.o: \
690 nlmconv.c \
691 $(BFDDIR)/libnlm.h \
692 $(INCDIR)/alloca-conf.h \
693 $(INCDIR)/ansidecl.h \
694 $(INCDIR)/binary-io.h \
695 $(INCDIR)/fopen-same.h \
696 $(INCDIR)/libiberty.h \
697 $(INCDIR)/nlm/common.h \
698 $(INCDIR)/nlm/external.h \
699 $(INCDIR)/nlm/internal.h \
700 $(INCDIR)/safe-ctype.h \
701 $(INCDIR)/symcat.h \
702 ../bfd/bfd.h \
703 ../bfd/bfdver.h \
704 bucomm.h \
705 config.h \
706 nlmconv.h \
707 sysdep.h
708 nm.o: \
709 nm.c \
710 $(BFDDIR)/elf-bfd.h \
711 $(BFDDIR)/plugin.h \
712 $(INCDIR)/alloca-conf.h \
713 $(INCDIR)/ansidecl.h \
714 $(INCDIR)/aout/ranlib.h \
715 $(INCDIR)/aout/stab.def \
716 $(INCDIR)/aout/stab_gnu.h \
717 $(INCDIR)/bfdlink.h \
718 $(INCDIR)/binary-io.h \
719 $(INCDIR)/demangle.h \
720 $(INCDIR)/elf/common.h \
721 $(INCDIR)/elf/external.h \
722 $(INCDIR)/elf/internal.h \
723 $(INCDIR)/fopen-same.h \
724 $(INCDIR)/libiberty.h \
725 $(INCDIR)/progress.h \
726 $(INCDIR)/symcat.h \
727 ../bfd/bfd.h \
728 ../bfd/bfdver.h \
729 bucomm.h \
730 config.h \
731 sysdep.h
732 not-ranlib.o: \
733 not-ranlib.c
734 not-strip.o: \
735 not-strip.c
736 objcopy.o: \
737 objcopy.c \
738 $(BFDDIR)/elf-bfd.h \
739 $(BFDDIR)/libbfd.h \
740 $(BFDDIR)/libcoff.h \
741 $(INCDIR)/alloca-conf.h \
742 $(INCDIR)/ansidecl.h \
743 $(INCDIR)/bfdlink.h \
744 $(INCDIR)/binary-io.h \
745 $(INCDIR)/coff/external.h \
746 $(INCDIR)/coff/i386.h \
747 $(INCDIR)/coff/internal.h \
748 $(INCDIR)/coff/pe.h \
749 $(INCDIR)/elf/common.h \
750 $(INCDIR)/elf/external.h \
751 $(INCDIR)/elf/internal.h \
752 $(INCDIR)/filenames.h \
753 $(INCDIR)/fnmatch.h \
754 $(INCDIR)/fopen-same.h \
755 $(INCDIR)/hashtab.h \
756 $(INCDIR)/libiberty.h \
757 $(INCDIR)/progress.h \
758 $(INCDIR)/symcat.h \
759 ../bfd/bfd.h \
760 ../bfd/bfdver.h \
761 bucomm.h \
762 budbg.h \
763 config.h \
764 sysdep.h
765 objdump.o: \
766 objdump.c \
767 $(BFDDIR)/elf-bfd.h \
768 $(INCDIR)/alloca-conf.h \
769 $(INCDIR)/ansidecl.h \
770 $(INCDIR)/aout/aout64.h \
771 $(INCDIR)/bfdlink.h \
772 $(INCDIR)/binary-io.h \
773 $(INCDIR)/demangle.h \
774 $(INCDIR)/dis-asm.h \
775 $(INCDIR)/elf/common.h \
776 $(INCDIR)/elf/external.h \
777 $(INCDIR)/elf/internal.h \
778 $(INCDIR)/filenames.h \
779 $(INCDIR)/fopen-same.h \
780 $(INCDIR)/libiberty.h \
781 $(INCDIR)/progress.h \
782 $(INCDIR)/safe-ctype.h \
783 $(INCDIR)/symcat.h \
784 ../bfd/bfd.h \
785 ../bfd/bfdver.h \
786 bucomm.h \
787 budbg.h \
788 config.h \
789 debug.h \
790 dwarf.h \
791 sysdep.h
792 prdbg.o: \
793 prdbg.c \
794 $(INCDIR)/alloca-conf.h \
795 $(INCDIR)/ansidecl.h \
796 $(INCDIR)/binary-io.h \
797 $(INCDIR)/demangle.h \
798 $(INCDIR)/fopen-same.h \
799 $(INCDIR)/libiberty.h \
800 $(INCDIR)/symcat.h \
801 ../bfd/bfd.h \
802 ../bfd/bfdver.h \
803 budbg.h \
804 config.h \
805 debug.h \
806 sysdep.h
807 rclex.o: \
808 rclex.c \
809 $(INCDIR)/alloca-conf.h \
810 $(INCDIR)/ansidecl.h \
811 $(INCDIR)/binary-io.h \
812 $(INCDIR)/fopen-same.h \
813 $(INCDIR)/libiberty.h \
814 $(INCDIR)/safe-ctype.h \
815 $(INCDIR)/symcat.h \
816 ../bfd/bfd.h \
817 ../bfd/bfdver.h \
818 bucomm.h \
819 config.h \
820 rcparse.h \
821 sysdep.h \
822 windint.h \
823 windres.h \
824 winduni.h
825 rdcoff.o: \
826 rdcoff.c \
827 $(BFDDIR)/libcoff.h \
828 $(INCDIR)/alloca-conf.h \
829 $(INCDIR)/ansidecl.h \
830 $(INCDIR)/bfdlink.h \
831 $(INCDIR)/binary-io.h \
832 $(INCDIR)/coff/internal.h \
833 $(INCDIR)/fopen-same.h \
834 $(INCDIR)/libiberty.h \
835 $(INCDIR)/symcat.h \
836 ../bfd/bfd.h \
837 ../bfd/bfdver.h \
838 bucomm.h \
839 budbg.h \
840 config.h \
841 debug.h \
842 sysdep.h
843 rddbg.o: \
844 rddbg.c \
845 $(INCDIR)/alloca-conf.h \
846 $(INCDIR)/ansidecl.h \
847 $(INCDIR)/binary-io.h \
848 $(INCDIR)/fopen-same.h \
849 $(INCDIR)/libiberty.h \
850 $(INCDIR)/symcat.h \
851 ../bfd/bfd.h \
852 ../bfd/bfdver.h \
853 bucomm.h \
854 budbg.h \
855 config.h \
856 debug.h \
857 sysdep.h
858 readelf.o: \
859 readelf.c \
860 $(INCDIR)/alloca-conf.h \
861 $(INCDIR)/ansidecl.h \
862 $(INCDIR)/aout/ar.h \
863 $(INCDIR)/binary-io.h \
864 $(INCDIR)/elf/alpha.h \
865 $(INCDIR)/elf/arc.h \
866 $(INCDIR)/elf/arm.h \
867 $(INCDIR)/elf/avr.h \
868 $(INCDIR)/elf/bfin.h \
869 $(INCDIR)/elf/common.h \
870 $(INCDIR)/elf/cr16.h \
871 $(INCDIR)/elf/cris.h \
872 $(INCDIR)/elf/crx.h \
873 $(INCDIR)/elf/d10v.h \
874 $(INCDIR)/elf/d30v.h \
875 $(INCDIR)/elf/dlx.h \
876 $(INCDIR)/elf/external.h \
877 $(INCDIR)/elf/fr30.h \
878 $(INCDIR)/elf/frv.h \
879 $(INCDIR)/elf/h8.h \
880 $(INCDIR)/elf/hppa.h \
881 $(INCDIR)/elf/i370.h \
882 $(INCDIR)/elf/i386.h \
883 $(INCDIR)/elf/i860.h \
884 $(INCDIR)/elf/i960.h \
885 $(INCDIR)/elf/ia64.h \
886 $(INCDIR)/elf/internal.h \
887 $(INCDIR)/elf/ip2k.h \
888 $(INCDIR)/elf/iq2000.h \
889 $(INCDIR)/elf/lm32.h \
890 $(INCDIR)/elf/m32c.h \
891 $(INCDIR)/elf/m32r.h \
892 $(INCDIR)/elf/m68hc11.h \
893 $(INCDIR)/elf/m68k.h \
894 $(INCDIR)/elf/mcore.h \
895 $(INCDIR)/elf/mep.h \
896 $(INCDIR)/elf/mips.h \
897 $(INCDIR)/elf/mmix.h \
898 $(INCDIR)/elf/mn10200.h \
899 $(INCDIR)/elf/mn10300.h \
900 $(INCDIR)/elf/msp430.h \
901 $(INCDIR)/elf/mt.h \
902 $(INCDIR)/elf/or32.h \
903 $(INCDIR)/elf/pj.h \
904 $(INCDIR)/elf/ppc.h \
905 $(INCDIR)/elf/ppc64.h \
906 $(INCDIR)/elf/reloc-macros.h \
907 $(INCDIR)/elf/s390.h \
908 $(INCDIR)/elf/score.h \
909 $(INCDIR)/elf/sh.h \
910 $(INCDIR)/elf/sparc.h \
911 $(INCDIR)/elf/spu.h \
912 $(INCDIR)/elf/v850.h \
913 $(INCDIR)/elf/vax.h \
914 $(INCDIR)/elf/x86-64.h \
915 $(INCDIR)/elf/xstormy16.h \
916 $(INCDIR)/elf/xtensa.h \
917 $(INCDIR)/filenames.h \
918 $(INCDIR)/fopen-same.h \
919 $(INCDIR)/libiberty.h \
920 $(INCDIR)/safe-ctype.h \
921 $(INCDIR)/symcat.h \
922 ../bfd/bfd.h \
923 ../bfd/bfdver.h \
924 bucomm.h \
925 config.h \
926 dwarf.h \
927 sysdep.h \
928 unwind-ia64.h
929 rename.o: \
930 rename.c \
931 $(INCDIR)/alloca-conf.h \
932 $(INCDIR)/ansidecl.h \
933 $(INCDIR)/binary-io.h \
934 $(INCDIR)/fopen-same.h \
935 $(INCDIR)/symcat.h \
936 ../bfd/bfd.h \
937 ../bfd/bfdver.h \
938 bucomm.h \
939 config.h \
940 sysdep.h
941 resbin.o: \
942 resbin.c \
943 $(INCDIR)/alloca-conf.h \
944 $(INCDIR)/ansidecl.h \
945 $(INCDIR)/binary-io.h \
946 $(INCDIR)/fopen-same.h \
947 $(INCDIR)/libiberty.h \
948 $(INCDIR)/symcat.h \
949 ../bfd/bfd.h \
950 ../bfd/bfdver.h \
951 bucomm.h \
952 config.h \
953 sysdep.h \
954 windint.h \
955 windres.h \
956 winduni.h
957 rescoff.o: \
958 rescoff.c \
959 $(BFDDIR)/libcoff.h \
960 $(INCDIR)/alloca-conf.h \
961 $(INCDIR)/ansidecl.h \
962 $(INCDIR)/bfdlink.h \
963 $(INCDIR)/binary-io.h \
964 $(INCDIR)/coff/internal.h \
965 $(INCDIR)/fopen-same.h \
966 $(INCDIR)/libiberty.h \
967 $(INCDIR)/symcat.h \
968 ../bfd/bfd.h \
969 ../bfd/bfdver.h \
970 bucomm.h \
971 config.h \
972 sysdep.h \
973 windint.h \
974 windres.h \
975 winduni.h
976 resrc.o: \
977 resrc.c \
978 $(INCDIR)/alloca-conf.h \
979 $(INCDIR)/ansidecl.h \
980 $(INCDIR)/binary-io.h \
981 $(INCDIR)/fopen-same.h \
982 $(INCDIR)/libiberty.h \
983 $(INCDIR)/safe-ctype.h \
984 $(INCDIR)/symcat.h \
985 ../bfd/bfd.h \
986 ../bfd/bfdver.h \
987 bucomm.h \
988 config.h \
989 sysdep.h \
990 windint.h \
991 windres.h \
992 winduni.h
993 resres.o: \
994 resres.c \
995 $(INCDIR)/alloca-conf.h \
996 $(INCDIR)/ansidecl.h \
997 $(INCDIR)/binary-io.h \
998 $(INCDIR)/fopen-same.h \
999 $(INCDIR)/libiberty.h \
1000 $(INCDIR)/symcat.h \
1001 ../bfd/bfd.h \
1002 ../bfd/bfdver.h \
1003 bucomm.h \
1004 config.h \
1005 sysdep.h \
1006 windint.h \
1007 windres.h \
1008 winduni.h
1009 size.o: \
1010 size.c \
1011 $(INCDIR)/alloca-conf.h \
1012 $(INCDIR)/ansidecl.h \
1013 $(INCDIR)/binary-io.h \
1014 $(INCDIR)/fopen-same.h \
1015 $(INCDIR)/libiberty.h \
1016 $(INCDIR)/symcat.h \
1017 ../bfd/bfd.h \
1018 ../bfd/bfdver.h \
1019 bucomm.h \
1020 config.h \
1021 sysdep.h
1022 srconv.o: \
1023 srconv.c \
1024 $(BFDDIR)/libcoff.h \
1025 $(INCDIR)/alloca-conf.h \
1026 $(INCDIR)/ansidecl.h \
1027 $(INCDIR)/bfdlink.h \
1028 $(INCDIR)/binary-io.h \
1029 $(INCDIR)/coff/internal.h \
1030 $(INCDIR)/fopen-same.h \
1031 $(INCDIR)/libiberty.h \
1032 $(INCDIR)/symcat.h \
1033 ../bfd/bfd.h \
1034 ../bfd/bfdver.h \
1035 bucomm.h \
1036 coffgrok.h \
1037 config.h \
1038 sysdep.h \
1039 sysroff.c \
1040 sysroff.h
1041 stabs.o: \
1042 stabs.c \
1043 $(INCDIR)/alloca-conf.h \
1044 $(INCDIR)/ansidecl.h \
1045 $(INCDIR)/aout/aout64.h \
1046 $(INCDIR)/aout/stab.def \
1047 $(INCDIR)/aout/stab_gnu.h \
1048 $(INCDIR)/binary-io.h \
1049 $(INCDIR)/demangle.h \
1050 $(INCDIR)/filenames.h \
1051 $(INCDIR)/fopen-same.h \
1052 $(INCDIR)/libiberty.h \
1053 $(INCDIR)/safe-ctype.h \
1054 $(INCDIR)/symcat.h \
1055 ../bfd/bfd.h \
1056 ../bfd/bfdver.h \
1057 budbg.h \
1058 config.h \
1059 debug.h \
1060 sysdep.h
1061 strings.o: \
1062 strings.c \
1063 $(INCDIR)/alloca-conf.h \
1064 $(INCDIR)/ansidecl.h \
1065 $(INCDIR)/binary-io.h \
1066 $(INCDIR)/fopen-same.h \
1067 $(INCDIR)/libiberty.h \
1068 $(INCDIR)/safe-ctype.h \
1069 $(INCDIR)/symcat.h \
1070 ../bfd/bfd.h \
1071 ../bfd/bfdver.h \
1072 bucomm.h \
1073 config.h \
1074 sysdep.h
1075 sysdump.o: \
1076 sysdump.c \
1077 $(INCDIR)/alloca-conf.h \
1078 $(INCDIR)/ansidecl.h \
1079 $(INCDIR)/binary-io.h \
1080 $(INCDIR)/fopen-same.h \
1081 $(INCDIR)/libiberty.h \
1082 $(INCDIR)/safe-ctype.h \
1083 $(INCDIR)/symcat.h \
1084 ../bfd/bfd.h \
1085 ../bfd/bfdver.h \
1086 bucomm.h \
1087 config.h \
1088 sysdep.h \
1089 sysroff.c \
1090 sysroff.h
1091 unwind-ia64.o: \
1092 unwind-ia64.c \
1093 $(INCDIR)/ansidecl.h \
1094 $(INCDIR)/elf/ia64.h \
1095 $(INCDIR)/elf/reloc-macros.h \
1096 $(INCDIR)/symcat.h \
1097 ../bfd/bfd.h \
1098 unwind-ia64.h
1099 version.o: \
1100 version.c \
1101 $(INCDIR)/alloca-conf.h \
1102 $(INCDIR)/ansidecl.h \
1103 $(INCDIR)/binary-io.h \
1104 $(INCDIR)/fopen-same.h \
1105 $(INCDIR)/symcat.h \
1106 ../bfd/bfd.h \
1107 ../bfd/bfdver.h \
1108 bucomm.h \
1109 config.h \
1110 sysdep.h
1111 windres.o: \
1112 windres.c \
1113 $(INCDIR)/alloca-conf.h \
1114 $(INCDIR)/ansidecl.h \
1115 $(INCDIR)/binary-io.h \
1116 $(INCDIR)/fopen-same.h \
1117 $(INCDIR)/libiberty.h \
1118 $(INCDIR)/obstack.h \
1119 $(INCDIR)/safe-ctype.h \
1120 $(INCDIR)/symcat.h \
1121 ../bfd/bfd.h \
1122 ../bfd/bfdver.h \
1123 bucomm.h \
1124 config.h \
1125 sysdep.h \
1126 windint.h \
1127 windres.h \
1128 winduni.h
1129 winduni.o: \
1130 winduni.c \
1131 $(INCDIR)/alloca-conf.h \
1132 $(INCDIR)/ansidecl.h \
1133 $(INCDIR)/binary-io.h \
1134 $(INCDIR)/fopen-same.h \
1135 $(INCDIR)/libiberty.h \
1136 $(INCDIR)/safe-ctype.h \
1137 $(INCDIR)/symcat.h \
1138 ../bfd/bfd.h \
1139 ../bfd/bfdver.h \
1140 bucomm.h \
1141 config.h \
1142 sysdep.h \
1143 winduni.h
1144 wrstabs.o: \
1145 wrstabs.c \
1146 $(INCDIR)/alloca-conf.h \
1147 $(INCDIR)/ansidecl.h \
1148 $(INCDIR)/aout/aout64.h \
1149 $(INCDIR)/aout/stab.def \
1150 $(INCDIR)/aout/stab_gnu.h \
1151 $(INCDIR)/binary-io.h \
1152 $(INCDIR)/fopen-same.h \
1153 $(INCDIR)/libiberty.h \
1154 $(INCDIR)/safe-ctype.h \
1155 $(INCDIR)/symcat.h \
1156 ../bfd/bfd.h \
1157 ../bfd/bfdver.h \
1158 bucomm.h \
1159 budbg.h \
1160 config.h \
1161 debug.h \
1162 sysdep.h
1163 windmc.o: \
1164 windmc.c \
1165 $(INCDIR)/alloca-conf.h \
1166 $(INCDIR)/ansidecl.h \
1167 $(INCDIR)/binary-io.h \
1168 $(INCDIR)/fopen-same.h \
1169 $(INCDIR)/libiberty.h \
1170 $(INCDIR)/obstack.h \
1171 $(INCDIR)/safe-ctype.h \
1172 $(INCDIR)/symcat.h \
1173 ../bfd/bfd.h \
1174 ../bfd/bfdver.h \
1175 bucomm.h \
1176 config.h \
1177 sysdep.h \
1178 windint.h \
1179 windmc.h \
1180 winduni.h
1181 mclex.o: \
1182 mclex.c \
1183 $(INCDIR)/alloca-conf.h \
1184 $(INCDIR)/ansidecl.h \
1185 $(INCDIR)/binary-io.h \
1186 $(INCDIR)/fopen-same.h \
1187 $(INCDIR)/libiberty.h \
1188 $(INCDIR)/safe-ctype.h \
1189 $(INCDIR)/symcat.h \
1190 ../bfd/bfd.h \
1191 ../bfd/bfdver.h \
1192 bucomm.h \
1193 config.h \
1194 mcparse.h \
1195 sysdep.h \
1196 windmc.h \
1197 winduni.h
1198 arparse.o: \
1199 arparse.c \
1200 $(INCDIR)/alloca-conf.h \
1201 $(INCDIR)/ansidecl.h \
1202 $(INCDIR)/binary-io.h \
1203 $(INCDIR)/fopen-same.h \
1204 $(INCDIR)/symcat.h \
1205 ../bfd/bfd.h \
1206 ../bfd/bfdver.h \
1207 arsup.h \
1208 config.h \
1209 sysdep.h
1210 arlex.o: \
1211 arlex.c \
1212 $(INCDIR)/ansidecl.h \
1213 $(INCDIR)/libiberty.h \
1214 arparse.h
1215 sysroff.o: \
1216 sysroff.c
1217 sysinfo.o: \
1218 sysinfo.c
1219 syslex.o: \
1220 syslex.c \
1221 config.h \
1222 sysinfo.h
1223 defparse.o: \
1224 defparse.c \
1225 $(INCDIR)/alloca-conf.h \
1226 $(INCDIR)/ansidecl.h \
1227 $(INCDIR)/binary-io.h \
1228 $(INCDIR)/fopen-same.h \
1229 $(INCDIR)/libiberty.h \
1230 $(INCDIR)/symcat.h \
1231 ../bfd/bfd.h \
1232 ../bfd/bfdver.h \
1233 config.h \
1234 dlltool.h \
1235 sysdep.h
1236 deflex.o: \
1237 deflex.c \
1238 $(INCDIR)/ansidecl.h \
1239 $(INCDIR)/libiberty.h \
1240 defparse.h \
1241 dlltool.h
1242 nlmheader.o: \
1243 nlmheader.c \
1244 $(INCDIR)/alloca-conf.h \
1245 $(INCDIR)/ansidecl.h \
1246 $(INCDIR)/binary-io.h \
1247 $(INCDIR)/fopen-same.h \
1248 $(INCDIR)/nlm/common.h \
1249 $(INCDIR)/nlm/internal.h \
1250 $(INCDIR)/safe-ctype.h \
1251 $(INCDIR)/symcat.h \
1252 ../bfd/bfd.h \
1253 ../bfd/bfdver.h \
1254 bucomm.h \
1255 config.h \
1256 nlmconv.h \
1257 sysdep.h
1258 rcparse.o: \
1259 rcparse.c \
1260 $(INCDIR)/alloca-conf.h \
1261 $(INCDIR)/ansidecl.h \
1262 $(INCDIR)/binary-io.h \
1263 $(INCDIR)/fopen-same.h \
1264 $(INCDIR)/libiberty.h \
1265 $(INCDIR)/safe-ctype.h \
1266 $(INCDIR)/symcat.h \
1267 ../bfd/bfd.h \
1268 ../bfd/bfdver.h \
1269 bucomm.h \
1270 config.h \
1271 sysdep.h \
1272 windint.h \
1273 windres.h \
1274 winduni.h
1275 mcparse.o: \
1276 mcparse.c \
1277 $(INCDIR)/alloca-conf.h \
1278 $(INCDIR)/ansidecl.h \
1279 $(INCDIR)/binary-io.h \
1280 $(INCDIR)/fopen-same.h \
1281 $(INCDIR)/libiberty.h \
1282 $(INCDIR)/safe-ctype.h \
1283 $(INCDIR)/symcat.h \
1284 ../bfd/bfd.h \
1285 ../bfd/bfdver.h \
1286 bucomm.h \
1287 config.h \
1288 sysdep.h \
1289 windmc.h \
1290 winduni.h
1291 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.057238 seconds and 5 git commands to generate.