Tue Oct 6 18:20:10 1998 Geoffrey Noer <noer@cygnus.com>
[deliverable/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
49 SRCONV_PROG=srconv$(EXEEXT) sysdump$(EXEEXT) coffdump$(EXEEXT)
50
51 man_MANS = ar.1 nm.1 objdump.1 ranlib.1 size.1 strings.1 strip.1 objcopy.1 \
52 addr2line.1 nlmconv.1 $(DEMANGLER_PROG).1
53
54 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)
55
56 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)
57
58 ## We need a special rule to install the programs which are built with -new
59 noinst_PROGRAMS = $(NM_PROG) $(STRIP_PROG)
60
61 EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) \
62 $(WINDRES_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
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
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 $(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 $(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 $(BULIBS)
185 ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
186
187 ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.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 DISTSTUFF = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
260 syslex.c deflex.c defparse.h defparse.c rclex.c rcparse.h rcparse.c
261
262 diststuff: $(DISTSTUFF) info
263
264 DISTCLEANFILES = stamp-under sysinfo underscore.c sysroff.c sysroff.h \
265 site.exp site.bak
266
267 # Targets to rebuild dependencies in this Makefile.
268 # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
269 .dep: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
270 rm -f .dep1
271 $(MAKE) DEP=$(DEP) .dep1
272 sed -f dep.sed <.dep1 >.dep
273
274 # This rule really wants a mkdep that runs "gcc -MM".
275 .dep1: $(CFILES) $(GENERATED_CFILES)
276 rm -f .dep2
277 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
278 $(DEP) -f .dep2 $(INCLUDES) $?
279 $(SHELL) $(srcdir)/../move-if-change .dep2 .dep1
280
281 dep.sed: dep-in.sed config.status
282 objdir=`pwd`; \
283 sed <$(srcdir)/dep-in.sed >dep.sed \
284 -e 's!@INCDIR@!$(INCDIR)!' \
285 -e 's!@BFDDIR@!$(BFDDIR)!' \
286 -e 's!@SRCDIR@!$(srcdir)!' \
287 -e "s!@OBJDIR@!$${objdir}!"
288
289 dep: .dep
290 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
291 cat .dep >> tmp-Makefile
292 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
293
294 dep-in: .dep
295 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
296 cat .dep >> tmp-Makefile.in
297 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
298
299 dep-am: .dep
300 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
301 cat .dep >> tmp-Makefile.am
302 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
303
304 .PHONY: dep dep-in dep-am
305
306 ###
307 # DOCUMENTATION TARGETS
308 config.texi: Makefile
309 rm -f config.texi
310 echo '@set VERSION $(VERSION)' > config.texi
311
312 binutils.dvi: $(srcdir)/binutils.texi config.texi
313
314 binutils.info: $(srcdir)/binutils.texi config.texi
315
316 MAINTAINERCLEANFILES = config.texi
317
318 $(DEMANGLER_PROG).1: cxxfilt.man Makefile
319 sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
320 > $(DEMANGLER_PROG).1
321
322 MOSTLYCLEANFILES = sysinfo $(DEMANGLER_PROG).1 binutils.log binutils.sum \
323 abcdefgh*
324 mostlyclean-local:
325 -rm -rf tmpdir
326
327 CLEANFILES = dep.sed .dep .dep1
328
329 .PHONY: install-exec-local
330
331 install-exec-local: $(bin_PROGRAMS) $(noinst_PROGRAMS)
332 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
333 if test -f $$p; then \
334 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
335 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
336 else :; fi; \
337 done
338 $(mkinstalldirs) $(tooldir)/bin
339 for i in $(TOOL_PROGS); do \
340 if [ -f $$i$(EXEEXT) ]; then \
341 j=`echo $$i | sed -e 's/-new//'`; \
342 k=`echo $$j | sed '$(transform)'`; \
343 if [ "$(bindir)/$$k$(EXEEXT)" != "$(tooldir)/bin/$$j$(EXEEXT)" ]; then \
344 rm -f $(tooldir)/bin/$$j$(EXEEXT); \
345 ln $(bindir)/$$k$(EXEEXT) $(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
346 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(tooldir)/bin/$$j$(EXEEXT); \
347 fi; \
348 else true; \
349 fi; \
350 done
351
352 # What appears below is generated by a hacked mkdep using gcc -MM.
353
354 # DO NOT DELETE THIS LINE -- mkdep uses it.
355 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
356
357 addr2line.o: addr2line.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
358 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/demangle.h \
359 bucomm.h config.h $(INCDIR)/fopen-same.h
360 ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
361 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/fopen-same.h \
362 $(INCDIR)/aout/ar.h $(BFDDIR)/libbfd.h arsup.h
363 arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
364 arsup.h $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h
365 bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
366 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h
367 coffdump.o: coffdump.c coffgrok.h bucomm.h config.h \
368 $(INCDIR)/fopen-same.h
369 coffgrok.o: coffgrok.c bucomm.h config.h $(INCDIR)/fopen-same.h \
370 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
371 coffgrok.h
372 debug.o: debug.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
373 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
374 debug.h
375 dlltool.o: dlltool.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
376 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h \
377 $(INCDIR)/getopt.h $(INCDIR)/demangle.h dlltool.h
378 filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
379 bucomm.h config.h $(INCDIR)/fopen-same.h
380 ieee.o: ieee.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/ieee.h \
381 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
382 debug.h budbg.h
383 is-ranlib.o: is-ranlib.c
384 is-strip.o: is-strip.c
385 maybe-ranlib.o: maybe-ranlib.c
386 maybe-strip.o: maybe-strip.c
387 nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
388 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h \
389 $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
390 $(INCDIR)/nlm/external.h nlmconv.h
391 nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/progress.h \
392 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
393 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ranlib.h \
394 $(INCDIR)/demangle.h $(INCDIR)/libiberty.h
395 not-ranlib.o: not-ranlib.c
396 not-strip.o: not-strip.c
397 objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
398 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/fopen-same.h \
399 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h budbg.h
400 objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
401 $(INCDIR)/getopt.h $(INCDIR)/progress.h bucomm.h config.h \
402 $(INCDIR)/fopen-same.h $(INCDIR)/dis-asm.h $(INCDIR)/libiberty.h \
403 $(INCDIR)/demangle.h debug.h budbg.h $(INCDIR)/aout/aout64.h
404 prdbg.o: prdbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
405 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
406 debug.h budbg.h
407 rdcoff.o: rdcoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
408 $(INCDIR)/coff/internal.h bucomm.h config.h $(INCDIR)/fopen-same.h \
409 $(INCDIR)/libiberty.h $(INCDIR)/demangle.h debug.h \
410 budbg.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
411 rddbg.o: rddbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
412 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
413 debug.h budbg.h
414 size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/getopt.h \
415 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h
416 srconv.o: srconv.c bucomm.h config.h $(INCDIR)/fopen-same.h \
417 sysroff.h coffgrok.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
418 $(INCDIR)/bfdlink.h sysroff.c
419 stabs.o: stabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
420 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
421 $(INCDIR)/demangle.h debug.h budbg.h $(INCDIR)/aout/aout64.h \
422 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
423 strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
424 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h
425 sysdump.o: sysdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
426 bucomm.h config.h $(INCDIR)/fopen-same.h sysroff.h \
427 sysroff.c
428 version.o: version.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
429 bucomm.h config.h $(INCDIR)/fopen-same.h
430 wrstabs.o: wrstabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
431 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
432 debug.h budbg.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
433 $(INCDIR)/aout/stab.def
434 windres.o: windres.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
435 $(INCDIR)/getopt.h bucomm.h config.h $(INCDIR)/fopen-same.h \
436 $(INCDIR)/libiberty.h $(INCDIR)/obstack.h windres.h \
437 winduni.h
438 resrc.o: resrc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
439 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
440 windres.h winduni.h
441 rescoff.o: rescoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
442 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
443 windres.h winduni.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
444 $(INCDIR)/bfdlink.h
445 resbin.o: resbin.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
446 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
447 windres.h winduni.h
448 resres.o: resres.c windres.h
449 winduni.o: winduni.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
450 bucomm.h config.h $(INCDIR)/fopen-same.h winduni.h
451 readelf.o: readelf.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
452 $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
453 $(INCDIR)/elf/i386.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/v850.h \
454 $(INCDIR)/elf/ppc.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/alpha.h \
455 $(INCDIR)/elf/arm.h $(INCDIR)/elf/m68k.h $(INCDIR)/elf/sparc.h \
456 $(INCDIR)/elf/m32r.h $(INCDIR)/elf/d10v.h $(INCDIR)/elf/d30v.h \
457 $(INCDIR)/elf/sh.h $(INCDIR)/elf/mn10200.h $(INCDIR)/elf/mn10300.h \
458 $(INCDIR)/elf/hppa.h $(INCDIR)/elf/arc.h bucomm.h config.h \
459 $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h
460 underscore.o: underscore.c
461 arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
462 bucomm.h config.h $(INCDIR)/fopen-same.h arsup.h
463 arlex.o: arlex.c $(INCDIR)/libiberty.h arparse.h
464 sysroff.o: sysroff.c
465 sysinfo.o: sysinfo.c
466 syslex.o: syslex.c sysinfo.h
467 defparse.o: defparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
468 bucomm.h config.h $(INCDIR)/fopen-same.h dlltool.h
469 deflex.o: deflex.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
470 defparse.h dlltool.h
471 nlmheader.o: nlmheader.c ../bfd/bfd.h bucomm.h config.h \
472 $(INCDIR)/fopen-same.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
473 nlmconv.h
474 rcparse.o: rcparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
475 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
476 windres.h winduni.h
477 rclex.o: rclex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
478 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
479 windres.h winduni.h rcparse.h
480
481 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.052992 seconds and 5 git commands to generate.