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