1## Process this file with automake to generate Makefile.in
2
3## FIXME: Work around apparent bug in automake.
4INTLLIBS = @INTLLIBS@
5
6AUTOMAKE_OPTIONS = cygnus dejagnu
7
8SUBDIRS = doc po
9
10tooldir = $(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.
15CC_FOR_BUILD = @CC_FOR_BUILD@
16EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
17
18YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
19YFLAGS = -d
20LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
21
22WARN_CFLAGS = @WARN_CFLAGS@
23AM_CFLAGS = $(WARN_CFLAGS)
24
25# these two are almost the same program
26AR_PROG=ar
27RANLIB_PROG=ranlib
28
29# objcopy and strip should be the same program
30OBJCOPY_PROG=objcopy
31STRIP_PROG=strip-new
32
33STRINGS_PROG=strings
34
35READELF_PROG=readelf
36
37# These should all be the same program too.
38SIZE_PROG=size
39NM_PROG=nm-new
40OBJDUMP_PROG=objdump
41
42# This is the demangler, as a standalone program.
43# Note: This one is used as the installed name too, unlike the above.
44#DEMANGLER_PROG=cxxfilt
45
46ADDR2LINE_PROG=addr2line
47
48NLMCONV_PROG=nlmconv
49DLLTOOL_PROG=dlltool
50WINDRES_PROG=windres
51DLLWRAP_PROG=dllwrap
52
53SRCONV_PROG=srconv$(EXEEXT) sysdump$(EXEEXT) coffdump$(EXEEXT)
54
55PROGS = $(OBJDUMP_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) @BUILD_DLLWRAP@ @BUILD_MISC@
56
57bin_PROGRAMS = $(OBJDUMP_PROG) $(AR_PROG) $(STRINGS_PROG) $(RANLIB_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ @BUILD_WINDRES@ $(ADDR2LINE_PROG) $(READELF_PROG) @BUILD_DLLWRAP@ @BUILD_MISC@
58
59## We need a special rule to install the programs which are built with
60## -new, and to rename cxxfilt to c++filt.
61#noinst_PROGRAMS = $(NM_PROG) $(STRIP_PROG) $(DEMANGLER_PROG)
62noinst_PROGRAMS = $(STRIP_PROG)
63
64EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) $(WINDRES_PROG) $(DLLWRAP_PROG)
65
66# Stuff that goes in tooldir/ if appropriate.
67TOOL_PROGS = strip-new ar ranlib dlltool
68
69BASEDIR = $(srcdir)/..
70BFDDIR = $(BASEDIR)/bfd
71INCDIR	= $(BASEDIR)/include
72
73MKDEP = gcc -MM
74
75INCLUDES = -D_GNU_SOURCE \
76	 -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) \
77	 @HDEFINES@ \
78	 -I$(srcdir)/../intl -I../intl \
79	 -DLOCALEDIR="\"$(prefix)/share/locale\"" \
80	 -Dbin_dummy_emulation=$(EMULATION_VECTOR)
81
82HFILES = \
83	arsup.h binemul.h bucomm.h budbg.h budemang.h \
84	coffgrok.h debug.h dlltool.h nlmconv.h \
85	windres.h winduni.h
86
87GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h
88
89CFILES = \
90	addr2line.c ar.c arsup.c binemul.c bucomm.c budemang.c \
91	coffdump.c coffgrok.c cxxfilt.c debug.c dlltool.c dllwrap.c \
92	emul_aix.c emul_vanilla.c filemode.c \
93	ieee.c is-ranlib.c is-strip.c maybe-ranlib.c maybe-strip.c \
94	nlmconv.c nm.c not-ranlib.c not-strip.c \
95	objcopy.c objdump.c prdbg.c \
96	rdcoff.c rddbg.c readelf.c rename.c \
97	resbin.c rescoff.c resrc.c resres.c \
98	size.c srconv.c stabs.c strings.c sysdump.c version.c \
99	windres.c winduni.c wrstabs.c
100
101GENERATED_CFILES = \
102	arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
103	defparse.c deflex.c nlmheader.c rcparse.c rclex.c
104
105DEBUG_SRCS = rddbg.c debug.c stabs.c ieee.c rdcoff.c
106WRITE_DEBUG_SRCS = $(DEBUG_SRCS) wrstabs.c
107
108# Code shared by all the binutils.
109BULIBS = bucomm.c version.c filemode.c
110
111BFDLIB = ../bfd/libbfd.la
112
113OPCODES = ../opcodes/libopcodes.la
114
115LIBIBERTY = -liberty
116
117POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES)
118po/POTFILES.in: @MAINT@ Makefile
119	for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
120	  && mv tmp $(srcdir)/po/POTFILES.in
121
122EXPECT = `if [ -f $$r/../expect/expect ] ; then \
123          echo $$r/../expect/expect ; \
124          else echo expect ; fi`
125RUNTEST = `if [ -f ${srcdir}/../dejagnu/runtest ] ; then \
126           echo ${srcdir}/../dejagnu/runtest ; \
127           else echo runtest ;  fi`
128
129CC_FOR_TARGET = ` \
130  if [ -f $$r/../gcc/xgcc ] ; then \
131    if [ -f $$r/../newlib/Makefile ] ; then \
132      echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
133    else \
134      echo $$r/../gcc/xgcc -B$$r/../gcc/; \
135    fi; \
136  else \
137    if [ "@host@" = "@target@" ] ; then \
138      echo $(CC); \
139    else \
140      echo gcc | sed '$(transform)'; \
141    fi; \
142  fi`
143
144check-DEJAGNU: site.exp
145	srcdir=`cd $(srcdir) && pwd`; export srcdir; \
146	r=`pwd`; export r; \
147	EXPECT=$(EXPECT); export EXPECT; \
148	if [ -f $(top_builddir)/../expect/expect ]; then \
149	  TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \
150	  export TCL_LIBRARY; \
151	fi; \
152	runtest=$(RUNTEST); \
153	if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
154	  CC_FOR_TARGET="$(CC_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS)" \
155		$$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
156			$(RUNTESTFLAGS); \
157	else echo "WARNING: could not find \`runtest'" 1>&2; :;\
158	fi
159
160installcheck:
161	/bin/sh $(srcdir)/sanity.sh $(bindir)
162
163LDADD = $(BFDLIB) $(LIBIBERTY) $(INTLLIBS)
164
165size_SOURCES = size.c $(BULIBS)
166
167objcopy_SOURCES = objcopy.c not-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
168
169strings_SOURCES = strings.c $(BULIBS)
170
171readelf_SOURCES = readelf.c version.c unwind-ia64.c
172readelf_LDADD   = $(INTLLIBS) $(LIBIBERTY)
173
174strip_new_SOURCES = objcopy.c is-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
175
176nm_new_SOURCES = nm.c budemang.c $(BULIBS)
177
178objdump_SOURCES = objdump.c budemang.c prdbg.c $(DEBUG_SRCS) $(BULIBS)
179objdump_LDADD = $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(INTLLIBS)
180
181objdump.o:objdump.c
182	$(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
183
184#cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
185
186ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c binemul.c \
187	emul_$(EMULATION).c $(BULIBS)
188ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
189
190ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c \
191	binemul.c emul_$(EMULATION).c $(BULIBS)
192ranlib_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
193
194addr2line_SOURCES = addr2line.c budemang.c $(BULIBS)
195
196# The following is commented out for the conversion to automake.
197# This rule creates a single binary that switches between ar and ranlib
198# by looking at argv[0].  Use this kludge to save some disk space.
199# However, you have to install things by hand.
200# (That is after 'make install', replace the installed ranlib by a link to ar.)
201# Alternatively, you can install ranlib.sh as ranlib.
202# ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
203#	$(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
204#	-rm -f $(RANLIB_PROG)
205#	-ln $(AR_PROG) $(RANLIB_PROG)
206#
207# objcopy and strip in one binary that uses argv[0] to decide its action.
208#
209#objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
210#	$(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
211#	-rm -f $(STRIP_PROG)
212#	-ln $(OBJCOPY_PROG) $(STRIP_PROG)
213
214sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
215	./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
216	./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
217	./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
218
219sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
220	./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
221
222sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
223	$(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
224
225syslex.o: syslex.c sysinfo.h
226	if [ -r syslex.c ]; then \
227	  $(CC_FOR_BUILD) -c -I. $(CFLAGS)  syslex.c  ; \
228	else \
229	  $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(CFLAGS) $(srcdir)/syslex.c ;\
230	fi
231
232sysinfo.o: sysinfo.c
233	if [ -r sysinfo.c ]; then \
234	  $(CC_FOR_BUILD) -c -I. $(CFLAGS)  sysinfo.c  ; \
235	else \
236	  $(CC_FOR_BUILD) -c -I. $(CFLAGS) $(srcdir)/sysinfo.c ; \
237	fi
238
239# We need these for parallel make.
240arparse.h: arparse.c
241defparse.h: defparse.c
242nlmheader.h: nlmheader.c
243rcparse.h: rcparse.c
244sysinfo.h: sysinfo.c
245
246srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
247
248dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS)
249dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
250
251dlltool.o:dlltool.c
252	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
253
254rescoff.o:rescoff.c
255	$(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
256
257coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
258
259sysdump_SOURCES = sysdump.c $(BULIBS)
260
261# coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
262# scripts, since they are only included conditionally.
263nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
264	ldname=`echo ld | sed '$(transform)'`; \
265	$(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
266
267nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS)
268
269windres_SOURCES = windres.c resrc.c rescoff.c resbin.c rcparse.y rclex.l \
270	winduni.c resres.c $(BULIBS)
271windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(INTLLIBS)
272
273dllwrap_SOURCES = dllwrap.c version.c
274dllwrap_LDADD = $(LIBIBERTY) $(INTLLIBS)
275
276
277EXTRA_DIST = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
278	syslex.c deflex.c defparse.h defparse.c rclex.c rcparse.h rcparse.c
279
280diststuff: $(EXTRA_DIST) info
281
282DISTCLEANFILES = sysinfo sysroff.c sysroff.h \
283	site.exp site.bak
284
285Makefile: $(BFDDIR)/configure.in
286
287# Targets to rebuild dependencies in this Makefile.
288# Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
289DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
290	rm -f DEP1
291	$(MAKE) MKDEP="$(MKDEP)" DEP1
292	sed -f dep.sed < DEP1 > DEPA
293	echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
294	if grep ' /' DEPA > /dev/null 2> /dev/null; then \
295	  echo 'make DEP failed!'; exit 1; \
296	else \
297	  mv -f DEPA $@; \
298	fi
299
300DEP1: $(CFILES) $(GENERATED_CFILES)
301	echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
302	echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
303	$(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
304	mv -f DEP2 $@
305
306dep.sed: dep-in.sed config.status
307	objdir=`pwd`; \
308	sed <$(srcdir)/dep-in.sed >dep.sed	\
309		-e 's!@INCDIR@!$(INCDIR)!'	\
310		-e 's!@BFDDIR@!$(BFDDIR)!'	\
311		-e 's!@SRCDIR@!$(srcdir)!'	\
312		-e "s!@OBJDIR@!$${objdir}!"	\
313		-e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/binutils$$,,`'!'
314
315dep: DEP
316	sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
317	cat DEP >> tmp-Makefile
318	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
319
320dep-in: DEP
321	sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
322	cat DEP >> tmp-Makefile.in
323	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
324
325dep-am: DEP
326	sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
327	cat DEP >> tmp-Makefile.am
328	$(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
329
330.PHONY: dep dep-in dep-am
331
332###
333
334MOSTLYCLEANFILES = sysinfo binutils.log binutils.sum abcdefgh*
335mostlyclean-local:
336	-rm -rf tmpdir
337
338CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
339
340.PHONY: install-exec-local
341
342install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
343	@list='$(noinst_PROGRAMS)'; for p in $$list; do \
344	  if test -f $$p; then \
345	    echo " $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
346	    $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
347	  else :; fi; \
348	done
349	$(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
350	for i in $(TOOL_PROGS); do \
351	  if [ -f $$i$(EXEEXT) ]; then \
352	    j=`echo $$i | sed -e 's/-new//'`; \
353	    k=`echo $$j | sed '$(transform)'`; \
354	    if [ "$(bindir)/$$k" != "$(tooldir)/bin/$$j" ]; then \
355	      rm -f $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
356	      ln $(DESTDIR)$(bindir)/$$k$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
357		|| $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
358	    fi; \
359	  else true; \
360	  fi; \
361	done
362
363# What appears below is generated by a hacked mkdep using gcc -MM.
364
365# DO NOT DELETE THIS LINE -- mkdep uses it.
366# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
367addr2line.o: addr2line.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
368  $(INCDIR)/symcat.h $(INCDIR)/getopt.h $(INCDIR)/libiberty.h \
369  $(INCDIR)/demangle.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
370  $(INCDIR)/fopen-same.h budemang.h
371ar.o: ar.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
372  $(INCDIR)/libiberty.h $(INCDIR)/progress.h bucomm.h \
373  config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
374  $(INCDIR)/aout/ar.h $(BFDDIR)/libbfd.h arsup.h $(INCDIR)/filenames.h \
375  binemul.h
376arsup.o: arsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
377  $(INCDIR)/symcat.h arsup.h $(INCDIR)/libiberty.h bucomm.h \
378  config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
379  $(INCDIR)/filenames.h
380binemul.o: binemul.c binemul.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
381  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
382  $(INCDIR)/fopen-same.h
383bucomm.o: bucomm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
384  $(INCDIR)/symcat.h ../bfd/bfdver.h $(INCDIR)/libiberty.h \
385  bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
386  $(INCDIR)/filenames.h $(BFDDIR)/libbfd.h
387budemang.o: budemang.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
388  $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/demangle.h \
389  budemang.h
390coffdump.o: coffdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
391  $(INCDIR)/symcat.h $(INCDIR)/libiberty.h coffgrok.h \
392  bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h
393coffgrok.o: coffgrok.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
394  $(INCDIR)/symcat.h $(INCDIR)/libiberty.h bucomm.h config.h \
395  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/coff/internal.h \
396  $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h coffgrok.h
397cxxfilt.o: cxxfilt.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
398  $(INCDIR)/symcat.h bucomm.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
399  $(INCDIR)/libiberty.h $(INCDIR)/demangle.h $(INCDIR)/safe-ctype.h
400debug.o: debug.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
401  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
402  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h debug.h
403dlltool.o: dlltool.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
404  $(INCDIR)/symcat.h $(INCDIR)/libiberty.h bucomm.h config.h \
405  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/demangle.h \
406  $(INCDIR)/dyn-string.h dlltool.h $(INCDIR)/safe-ctype.h
407dllwrap.o: dllwrap.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
408  $(INCDIR)/symcat.h $(INCDIR)/libiberty.h bucomm.h config.h \
409  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/dyn-string.h
410emul_aix.o: emul_aix.c binemul.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
411  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
412  $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h $(INCDIR)/coff/internal.h \
413  $(INCDIR)/coff/xcoff.h $(BFDDIR)/libcoff.h $(BFDDIR)/libxcoff.h
414emul_vanilla.o: emul_vanilla.c binemul.h ../bfd/bfd.h \
415  $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h config.h \
416  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h
417filemode.o: filemode.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
418  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
419  $(INCDIR)/fopen-same.h
420ieee.o: ieee.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
421  $(INCDIR)/ieee.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
422  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h debug.h \
423  budbg.h $(INCDIR)/filenames.h
424is-ranlib.o: is-ranlib.c
425is-strip.o: is-strip.c
426maybe-ranlib.o: maybe-ranlib.c
427maybe-strip.o: maybe-strip.c
428nlmconv.o: nlmconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
429  $(INCDIR)/symcat.h $(INCDIR)/libiberty.h bucomm.h config.h \
430  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/safe-ctype.h \
431  $(BFDDIR)/libnlm.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
432  $(INCDIR)/nlm/external.h nlmconv.h
433nm.o: nm.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
434  $(INCDIR)/progress.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
435  $(INCDIR)/fopen-same.h budemang.h $(INCDIR)/aout/stab_gnu.h \
436  $(INCDIR)/aout/stab.def $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h \
437  $(INCDIR)/libiberty.h $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h \
438  $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h
439not-ranlib.o: not-ranlib.c
440not-strip.o: not-strip.c
441objcopy.o: objcopy.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
442  $(INCDIR)/symcat.h $(INCDIR)/progress.h bucomm.h config.h \
443  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
444  budbg.h $(INCDIR)/filenames.h $(INCDIR)/fnmatch.h
445objdump.o: objdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
446  $(INCDIR)/symcat.h ../bfd/bfdver.h $(INCDIR)/progress.h \
447  bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
448  budemang.h $(INCDIR)/safe-ctype.h $(INCDIR)/dis-asm.h \
449  $(INCDIR)/libiberty.h $(INCDIR)/demangle.h debug.h \
450  budbg.h $(INCDIR)/aout/aout64.h
451prdbg.o: prdbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
452  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
453  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h debug.h \
454  budbg.h
455rdcoff.o: rdcoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
456  $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h bucomm.h \
457  config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
458  $(INCDIR)/libiberty.h debug.h budbg.h $(BFDDIR)/libcoff.h \
459  $(INCDIR)/bfdlink.h
460rddbg.o: rddbg.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
461  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
462  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h debug.h \
463  budbg.h
464readelf.o: readelf.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
465  $(INCDIR)/symcat.h $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h \
466  $(INCDIR)/elf/internal.h $(INCDIR)/elf/dwarf2.h $(INCDIR)/elf/alpha.h \
467  $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/arc.h $(INCDIR)/elf/arm.h \
468  $(INCDIR)/elf/avr.h $(INCDIR)/elf/cris.h $(INCDIR)/elf/d10v.h \
469  $(INCDIR)/elf/d30v.h $(INCDIR)/elf/dlx.h $(INCDIR)/elf/fr30.h \
470  $(INCDIR)/elf/frv.h $(INCDIR)/elf/h8.h $(INCDIR)/elf/hppa.h \
471  $(INCDIR)/elf/i386.h $(INCDIR)/elf/i370.h $(INCDIR)/elf/i860.h \
472  $(INCDIR)/elf/i960.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/ip2k.h \
473  $(INCDIR)/elf/m32r.h $(INCDIR)/elf/m68k.h $(INCDIR)/elf/m68hc11.h \
474  $(INCDIR)/elf/mcore.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/mmix.h \
475  $(INCDIR)/elf/mn10200.h $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/msp430.h \
476  $(INCDIR)/elf/or32.h $(INCDIR)/elf/pj.h $(INCDIR)/elf/ppc.h \
477  $(INCDIR)/elf/ppc64.h $(INCDIR)/elf/s390.h $(INCDIR)/elf/sh.h \
478  $(INCDIR)/elf/sparc.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/vax.h \
479  $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/xstormy16.h $(INCDIR)/elf/iq2000.h \
480  $(INCDIR)/elf/xtensa.h $(INCDIR)/aout/ar.h bucomm.h \
481  config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
482  $(INCDIR)/libiberty.h unwind-ia64.h
483rename.o: rename.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
484  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
485  $(INCDIR)/fopen-same.h
486resbin.o: resbin.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
487  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
488  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h windres.h \
489  winduni.h
490rescoff.o: rescoff.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
491  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
492  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h windres.h \
493  winduni.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
494  $(INCDIR)/bfdlink.h
495resrc.o: resrc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
496  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
497  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \
498  windres.h winduni.h
499resres.o: resres.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
500  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
501  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h windres.h \
502  winduni.h
503size.o: size.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
504  bucomm.h config.h $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h \
505  $(INCDIR)/libiberty.h
506srconv.o: srconv.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
507  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
508  $(INCDIR)/fopen-same.h sysroff.h coffgrok.h $(INCDIR)/libiberty.h \
509  $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h \
510  sysroff.c
511stabs.o: stabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
512  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
513  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \
514  $(INCDIR)/demangle.h debug.h budbg.h $(INCDIR)/filenames.h \
515  $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
516strings.o: strings.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
517  $(INCDIR)/symcat.h $(INCDIR)/getopt.h bucomm.h config.h \
518  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
519  $(INCDIR)/safe-ctype.h
520sysdump.o: sysdump.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
521  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
522  $(INCDIR)/fopen-same.h $(INCDIR)/safe-ctype.h $(INCDIR)/libiberty.h \
523  sysroff.h sysroff.c
524version.o: version.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
525  $(INCDIR)/symcat.h ../bfd/bfdver.h bucomm.h config.h \
526  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h
527windres.o: windres.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
528  $(INCDIR)/symcat.h $(INCDIR)/getopt.h bucomm.h config.h \
529  $(INCDIR)/bin-bugs.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
530  $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h windres.h \
531  winduni.h
532winduni.o: winduni.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
533  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
534  $(INCDIR)/fopen-same.h winduni.h $(INCDIR)/safe-ctype.h
535wrstabs.o: wrstabs.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
536  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
537  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \
538  debug.h budbg.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
539  $(INCDIR)/aout/stab.def
540arparse.o: arparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
541  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
542  $(INCDIR)/fopen-same.h arsup.h
543arlex.o: arlex.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
544  arparse.h
545sysroff.o: sysroff.c
546sysinfo.o: sysinfo.c
547syslex.o: syslex.c sysinfo.h
548defparse.o: defparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
549  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
550  $(INCDIR)/fopen-same.h dlltool.h
551deflex.o: deflex.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
552  defparse.h dlltool.h
553nlmheader.o: nlmheader.c $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h \
554  ../bfd/bfd.h $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
555  $(INCDIR)/fopen-same.h $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h \
556  nlmconv.h
557rcparse.o: rcparse.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
558  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
559  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h windres.h \
560  winduni.h $(INCDIR)/safe-ctype.h
561rclex.o: rclex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
562  $(INCDIR)/symcat.h bucomm.h config.h $(INCDIR)/bin-bugs.h \
563  $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \
564  windres.h winduni.h rcparse.h
565# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
566