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