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