]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - contrib/binutils/binutils/Makefile.am
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / contrib / binutils / binutils / Makefile.am
1 ## Process this file with automake to generate Makefile.in
2
3 AUTOMAKE_OPTIONS = cygnus dejagnu
4 ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd
5
6 SUBDIRS = doc po
7
8 tooldir = $(exec_prefix)/$(target_alias)
9
10 ## These aren't set by automake, because they appear in
11 ## bfd/acinclude.m4, which is included by binutils/acinclude.m4, and
12 ## thus is not seen by automake.
13 CC_FOR_BUILD = @CC_FOR_BUILD@
14 EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
15
16 YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
17 YFLAGS = -d
18 LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
19
20 WARN_CFLAGS = @WARN_CFLAGS@
21 NO_WERROR = @NO_WERROR@
22 AM_CFLAGS = $(WARN_CFLAGS)
23 LIBICONV = @LIBICONV@
24
25 # these two are almost the same program
26 AR_PROG=ar
27 RANLIB_PROG=ranlib
28
29 # objcopy and strip should be the same program
30 OBJCOPY_PROG=objcopy
31 STRIP_PROG=strip-new
32
33 STRINGS_PROG=strings
34
35 READELF_PROG=readelf
36
37 # These should all be the same program too.
38 SIZE_PROG=size
39 NM_PROG=nm-new
40 OBJDUMP_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
46 ADDR2LINE_PROG=addr2line
47
48 NLMCONV_PROG=nlmconv
49 DLLTOOL_PROG=dlltool
50 WINDRES_PROG=windres
51 WINDMC_PROG=windmc
52 DLLWRAP_PROG=dllwrap
53
54 SRCONV_PROG=srconv$(EXEEXT) sysdump$(EXEEXT) coffdump$(EXEEXT)
55
56 bin_PROGRAMS = $(SIZE_PROG) $(OBJDUMP_PROG) $(AR_PROG) $(STRINGS_PROG) $(RANLIB_PROG) $(OBJCOPY_PROG) @BUILD_NLMCONV@ @BUILD_SRCONV@ @BUILD_DLLTOOL@ @BUILD_WINDRES@ @BUILD_WINDMC@ $(ADDR2LINE_PROG) $(READELF_PROG) @BUILD_DLLWRAP@ @BUILD_INSTALL_MISC@
57
58 ## We need a special rule to install the programs which are built with
59 ## -new, and to rename cxxfilt to c++filt.
60 RENAMED_PROGS = $(NM_PROG) $(STRIP_PROG) $(DEMANGLER_PROG)
61 noinst_PROGRAMS = $(RENAMED_PROGS) @BUILD_MISC@
62
63 EXTRA_PROGRAMS = $(NLMCONV_PROG) srconv sysdump coffdump $(DLLTOOL_PROG) $(WINDRES_PROG) $(WINDMC_PROG) $(DLLWRAP_PROG)
64
65 # Stuff that goes in tooldir/ if appropriate.
66 TOOL_PROGS = nm-new strip-new ar ranlib dlltool objdump objcopy
67
68 BASEDIR = $(srcdir)/..
69 BFDDIR = $(BASEDIR)/bfd
70 INCDIR  = $(BASEDIR)/include
71
72 MKDEP = gcc -MM
73
74 INCLUDES = -D_GNU_SOURCE \
75          -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) \
76          @HDEFINES@ \
77          @INCINTL@ \
78          -DLOCALEDIR="\"$(datadir)/locale\"" \
79          -Dbin_dummy_emulation=$(EMULATION_VECTOR)
80
81 HFILES = \
82         arsup.h binemul.h bucomm.h budbg.h \
83         coffgrok.h debug.h dlltool.h nlmconv.h \
84         windres.h winduni.h windint.h \
85         windmc.h
86
87 GENERATED_HFILES = arparse.h sysroff.h sysinfo.h defparse.h rcparse.h mcparse.h
88
89 CFILES = \
90         addr2line.c ar.c arsup.c bin2c.c binemul.c bucomm.c \
91         coffdump.c coffgrok.c cxxfilt.c \
92         dwarf.c debug.c dlltool.c dllwrap.c \
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         rclex.c 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 \
101         windmc.c mclex.c
102
103 GENERATED_CFILES = \
104         arparse.c arlex.c sysroff.c sysinfo.c syslex.c \
105         defparse.c deflex.c nlmheader.c rcparse.c mcparse.c
106
107 DEBUG_SRCS = rddbg.c debug.c stabs.c ieee.c rdcoff.c
108 WRITE_DEBUG_SRCS = $(DEBUG_SRCS) wrstabs.c
109
110 # Code shared by all the binutils.
111 BULIBS = bucomm.c version.c filemode.c
112
113 BFDLIB = ../bfd/libbfd.la
114
115 OPCODES = ../opcodes/libopcodes.la
116
117 LIBIBERTY = ../libiberty/libiberty.a
118
119 .PHONY: install-html install-html-am install-html-recursive
120
121 install-html:   install-html-recursive
122
123 install-html-recursive:
124         @failcom='exit 1'; \
125         for f in x $$MAKEFLAGS; do \
126           case $$f in \
127             *=* | --[!k]*);; \
128             *k*) failcom='fail=yes';; \
129           esac; \
130         done; \
131         dot_seen=no; \
132         target=`echo $@ | sed s/-recursive//`; \
133         list='$(SUBDIRS)'; for subdir in $$list; do \
134           echo "Making $$target in $$subdir"; \
135           if test "$$subdir" = "."; then \
136             dot_seen=yes; \
137             local_target="$$target-am"; \
138           else \
139             local_target="$$target"; \
140           fi; \
141           (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
142           || eval $$failcom; \
143         done; \
144         if test "$$dot_seen" = "no"; then \
145           $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
146         fi; test -z "$$fail"
147
148 POTFILES = $(CFILES) $(DEBUG_SRCS) $(HFILES)
149 po/POTFILES.in: @MAINT@ Makefile
150         for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \
151           && mv tmp $(srcdir)/po/POTFILES.in
152
153 EXPECT = expect
154 RUNTEST = runtest
155
156 CC_FOR_TARGET = ` \
157   if [ -f $$r/../gcc/xgcc ] ; then \
158     if [ -f $$r/../newlib/Makefile ] ; then \
159       echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
160     else \
161       echo $$r/../gcc/xgcc -B$$r/../gcc/; \
162     fi; \
163   else \
164     if [ "@host@" = "@target@" ] ; then \
165       echo $(CC); \
166     else \
167       echo gcc | sed '$(transform)'; \
168     fi; \
169   fi`
170
171 check-DEJAGNU: site.exp
172         srcdir=`cd $(srcdir) && pwd`; export srcdir; \
173         r=`pwd`; export r; \
174         EXPECT=$(EXPECT); export EXPECT; \
175         runtest=$(RUNTEST); \
176         if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
177           CC_FOR_TARGET="$(CC_FOR_TARGET)" CFLAGS_FOR_TARGET="$(CFLAGS)" \
178                 $$runtest --tool $(DEJATOOL) --srcdir $${srcdir}/testsuite \
179                         $(RUNTESTFLAGS); \
180         else echo "WARNING: could not find \`runtest'" 1>&2; :;\
181         fi
182
183 installcheck:
184         /bin/sh $(srcdir)/sanity.sh $(bindir)
185
186 # There's no global DEPENDENCIES.  So, we must explicitly list everything
187 # which depends on libintl, since we don't know whether LIBINTL_DEP will be
188 # non-empty until configure time.  Ugh!
189 size_DEPENDENCIES =      $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
190 objdump_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB) $(OPCODES)
191 nm_new_DEPENDENCIES =    $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
192 ar_DEPENDENCIES =        $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
193 strings_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
194 strip_new_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
195 ranlib_DEPENDENCIES =    $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
196 cxxfilt_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
197 objcopy_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
198 nlmconv_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
199 srconv_DEPENDENCIES =    $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
200 sysdump_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
201 coffdump_DEPENDENCIES =  $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
202 dlltool_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
203 windres_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
204 windmc_DEPENDENCIES =    $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
205 addr2line_DEPENDENCIES = $(LIBINTL_DEP) $(LIBIBERTY) $(BFDLIB)
206 readelf_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY)
207 dllwrap_DEPENDENCIES =   $(LIBINTL_DEP) $(LIBIBERTY)
208
209 LDADD = $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
210
211 size_SOURCES = size.c $(BULIBS)
212
213 objcopy_SOURCES = objcopy.c not-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
214
215 strings_SOURCES = strings.c $(BULIBS)
216
217 readelf_SOURCES = readelf.c version.c unwind-ia64.c dwarf.c
218 readelf_LDADD   = $(LIBINTL) $(LIBIBERTY)
219
220 strip_new_SOURCES = objcopy.c is-strip.c rename.c $(WRITE_DEBUG_SRCS) $(BULIBS)
221
222 nm_new_SOURCES = nm.c $(BULIBS)
223
224 objdump_SOURCES = objdump.c dwarf.c prdbg.c $(DEBUG_SRCS) $(BULIBS)
225 objdump_LDADD = $(OPCODES) $(BFDLIB) $(LIBIBERTY) $(LIBINTL)
226
227 objdump.o:objdump.c
228         $(COMPILE) -c $(OBJDUMP_DEFS) $(srcdir)/objdump.c
229
230 cxxfilt_SOURCES = cxxfilt.c $(BULIBS)
231
232 ar_SOURCES = arparse.y arlex.l ar.c not-ranlib.c arsup.c rename.c binemul.c \
233         emul_$(EMULATION).c $(BULIBS)
234 ar_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
235
236 ranlib_SOURCES = ar.c is-ranlib.c arparse.y arlex.l arsup.c rename.c \
237         binemul.c emul_$(EMULATION).c $(BULIBS)
238 ranlib_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
239
240 addr2line_SOURCES = addr2line.c $(BULIBS)
241
242 # The following is commented out for the conversion to automake.
243 # This rule creates a single binary that switches between ar and ranlib
244 # by looking at argv[0].  Use this kludge to save some disk space.
245 # However, you have to install things by hand.
246 # (That is after 'make install', replace the installed ranlib by a link to ar.)
247 # Alternatively, you can install ranlib.sh as ranlib.
248 # ar_with_ranlib: $(ADDL_DEPS) ar.o maybe-ranlib.o
249 #       $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(AR_PROG) ar.o maybe-ranlib.o $(ADDL_LIBS) $(EXTRALIBS)
250 #       -rm -f $(RANLIB_PROG)
251 #       -ln $(AR_PROG) $(RANLIB_PROG)
252 #
253 # objcopy and strip in one binary that uses argv[0] to decide its action.
254 #
255 #objcopy_with_strip: $(ADDL_DEPS) objcopy.o maybe-strip.o
256 #       $(HLDENV) $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(OBJCOPY_PROG) objcopy.o maybe-strip.o $(ADDL_LIBS) $(EXTRALIBS)
257 #       -rm -f $(STRIP_PROG)
258 #       -ln $(OBJCOPY_PROG) $(STRIP_PROG)
259
260 sysroff.c: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
261         ./sysinfo$(EXEEXT_FOR_BUILD) -c <$(srcdir)/sysroff.info >sysroff.c
262         ./sysinfo$(EXEEXT_FOR_BUILD) -i <$(srcdir)/sysroff.info >>sysroff.c
263         ./sysinfo$(EXEEXT_FOR_BUILD) -g <$(srcdir)/sysroff.info >>sysroff.c
264
265 sysroff.h: sysinfo$(EXEEXT_FOR_BUILD) sysroff.info
266         ./sysinfo$(EXEEXT_FOR_BUILD) -d <$(srcdir)/sysroff.info >sysroff.h
267
268 sysinfo$(EXEEXT_FOR_BUILD): sysinfo.o syslex.o
269         $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o $@ sysinfo.o syslex.o
270
271 syslex.o:
272         if [ -r syslex.c ]; then \
273           $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) syslex.c -Wno-error ; \
274         else \
275           $(CC_FOR_BUILD) -c -I. -I$(srcdir) $(AM_CFLAGS) $(CFLAGS) $(srcdir)/syslex.c -Wno-error ;\
276         fi
277
278 sysinfo.o:
279         if [ -r sysinfo.c ]; then \
280           $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) sysinfo.c -Wno-error ; \
281         else \
282           $(CC_FOR_BUILD) -c -I. $(AM_CFLAGS) $(CFLAGS) $(srcdir)/sysinfo.c -Wno-error ; \
283         fi
284
285 bin2c$(EXEEXT_FOR_BUILD):
286         $(CC_FOR_BUILD) -o $@ $(INCLUDES) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) $(srcdir)/bin2c.c $(srcdir)/version.c
287
288 embedspu: embedspu.sh
289         sed "s@^program_transform_name=@program_transform_name=$(program_transform_name)@" < $< > $@
290         chmod a+x $@
291
292 # We need these for parallel make.
293 arparse.h: arparse.c
294 defparse.h: defparse.c
295 nlmheader.h: nlmheader.c
296 rcparse.h: rcparse.c
297 mcparse.h: mcparse.c
298 sysinfo.h: sysinfo.c
299
300 # Disable -Werror, if it has been enabled, since old versions of bison/
301 # yacc will produce working code which contain compile time warnings.
302 arparse.o:
303         $(COMPILE) -c $< $(NO_WERROR)
304 arlex.o:
305         $(COMPILE) -c $< $(NO_WERROR)
306 sysroff.o:
307         $(COMPILE) -c $< $(NO_WERROR)
308 defparse.o:
309         $(COMPILE) -c $< $(NO_WERROR)
310 deflex.o:
311         $(COMPILE) -c $< $(NO_WERROR)
312 nlmheader.o:
313         $(COMPILE) -c $< $(NO_WERROR)
314 rcparse.o:
315         $(COMPILE) -c $< $(NO_WERROR)
316 mcparse.o:
317         $(COMPILE) -c $< $(NO_WERROR)
318 rclex.o:
319         $(COMPILE) -c $< $(NO_WERROR)
320 mclex.o:
321         $(COMPILE) -c $< $(NO_WERROR)
322
323 srconv_SOURCES = srconv.c coffgrok.c $(BULIBS)
324
325 dlltool_SOURCES = dlltool.c defparse.y deflex.l $(BULIBS)
326 dlltool_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL)
327
328 dlltool.o:
329         $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/dlltool.c
330
331 rescoff.o:
332         $(COMPILE) -c $(DLLTOOL_DEFS) $(srcdir)/rescoff.c
333
334 coffdump_SOURCES = coffdump.c coffgrok.c $(BULIBS)
335
336 sysdump_SOURCES = sysdump.c $(BULIBS)
337
338 # coff/sym.h and coff/ecoff.h won't be found by the automatic dependency
339 # scripts, since they are only included conditionally.
340 nlmconv.o: nlmconv.c $(INCDIR)/coff/sym.h $(INCDIR)/coff/ecoff.h
341         ldname=`echo ld | sed '$(transform)'`; \
342         $(COMPILE) -c -DLD_NAME="\"$${ldname}\"" @NLMCONV_DEFS@ $(srcdir)/nlmconv.c
343
344 nlmconv_SOURCES = nlmconv.c nlmheader.y $(BULIBS)
345
346 windres_SOURCES = windres.c resrc.c rescoff.c resbin.c rcparse.y rclex.c \
347         winduni.c resres.c $(BULIBS)
348 windres_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL) $(LIBICONV)
349
350 windmc_SOURCES = windmc.c mcparse.y mclex.c \
351         winduni.c $(BULIBS)
352 windmc_LDADD = $(BFDLIB) $(LIBIBERTY) @LEXLIB@ $(LIBINTL) $(LIBICONV)
353
354 dllwrap_SOURCES = dllwrap.c version.c
355 dllwrap_LDADD = $(LIBIBERTY) $(LIBINTL)
356
357
358 EXTRA_DIST = arparse.c arparse.h arlex.c nlmheader.c sysinfo.c sysinfo.h \
359         syslex.c deflex.c defparse.h defparse.c rcparse.h rcparse.c \
360         mcparse.h mcparse.c
361
362 diststuff: $(EXTRA_DIST) info
363 all: info
364
365 DISTCLEANFILES = sysroff.c sysroff.h site.exp site.bak
366
367 # Targets to rebuild dependencies in this Makefile.
368 # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
369 DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
370         rm -f DEP1
371         $(MAKE) MKDEP="$(MKDEP)" DEP1
372         sed -f dep.sed < DEP1 > DEPA
373         echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA
374         if grep ' /' DEPA > /dev/null 2> /dev/null; then \
375           echo 'make DEP failed!'; exit 1; \
376         else \
377           mv -f DEPA $@; \
378         fi
379
380 DEP1: $(CFILES) $(GENERATED_CFILES)
381         echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
382         echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2
383         $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2
384         mv -f DEP2 $@
385
386 dep.sed: dep-in.sed config.status
387         objdir=`pwd`; \
388         sed <$(srcdir)/dep-in.sed >dep.sed      \
389                 -e 's!@INCDIR@!$(INCDIR)!'      \
390                 -e 's!@BFDDIR@!$(BFDDIR)!'      \
391                 -e 's!@SRCDIR@!$(srcdir)!'      \
392                 -e "s!@OBJDIR@!$${objdir}!"     \
393                 -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/binutils$$,,`'!'
394
395 dep: DEP
396         sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
397         cat DEP >> tmp-Makefile
398         $(SHELL) $(srcdir)/../move-if-change tmp-Makefile Makefile
399
400 dep-in: DEP
401         sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
402         cat DEP >> tmp-Makefile.in
403         $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
404
405 dep-am: DEP
406         sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
407         cat DEP >> tmp-Makefile.am
408         $(SHELL) $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
409
410 .PHONY: dep dep-in dep-am
411
412 ###
413
414 MOSTLYCLEANFILES = sysinfo$(EXEEXT_FOR_BUILD) bin2c$(EXEEXT_FOR_BUILD) \
415   binutils.log binutils.sum abcdefgh*
416 mostlyclean-local:
417         -rm -rf tmpdir
418
419 CLEANFILES = dep.sed DEP DEPA DEP1 DEP2
420
421 .PHONY: install-exec-local
422
423 install-exec-local: install-binPROGRAMS $(bin_PROGRAMS) $(noinst_PROGRAMS)
424         @list='$(RENAMED_PROGS)'; for p in $$list; do \
425           if test -f $$p$(EXEEXT); then \
426             echo " $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p$(EXEEXT) $(bindir)/`echo $$p|sed -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
427             $(LIBTOOL)  --mode=install $(INSTALL_PROGRAM) $$p$(EXEEXT) $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/-new//' -e 's/cxxfilt/$(DEMANGLER_NAME)/'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
428           else :; fi; \
429         done
430         $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin
431         for i in $(TOOL_PROGS); do \
432           if [ -f $$i$(EXEEXT) ]; then \
433             j=`echo $$i | sed -e 's/-new//'`; \
434             k=`echo $$j | sed '$(transform)'`; \
435             if [ "$(bindir)/$$k" != "$(tooldir)/bin/$$j" ]; then \
436               rm -f $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
437               ln $(DESTDIR)$(bindir)/$$k$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT) >/dev/null 2>/dev/null \
438                 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$i$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$$j$(EXEEXT); \
439             fi; \
440           else true; \
441           fi; \
442         done
443
444 # What appears below is generated by a hacked mkdep using gcc -MM.
445
446 # DO NOT DELETE THIS LINE -- mkdep uses it.
447 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
448 addr2line.o: addr2line.c sysdep.h $(INCDIR)/ansidecl.h \
449   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
450   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
451   $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
452   bucomm.h
453 ar.o: ar.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
454   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
455   $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
456   $(INCDIR)/progress.h $(INCDIR)/aout/ar.h $(BFDDIR)/libbfd.h \
457   $(INCDIR)/hashtab.h bucomm.h arsup.h $(INCDIR)/filenames.h \
458   binemul.h
459 arsup.o: arsup.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
460   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
461   $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
462   $(INCDIR)/filenames.h bucomm.h arsup.h
463 bin2c.o: bin2c.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
464   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
465   $(INCDIR)/symcat.h bucomm.h
466 binemul.o: binemul.c binemul.h sysdep.h $(INCDIR)/ansidecl.h \
467   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
468   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h
469 bucomm.o: bucomm.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
470   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
471   $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
472   $(INCDIR)/filenames.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h \
473   bucomm.h
474 coffdump.o: coffdump.c sysdep.h $(INCDIR)/ansidecl.h \
475   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
476   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
477   $(INCDIR)/ansidecl.h bucomm.h coffgrok.h
478 coffgrok.o: coffgrok.c sysdep.h $(INCDIR)/ansidecl.h \
479   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
480   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
481   $(INCDIR)/ansidecl.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
482   $(INCDIR)/bfdlink.h bucomm.h coffgrok.h
483 cxxfilt.o: cxxfilt.c sysdep.h $(INCDIR)/ansidecl.h \
484   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
485   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
486   $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
487   $(INCDIR)/safe-ctype.h bucomm.h
488 dwarf.o: dwarf.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
489   config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
490   $(INCDIR)/ansidecl.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
491   $(INCDIR)/symcat.h bucomm.h $(INCDIR)/elf/dwarf2.h \
492   dwarf.h
493 debug.o: debug.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
494   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
495   $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
496   debug.h
497 dlltool.o: dlltool.c sysdep.h $(INCDIR)/ansidecl.h \
498   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
499   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
500   $(INCDIR)/ansidecl.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
501   $(INCDIR)/dyn-string.h bucomm.h dlltool.h $(INCDIR)/safe-ctype.h
502 dllwrap.o: dllwrap.c sysdep.h $(INCDIR)/ansidecl.h \
503   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
504   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
505   $(INCDIR)/ansidecl.h $(INCDIR)/dyn-string.h bucomm.h
506 emul_aix.o: emul_aix.c binemul.h sysdep.h $(INCDIR)/ansidecl.h \
507   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
508   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h $(INCDIR)/bfdlink.h \
509   $(INCDIR)/coff/internal.h $(INCDIR)/coff/xcoff.h $(BFDDIR)/libcoff.h \
510   $(INCDIR)/bfdlink.h $(BFDDIR)/libxcoff.h
511 emul_vanilla.o: emul_vanilla.c binemul.h sysdep.h $(INCDIR)/ansidecl.h \
512   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
513   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h
514 filemode.o: filemode.c sysdep.h $(INCDIR)/ansidecl.h \
515   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
516   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h
517 ieee.o: ieee.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
518   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
519   $(INCDIR)/symcat.h $(INCDIR)/ieee.h $(INCDIR)/libiberty.h \
520   $(INCDIR)/ansidecl.h debug.h budbg.h $(INCDIR)/filenames.h
521 is-ranlib.o: is-ranlib.c
522 is-strip.o: is-strip.c
523 maybe-ranlib.o: maybe-ranlib.c
524 maybe-strip.o: maybe-strip.c
525 nlmconv.o: nlmconv.c sysdep.h $(INCDIR)/ansidecl.h \
526   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
527   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
528   $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h $(BFDDIR)/libnlm.h \
529   $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h $(INCDIR)/nlm/external.h \
530   nlmconv.h bucomm.h
531 nm.o: nm.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
532   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
533   $(INCDIR)/symcat.h $(INCDIR)/progress.h $(INCDIR)/aout/stab_gnu.h \
534   $(INCDIR)/aout/stab.def $(INCDIR)/aout/ranlib.h $(INCDIR)/demangle.h \
535   $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
536   $(BFDDIR)/elf-bfd.h $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h \
537   $(INCDIR)/elf/external.h $(INCDIR)/bfdlink.h $(INCDIR)/elf/common.h \
538   bucomm.h
539 not-ranlib.o: not-ranlib.c
540 not-strip.o: not-strip.c
541 objcopy.o: objcopy.c sysdep.h $(INCDIR)/ansidecl.h \
542   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
543   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/progress.h \
544   $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h bucomm.h \
545   budbg.h $(INCDIR)/filenames.h $(INCDIR)/fnmatch.h $(BFDDIR)/elf-bfd.h \
546   $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h \
547   $(INCDIR)/bfdlink.h $(BFDDIR)/libbfd.h $(INCDIR)/hashtab.h
548 objdump.o: objdump.c sysdep.h $(INCDIR)/ansidecl.h \
549   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
550   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/progress.h \
551   bucomm.h dwarf.h $(INCDIR)/safe-ctype.h $(INCDIR)/dis-asm.h \
552   ../bfd/bfd.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
553   $(INCDIR)/demangle.h $(INCDIR)/libiberty.h debug.h \
554   budbg.h $(INCDIR)/aout/aout64.h
555 prdbg.o: prdbg.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
556   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
557   $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
558   $(INCDIR)/demangle.h $(INCDIR)/libiberty.h debug.h \
559   budbg.h
560 rclex.o: rclex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
561   $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
562   $(INCDIR)/safe-ctype.h windres.h $(INCDIR)/ansidecl.h \
563   winduni.h windint.h rcparse.h
564 rdcoff.o: rdcoff.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
565   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
566   $(INCDIR)/symcat.h $(INCDIR)/coff/internal.h $(INCDIR)/libiberty.h \
567   $(INCDIR)/ansidecl.h bucomm.h debug.h budbg.h $(BFDDIR)/libcoff.h \
568   $(INCDIR)/bfdlink.h
569 rddbg.o: rddbg.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
570   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
571   $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
572   bucomm.h debug.h budbg.h
573 readelf.o: readelf.c sysdep.h $(INCDIR)/ansidecl.h \
574   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
575   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h dwarf.h \
576   $(INCDIR)/elf/common.h $(INCDIR)/elf/external.h $(INCDIR)/elf/internal.h \
577   $(INCDIR)/elf/h8.h $(INCDIR)/elf/reloc-macros.h $(INCDIR)/elf/alpha.h \
578   $(INCDIR)/elf/arc.h $(INCDIR)/elf/arm.h $(INCDIR)/elf/avr.h \
579   $(INCDIR)/elf/bfin.h $(INCDIR)/elf/cris.h $(INCDIR)/elf/crx.h \
580   $(INCDIR)/elf/d10v.h $(INCDIR)/elf/d30v.h $(INCDIR)/elf/dlx.h \
581   $(INCDIR)/elf/fr30.h $(INCDIR)/elf/frv.h $(INCDIR)/elf/hppa.h \
582   $(INCDIR)/elf/i386.h $(INCDIR)/elf/i370.h $(INCDIR)/elf/i860.h \
583   $(INCDIR)/elf/i960.h $(INCDIR)/elf/ia64.h $(INCDIR)/elf/ip2k.h \
584   $(INCDIR)/elf/iq2000.h $(INCDIR)/elf/m32c.h $(INCDIR)/elf/m32r.h \
585   $(INCDIR)/elf/m68k.h $(INCDIR)/elf/m68hc11.h $(INCDIR)/elf/mcore.h \
586   $(INCDIR)/elf/mep.h $(INCDIR)/elf/mips.h $(INCDIR)/elf/mmix.h \
587   $(INCDIR)/elf/mn10200.h $(INCDIR)/elf/mn10300.h $(INCDIR)/elf/mt.h \
588   $(INCDIR)/elf/msp430.h $(INCDIR)/elf/or32.h $(INCDIR)/elf/pj.h \
589   $(INCDIR)/elf/ppc.h $(INCDIR)/elf/ppc64.h $(INCDIR)/elf/s390.h \
590   $(INCDIR)/elf/score.h $(INCDIR)/elf/sh.h $(INCDIR)/elf/sparc.h \
591   $(INCDIR)/elf/spu.h $(INCDIR)/elf/v850.h $(INCDIR)/elf/vax.h \
592   $(INCDIR)/elf/x86-64.h $(INCDIR)/elf/xstormy16.h $(INCDIR)/elf/xtensa.h \
593   $(INCDIR)/aout/ar.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
594   unwind-ia64.h
595 rename.o: rename.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
596   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
597   $(INCDIR)/symcat.h bucomm.h
598 resbin.o: resbin.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
599   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
600   $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
601   windres.h winduni.h windint.h
602 rescoff.o: rescoff.c sysdep.h $(INCDIR)/ansidecl.h \
603   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
604   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h \
605   $(INCDIR)/ansidecl.h windres.h winduni.h windint.h \
606   $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h $(INCDIR)/bfdlink.h
607 resrc.o: resrc.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
608   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
609   $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
610   $(INCDIR)/safe-ctype.h windres.h winduni.h windint.h
611 resres.o: resres.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
612   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
613   $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
614   windres.h winduni.h windint.h
615 size.o: size.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
616   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
617   $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
618   bucomm.h
619 srconv.o: srconv.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
620   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
621   $(INCDIR)/symcat.h bucomm.h sysroff.h coffgrok.h $(INCDIR)/libiberty.h \
622   $(INCDIR)/ansidecl.h $(INCDIR)/coff/internal.h $(BFDDIR)/libcoff.h \
623   $(INCDIR)/bfdlink.h sysroff.c
624 stabs.o: stabs.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
625   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
626   $(INCDIR)/symcat.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
627   $(INCDIR)/safe-ctype.h $(INCDIR)/demangle.h $(INCDIR)/libiberty.h \
628   debug.h budbg.h $(INCDIR)/filenames.h $(INCDIR)/aout/aout64.h \
629   $(INCDIR)/aout/stab_gnu.h $(INCDIR)/aout/stab.def
630 strings.o: strings.c sysdep.h $(INCDIR)/ansidecl.h \
631   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
632   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
633   $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h bucomm.h
634 sysdump.o: sysdump.c sysdep.h $(INCDIR)/ansidecl.h \
635   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
636   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/safe-ctype.h \
637   $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h bucomm.h \
638   sysroff.h sysroff.c $(INCDIR)/ansidecl.h
639 version.o: version.c sysdep.h $(INCDIR)/ansidecl.h \
640   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
641   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h
642 windres.o: windres.c sysdep.h $(INCDIR)/ansidecl.h \
643   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
644   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h \
645   $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \
646   windres.h winduni.h windint.h
647 winduni.o: winduni.c sysdep.h $(INCDIR)/ansidecl.h \
648   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
649   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
650   $(INCDIR)/ansidecl.h bucomm.h winduni.h $(INCDIR)/safe-ctype.h
651 wrstabs.o: wrstabs.c sysdep.h $(INCDIR)/ansidecl.h \
652   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
653   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
654   $(INCDIR)/ansidecl.h $(INCDIR)/safe-ctype.h bucomm.h \
655   debug.h budbg.h $(INCDIR)/aout/aout64.h $(INCDIR)/aout/stab_gnu.h \
656   $(INCDIR)/aout/stab.def
657 windmc.o: windmc.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
658   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
659   $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
660   $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h windmc.h \
661   winduni.h windint.h
662 mclex.o: mclex.c sysdep.h $(INCDIR)/ansidecl.h ../bfd/bfdver.h \
663   config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \
664   $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
665   $(INCDIR)/safe-ctype.h windmc.h winduni.h mcparse.h
666 arparse.o: arparse.c sysdep.h $(INCDIR)/ansidecl.h \
667   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
668   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h arsup.h
669 arlex.o: arlex.c $(INCDIR)/ansidecl.h $(INCDIR)/libiberty.h \
670   $(INCDIR)/ansidecl.h arparse.h
671 sysroff.o: sysroff.c
672 sysinfo.o: sysinfo.c
673 syslex.o: syslex.c config.h sysinfo.h
674 defparse.o: defparse.c sysdep.h $(INCDIR)/ansidecl.h \
675   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
676   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h $(INCDIR)/libiberty.h \
677   $(INCDIR)/ansidecl.h dlltool.h
678 deflex.o: deflex.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
679   defparse.h dlltool.h $(INCDIR)/ansidecl.h
680 nlmheader.o: nlmheader.c sysdep.h $(INCDIR)/ansidecl.h \
681   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/safe-ctype.h \
682   ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \
683   $(INCDIR)/nlm/common.h $(INCDIR)/nlm/internal.h bucomm.h \
684   nlmconv.h
685 rcparse.o: rcparse.c sysdep.h $(INCDIR)/ansidecl.h \
686   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
687   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h \
688   $(INCDIR)/ansidecl.h windres.h winduni.h windint.h \
689   $(INCDIR)/safe-ctype.h
690 mcparse.o: mcparse.c sysdep.h $(INCDIR)/ansidecl.h \
691   ../bfd/bfdver.h config.h $(INCDIR)/fopen-same.h ../bfd/bfd.h \
692   $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h bucomm.h $(INCDIR)/libiberty.h \
693   $(INCDIR)/ansidecl.h windmc.h winduni.h $(INCDIR)/safe-ctype.h
694 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY