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