* Makefile.am (DISTCLEANFILES): Remove defparse.h, arparse.h,
[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
248 # Targets to rebuild dependencies in this Makefile.
249 # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
250 .dep: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
251 rm -f .dep1
252 $(MAKE) DEP=$(DEP) .dep1
253 sed -f dep.sed <.dep1 >.dep
254
255 # This rule really wants a mkdep that runs "gcc -MM".
256 .dep1: $(CFILES) $(GENERATED_CFILES)
257 rm -f .dep2
258 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
259 $(DEP) -f .dep2 $(INCLUDES) $?
260 $(SHELL) $(srcdir)/../move-if-change .dep2 .dep1
261
262 dep.sed: dep-in.sed config.status
263 sed <$(srcdir)/dep-in.sed >dep.sed \
264 -e 's!@INCDIR@!$(INCDIR)!' \
265 -e 's!@BFDDIR@!$(BFDDIR)!' \
266 -e 's!@SRCDIR@!$(srcdir)!'
267
268 dep: .dep
269 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
270 cat .dep >> tmp-Makefile
271 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
272
273 dep-in: .dep
274 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
275 cat .dep >> tmp-Makefile.in
276 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
277
278 dep-am: .dep
279 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
280 cat .dep >> tmp-Makefile.am
281 $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
282
283 .PHONY: dep dep-in dep-am
284
285 ###
286 # DOCUMENTATION TARGETS
287 config.texi: Makefile
288 rm -f config.texi
289 echo '@set VERSION $(VERSION)' > config.texi
290
291 binutils.dvi: $(srcdir)/binutils.texi config.texi
292
293 binutils.info: $(srcdir)/binutils.texi config.texi
294
295 $(DEMANGLER_PROG).1: cxxfilt.man Makefile
296 sed -e 's/@PROGRAM@/$(DEMANGLER_PROG)/' < $(srcdir)/cxxfilt.man \
297 > $(DEMANGLER_PROG).1
298
299 MOSTLYCLEANFILES = sysinfo $(DEMANGLER_PROG).1
300
301 CLEANFILES = dep.sed .dep .dep1
302
303 .PHONY: install-exec-local
304
305 install-exec-local: $(bin_PROGRAMS) $(noinst_PROGRAMS)
306 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
307 if test -f $$p; then \
308 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/-new//'|sed '$(transform)'`"; \
309 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/-new//'|sed '$(transform)'`; \
310 else :; fi; \
311 done
312 $(mkinstalldirs) $(tooldir)/bin
313 for i in $(TOOL_PROGS); do \
314 if [ -f $$i$(EXEEXT) ]; then \
315 j=`echo $$i | sed -e 's/-new//'`; \
316 rm -f $(tooldir)/bin/$$j$(EXEEXT); \
317 k=`echo $$j | sed '$(transform)'`; \
318 if [ "$(bindir)/$$k$(EXEEXT)" != "$(tooldir)/bin/$$j$(EXEEXT)" ]; then \
319 ln $(bindir)/$$k$(EXEEXT) $(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
320 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(tooldir)/bin/$$j$(EXEEXT); \
321 fi; \
322 else true; \
323 fi; \
324 done
325
326 # What appears below is generated by a hacked mkdep using gcc -MM.
327
328 # DO NOT DELETE THIS LINE -- mkdep uses it.
329 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
330
331 addr2line.o: addr2line.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
332 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h $(INCDIR)/demangle.h \
333 bucomm.h config.h $(INCDIR)/fopen-same.h
334 ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
335 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/fopen-same.h \
336 $(INCDIR)/aout/ar.h $(BFDDIR)/libbfd.h arsup.h
337 arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
338 arsup.h $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h
339 bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
340 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h
341 coffdump.o: coffdump.c coffgrok.h bucomm.h config.h \
342 $(INCDIR)/fopen-same.h
343 coffgrok.o: coffgrok.c bucomm.h config.h $(INCDIR)/fopen-same.h \
344 $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
345 coffgrok.h
346 debug.o: debug.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
347 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
348 debug.h
349 dlltool.o: dlltool.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
350 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h \
351 $(INCDIR)/getopt.h $(INCDIR)/demangle.h dlltool.h
352 filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
353 bucomm.h config.h $(INCDIR)/fopen-same.h
354 ieee.o: ieee.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/ieee.h \
355 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
356 debug.h budbg.h
357 is-ranlib.o: is-ranlib.c
358 is-strip.o: is-strip.c
359 maybe-ranlib.o: maybe-ranlib.c
360 maybe-strip.o: maybe-strip.c
361 nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
362 $(INCDIR)/libiberty.h bucomm.h config.h $(INCDIR)/fopen-same.h \
363 $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
364 $(INCDIR)/nlm/external.h nlmconv.h
365 nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/progress.h \
366 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/getopt.h \
367 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def $(INCDIR)/aout/ranlib.h \
368 $(INCDIR)/demangle.h $(INCDIR)/libiberty.h
369 not-ranlib.o: not-ranlib.c
370 not-strip.o: not-strip.c
371 objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
372 $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/fopen-same.h \
373 $(INCDIR)/getopt.h $(INCDIR)/libiberty.h budbg.h
374 objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
375 $(INCDIR)/getopt.h $(INCDIR)/progress.h bucomm.h config.h \
376 $(INCDIR)/fopen-same.h $(INCDIR)/dis-asm.h $(INCDIR)/libiberty.h \
377 $(INCDIR)/demangle.h debug.h budbg.h $(INCDIR)/aout/aout64.h
378 prdbg.o: prdbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
379 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
380 debug.h budbg.h
381 rdcoff.o: rdcoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
382 $(INCDIR)/coff/internal.h bucomm.h config.h $(INCDIR)/fopen-same.h \
383 $(INCDIR)/libiberty.h $(INCDIR)/demangle.h debug.h \
384 budbg.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
385 rddbg.o: rddbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
386 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
387 debug.h budbg.h
388 size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/getopt.h \
389 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h
390 srconv.o: srconv.c bucomm.h config.h $(INCDIR)/fopen-same.h \
391 sysroff.h coffgrok.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
392 $(INCDIR)/bfdlink.h sysroff.c
393 stabs.o: stabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
394 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
395 $(INCDIR)/demangle.h debug.h budbg.h $(INCDIR)/aout/aout64.h \
396 $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
397 strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
398 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h
399 sysdump.o: sysdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
400 bucomm.h config.h $(INCDIR)/fopen-same.h sysroff.h \
401 sysroff.c
402 version.o: version.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
403 bucomm.h config.h $(INCDIR)/fopen-same.h
404 wrstabs.o: wrstabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
405 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
406 debug.h budbg.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
407 $(INCDIR)/aout/stab.def
408 windres.o: windres.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
409 $(INCDIR)/getopt.h bucomm.h config.h $(INCDIR)/fopen-same.h \
410 $(INCDIR)/libiberty.h $(INCDIR)/obstack.h windres.h
411 resrc.o: resrc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
412 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
413 windres.h
414 rescoff.o: rescoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
415 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
416 windres.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
417 $(INCDIR)/bfdlink.h
418 resbin.o: resbin.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
419 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
420 windres.h
421 underscore.o: underscore.c
422 arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
423 bucomm.h config.h $(INCDIR)/fopen-same.h arsup.h
424 arlex.o: arlex.c $(INCDIR)/libiberty.h arparse.h
425 sysroff.o: sysroff.c
426 sysinfo.o: sysinfo.c
427 syslex.o: syslex.c sysinfo.h
428 defparse.o: defparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
429 bucomm.h config.h $(INCDIR)/fopen-same.h dlltool.h
430 deflex.o: deflex.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
431 defparse.h dlltool.h
432 nlmheader.o: nlmheader.c ../bfd/bfd.h bucomm.h config.h \
433 $(INCDIR)/fopen-same.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
434 nlmconv.h
435 rcparse.o: rcparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
436 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
437 windres.h
438 rclex.o: rclex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
439 bucomm.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
440 windres.h rcparse.h
441
442 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.040627 seconds and 5 git commands to generate.