a56bcafbeff570175407167f30fe6fa7f2680819
[platform/upstream/binutils.git] / ld / Makefile.in
1 # Makefile for the GNU linker ld (version 2)
2 # Copyright (C) 1989, 90, 91, 92, 93, 94, 95, 1996
3 # Free Software Foundation, Inc.
4
5 # This file is part of GNU ld.
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
11
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21
22 VPATH = @srcdir@
23 srcdir = @srcdir@
24 objdir = .
25
26 target_alias = @target_alias@
27 prefix = @prefix@
28
29 program_transform_name = @program_transform_name@
30 exec_prefix = @exec_prefix@
31 bindir = @bindir@
32 libdir = @libdir@
33 tooldir = $(exec_prefix)/$(target_alias)
34 datadir = @datadir@
35 mandir = @mandir@
36 man1dir = $(mandir)/man1
37 man2dir = $(mandir)/man2
38 man3dir = $(mandir)/man3
39 man4dir = $(mandir)/man4
40 man5dir = $(mandir)/man5
41 man6dir = $(mandir)/man6
42 man7dir = $(mandir)/man7
43 man8dir = $(mandir)/man8
44 man9dir = $(mandir)/man9
45 infodir = @infodir@
46 includedir = @includedir@
47
48 # We put the scripts in the directory $(scriptdir)/ldscripts.
49 # We can't put the scripts in $(datadir) because the SEARCH_DIR
50 # directives need to be different for native and cross linkers.
51 scriptdir = $(tooldir)/lib
52
53 SHELL = /bin/sh
54
55 INSTALL = `cd $(srcdir); pwd`/../install.sh -c
56 INSTALL_PROGRAM = @INSTALL_PROGRAM@
57 INSTALL_DATA = @INSTALL_DATA@
58 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
59 INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1
60
61 AR = ar
62 AR_FLAGS = qv
63 CC = @CC@
64 CFLAGS = @CFLAGS@
65 LDFLAGS = @LDFLAGS@
66 HLDFLAGS = @HLDFLAGS@
67 RPATH_ENVVAR = @RPATH_ENVVAR@
68 MAKEINFO = makeinfo
69 TEXI2DVI = texi2dvi
70 RANLIB = ranlib
71 BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi`
72 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ;  else echo flex ; fi`
73
74 EMUL = @EMUL@
75 EMULATION_OFILES = @EMULATION_OFILES@
76
77 # Search path to override the default search path for -lfoo libraries.
78 # If LIB_PATH is empty, the ones in the script (if any) are left alone.
79 # (The default is usually /lib:/usr/lib:/usr/local/lib, unless building
80 # a cross-linker, in which case the default is empty.  See genscripts.sh.)
81 # Otherwise, they are replaced with the ones given in LIB_PATH,
82 # which may have the form: LIB_PATH=/lib:/usr/local/lib
83 LIB_PATH =
84
85 BASEDIR = $(srcdir)/..
86 BFDDIR = $(BASEDIR)/bfd
87 INCDIR  = $(BASEDIR)/include
88 INCLUDES = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR)
89 DEP = mkdep
90
91 # What version of the manual to build
92 DOCVER = gen
93
94 # Where to find texinfo.tex to format docn with TeX
95 TEXIDIR = $(srcdir)/../texinfo
96
97 # Where to find other docs needed to format with TeX
98 TEXINPUTS = $(TEXIDIR):$(BFDDIR)/doc:$(srcdir)
99
100 # Whether to get roff to put indexing entries on stderr
101 TEXI2OPT =
102 # You neeed this to generate ld-index.ms (or .mm or .me)
103 # TEXI2OPT = -i
104
105 TEXI2ROFF=texi2roff
106
107 # Which roff program to use to generate index for texi2roff'd doc
108 ROFF = groff
109
110 #stuff for self hosting (can be overridden in config file).
111 HOSTING_CRT0 = @HOSTING_CRT0@
112 HOSTING_LIBS = @HOSTING_LIBS@
113 HOSTING_EMU = -m $(EMUL)
114
115 # These were used by `make check-cdtest'
116 #
117 #CXX = `if [ -f ../gcc/xgcc ] ; then \
118 #               echo ../gcc/xgcc -B../gcc/; \
119 #           else echo gcc; \
120 #           fi`
121 #CXXFLAGS = -fgnu-linker
122 #
123 # FIX_ME: using ../gcc/xgcc breaks the cdtest. 
124 #CXX = g++
125
126 # Setup the testing framework, if you have one
127 EXPECT = `if [ -f $$r/../expect/expect ] ; \
128         then echo $$r/../expect/expect ; \
129         else echo expect ; fi`
130
131 RUNTEST = `if [ -f $${srcroot}/../dejagnu/runtest ] ; \
132         then echo $${srcroot}/../dejagnu/runtest ; \
133         else echo runtest ; fi`
134
135 RUNTESTFLAGS =
136
137 CC_FOR_TARGET = ` \
138   if [ -f $$r/../gcc/xgcc ] ; then \
139     if [ -f $$r/../newlib/Makefile ] ; then \
140       echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
141     else \
142       echo $$r/../gcc/xgcc -B$$r/../gcc/; \
143     fi; \
144   else \
145     if [ "@host@" = "@target@" ] ; then \
146       echo $(CC); \
147     else \
148       echo gcc | sed '$(program_transform_name)'; \
149     fi; \
150   fi`
151
152 CXX = gcc
153 CXX_FOR_TARGET = ` \
154   if [ -f $$r/../gcc/xgcc ] ; then \
155     if [ -f $$r/../newlib/Makefile ] ; then \
156       echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
157     else \
158       echo $$r/../gcc/xgcc -B$$r/../gcc/; \
159     fi; \
160   else \
161     if [ "@host@" = "@target@" ] ; then \
162       echo $(CXX); \
163     else \
164       echo gcc | sed '$(program_transform_name)'; \
165     fi; \
166   fi`
167
168 # go directly to ld.new in case this ld isn't capable of
169 # linking native object on this host.  It can be renamed on
170 # install.
171 LD_PROG = ld.new
172
173 all: $(LD_PROG)
174 .PHONY: all
175
176 LINTFLAGS = $(INCLUDES) $(EXTRA_DEF) 
177
178 # The .cc suffix was used by `make check-cdtest'.
179
180 .SUFFIXES: .y $(SUFFIXES) .cc
181
182 # Suppress smart makes who think they know how to automake Yacc files
183 .y.c:
184
185 # This rule was used for the check-cdtest target.
186 #.cc.o:
187 #       $(CXX) -c -I$(srcdir) $(CXXFLAGS) $(CFLAGS) $<
188
189 ALL_CFLAGS = $(INCLUDES) @HDEFINES@ $(CFLAGS)
190 .c.o:
191         $(CC) -c $(ALL_CFLAGS) $<
192
193 BFDDEP = ../bfd/libbfd.a
194 BFDLIB = @BFDLIB@
195 LIBIBERTY = ../libiberty/libiberty.a
196
197 ALL_EMULATIONS = \
198         ea29k.o \
199         eaixppc.o \
200         eaixrs6.o \
201         ealpha.o \
202         earmaoutb.o \
203         earmaoutl.o \
204         earmcoff.o \
205         earmpe.o \
206         ecoff_sparc.o \
207         edelta68.o \
208         eebmon29k.o \
209         eelf32_sparc.o \
210         eelf32b4300.o \
211         eelf32bmip.o \
212         eelf32l4300.o \
213         eelf32lmip.o \
214         eelf32lppc.o \
215         eelf32ppc.o \
216         eelf64alpha.o \
217         eelf64_sparc.o \
218         eelf_i386.o \
219         egld960.o \
220         egld960coff.o \
221         ego32.o \
222         eh8300.o \
223         eh8300h.o \
224         $(start-sanitize-h8s) \
225         eh8300s.o \
226         $(end-sanitize-h8s) \
227         eh8500.o \
228         eh8500b.o \
229         eh8500c.o \
230         eh8500m.o \
231         eh8500s.o \
232         ehp300bsd.o \
233         ehp3hpux.o \
234         ehppaelf.o \
235         ei386aout.o \
236         ei386bsd.o \
237         ei386coff.o \
238         ei386go32.o \
239         ei386linux.o \
240         ei386lynx.o \
241         ei386mach.o \
242         ei386moss.o \
243         ei386msdos.o \
244         ei386nbsd.o \
245         ei386nw.o \
246         ei386pe.o \
247         elnk960.o \
248         em68k4knbsd.o \
249         em68kaout.o \
250         em68kaux.o \
251         em68kcoff.o \
252         em68kelf.o \
253         em68klinux.o \
254         em68klynx.o \
255         em68knbsd.o \
256         em68kpsos.o \
257         em88kbcs.o \
258         emipsbig.o \
259         emipsbsd.o \
260         emipsidt.o \
261         emipsidtl.o \
262         emipslit.o \
263         enews.o \
264         ens32knbsd.o \
265         epc532macha.o \
266         eppcmacos.o \
267         eppcnw.o \
268         eppcpe.o \
269         eriscix.o \
270         esa29200.o \
271         esh.o \
272         eshl.o \
273         esparcaout.o \
274         esparclynx.o \
275         esparcnbsd.o \
276         est2000.o \
277         esun3.o \
278         esun4.o \
279         evanilla.o \
280         evax.o \
281         evsta.o \
282         ew65.o \
283         ez8001.o \
284         ez8002.o
285
286 CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \
287         ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \
288         mri.c ldcref.c
289
290 HFILES = config.h ld.h ldctor.h ldemul.h ldexp.h ldfile.h \
291         ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \
292         ldwrite.h mri.h
293
294 GENERATED_CFILES = ldgram.c ldlex.c
295 GENERATED_HFILES = ldgram.h ldemul-list.h
296
297 OFILES = ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o \
298         ldwrite.o ldexp.o  ldemul.o ldver.o ldmisc.o \
299         ldfile.o ldcref.o ${EMULATION_OFILES}
300
301 LINTSOURCES = $(CFILES) $(GENERATED_CFILES) e*.c
302
303 STAGESTUFF = *.o ldscripts/* e*.c
304
305 info: ld.info
306 .PHONY: info
307
308 ldgram.c: ldgram.y
309         $(BISON) $(BISONFLAGS) -d $(srcdir)/ldgram.y
310         mv -f y.tab.c ldgram.c
311         mv -f y.tab.h ldgram.h
312
313 # Separate from ldgram.c so that a parallel make doesn't try to build
314 # both ldgram.c and ldgram.h simultaneously.
315 ldgram.h: ldgram.c
316
317 ldmain.o: ldmain.c config.status
318         $(CC) -c -DDEFAULT_EMULATION='"$(EMUL)"' -DSCRIPTDIR='"$(scriptdir)"' $(ALL_CFLAGS) $<
319
320 ldemul-list.h: Makefile
321         (echo "/* This file is automatically generated.  DO NOT EDIT! */";\
322         for f in `echo " " ${EMULATION_OFILES} "" \
323          | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
324             echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \
325         done;\
326         echo "";\
327         echo "#define EMULATION_LIST \\";\
328         for f in `echo " " ${EMULATION_OFILES} "" \
329          | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
330             echo "  &ld_$${f}_emulation, \\"; \
331         done;\
332         echo "  0") >ldemul-tmp.h
333         mv ldemul-tmp.h ldemul-list.h
334
335 ldlex.c: ldlex.l
336         $(LEX) -I -Cem $(srcdir)/ldlex.l
337         -sed -e '/^int.*free();/d' \
338              -e '/^char.*malloc();/d' \
339              -e 's/malloc/xmalloc/g' \
340           < lex.yy.c > ldlex.c.new
341         -rm lex.yy.c
342         mv ldlex.c.new ./ldlex.c
343
344 # These all start with e so 'make clean' can find them.
345
346 GENSCRIPTS = $(SHELL) $(srcdir)/genscripts.sh ${srcdir} ${libdir} @host@ @target@ @target_alias@ ${EMUL} "@NATIVE_LIB_DIRS@"
347 GEN_DEPENDS = $(srcdir)/genscripts.sh $(srcdir)/emultempl/stringify.sed
348 @TDIRS@
349
350 ea29k.c: $(srcdir)/emulparams/a29k.sh \
351   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/a29k.sc ${GEN_DEPENDS}
352         ${GENSCRIPTS} a29k "$(tdir_a29k)"
353 eaixppc.c: $(srcdir)/emulparams/aixppc.sh \
354   $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
355         ${GENSCRIPTS} aixppc "$(tdir_aixppc)"
356 eaixrs6.c: $(srcdir)/emulparams/aixrs6.sh \
357   $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
358         ${GENSCRIPTS} aixrs6 "$(tdir_aixrs6)"
359 ealpha.c: $(srcdir)/emulparams/alpha.sh \
360   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/alpha.sc ${GEN_DEPENDS}
361         ${GENSCRIPTS} alpha "$(tdir_alpha)"
362 # start-sanitize-arc
363 earcelf.c: $(srcdir)/emulparams/arcelf.sh \
364   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
365         ${GENSCRIPTS} arcelf "$(tdir_arcelf)"
366 # end-sanitize-arc
367 earmaoutb.c:    $(srcdir)/emulparams/armaoutb.sh \
368   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
369         ${GENSCRIPTS} armaoutb "$(tdir_armaoutb)"
370 earmaoutl.c:    $(srcdir)/emulparams/armaoutl.sh \
371   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
372         ${GENSCRIPTS} armaoutl "$(tdir_armaoutl)"
373 earmcoff.c:     $(srcdir)/emulparams/armcoff.sh \
374   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armcoff.sc ${GEN_DEPENDS}
375         ${GENSCRIPTS} armcoff "$(tdir_armcoff)"
376 earmpe.c: $(srcdir)/emulparams/armpe.sh \
377   $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
378         ${GENSCRIPTS} armpe "$(tdir_armpe)"
379 ecoff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
380   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS}
381         ${GENSCRIPTS} coff_sparc "$(tdir_coff_sparc)"
382 edelta68.c: $(srcdir)/emulparams/delta68.sh \
383   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/delta68.sc ${GEN_DEPENDS}
384         ${GENSCRIPTS} delta68 "$(tdir_delta68)"
385 eebmon29k.c: $(srcdir)/emulparams/ebmon29k.sh \
386   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/ebmon29k.sc ${GEN_DEPENDS}
387         ${GENSCRIPTS} ebmon29k "$(tdir_ebmon29k)"
388 eelf32_sparc.c: $(srcdir)/emulparams/elf32_sparc.sh \
389   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
390         ${GENSCRIPTS} elf32_sparc "$(tdir_elf32_sparc)"
391 eelf32b4300.c: $(srcdir)/emulparams/elf32b4300.sh \
392   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
393         ${GENSCRIPTS} elf32b4300 "$(tdir_elf32b4300)"
394 eelf32bmip.c: $(srcdir)/emulparams/elf32bmip.sh \
395   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfmips.sc ${GEN_DEPENDS}
396         ${GENSCRIPTS} elf32bmip "$(tdir_elf32bmip)"
397 eelf32l4300.c: $(srcdir)/emulparams/elf32l4300.sh \
398   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
399         ${GENSCRIPTS} elf32l4300 "$(tdir_elf32l4300)"
400 eelf32lmip.c: $(srcdir)/emulparams/elf32lmip.sh \
401   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfmips.sc ${GEN_DEPENDS}
402         ${GENSCRIPTS} elf32lmip "$(tdir_elf32lmip)"
403 eelf32lppc.c: $(srcdir)/emulparams/elf32lppc.sh \
404   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
405         ${GENSCRIPTS} elf32lppc "$(tdir_elf32lppc)"
406 eelf32ppc.c: $(srcdir)/emulparams/elf32ppc.sh \
407   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
408         ${GENSCRIPTS} elf32ppc "$(tdir_elf32ppc)"
409 eelf64alpha.c: $(srcdir)/emulparams/elf64alpha.sh \
410   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
411         ${GENSCRIPTS} elf64alpha "$(tdir_elf64alpha)"
412 eelf64_sparc.c: $(srcdir)/emulparams/elf64_sparc.sh \
413   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
414         ${GENSCRIPTS} elf64_sparc "$(tdir_elf64_sparc)"
415 eelf_i386.c: $(srcdir)/emulparams/elf_i386.sh \
416   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
417         ${GENSCRIPTS} elf_i386 "$(tdir_elf_i386)"
418 egld960.c: $(srcdir)/emulparams/gld960.sh \
419   $(srcdir)/emultempl/gld960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
420         ${GENSCRIPTS} gld960 "$(tdir_gld960)"
421 egld960coff.c: $(srcdir)/emulparams/gld960coff.sh \
422   $(srcdir)/emultempl/gld960c.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
423         ${GENSCRIPTS} gld960coff "$(tdir_gld960coff)"
424 ego32.c: $(srcdir)/emulparams/go32.sh \
425   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
426         ${GENSCRIPTS} go32 "$(tdir_go32)"
427 eh8300.c: $(srcdir)/emulparams/h8300.sh \
428   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS}
429         ${GENSCRIPTS} h8300 "$(tdir_h8300)"
430 eh8300h.c: $(srcdir)/emulparams/h8300h.sh \
431   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300h.sc ${GEN_DEPENDS}
432         ${GENSCRIPTS} h8300h "$(tdir_h8300h)"
433 # start-sanitize-h8s
434 eh8300s.c: $(srcdir)/emulparams/h8300s.sh \
435   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300s.sc ${GEN_DEPENDS}
436         ${GENSCRIPTS} h8300s "$(tdir_h8300s)"
437 # end-sanitize-h8s
438 eh8500.c: $(srcdir)/emulparams/h8500.sh \
439   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500.sc ${GEN_DEPENDS}
440         ${GENSCRIPTS} h8500 "$(tdir_h8500)"
441 eh8500b.c: $(srcdir)/emulparams/h8500b.sh \
442   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500b.sc ${GEN_DEPENDS}
443         ${GENSCRIPTS} h8500b "$(tdir_h8500b)"
444 eh8500c.c: $(srcdir)/emulparams/h8500c.sh \
445   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500c.sc ${GEN_DEPENDS}
446         ${GENSCRIPTS} h8500c "$(tdir_h8500c)"
447 eh8500m.c: $(srcdir)/emulparams/h8500m.sh \
448   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500m.sc ${GEN_DEPENDS}
449         ${GENSCRIPTS} h8500m "$(tdir_h8500m)"
450 eh8500s.c: $(srcdir)/emulparams/h8500s.sh \
451   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500s.sc ${GEN_DEPENDS}
452         ${GENSCRIPTS} h8500s "$(tdir_h8500s)"
453 ehp300bsd.c: $(srcdir)/emulparams/hp300bsd.sh \
454   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
455         ${GENSCRIPTS} hp300bsd "$(tdir_hp300bsd)"
456 ehp3hpux.c: $(srcdir)/emulparams/hp3hpux.sh \
457   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
458         ${GENSCRIPTS} hp3hpux "$(tdir_hp3hpux)"
459 ehppaelf.c: $(srcdir)/emulparams/hppaelf.sh \
460   $(srcdir)/emultempl/hppaelf.em $(srcdir)/scripttempl/hppaelf.sc ${GEN_DEPENDS}
461         ${GENSCRIPTS} hppaelf "$(tdir_hppaelf)"
462 ei386aout.c: $(srcdir)/emulparams/i386aout.sh \
463   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
464         ${GENSCRIPTS} i386aout "$(tdir_i386aout)"
465 ei386bsd.c: $(srcdir)/emulparams/i386bsd.sh \
466   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
467         ${GENSCRIPTS} i386bsd "$(tdir_i386bsd)"
468 ei386coff.c: $(srcdir)/emulparams/i386coff.sh \
469   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386coff.sc ${GEN_DEPENDS}
470         ${GENSCRIPTS} i386coff "$(tdir_i386coff)"
471 ei386go32.c: $(srcdir)/emulparams/i386go32.sh \
472   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386go32.sc ${GEN_DEPENDS}
473         ${GENSCRIPTS} i386go32 "$(tdir_i386go32)"
474 ei386linux.c: $(srcdir)/emulparams/i386linux.sh \
475   $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
476         ${GENSCRIPTS} i386linux "$(tdir_i386linux)"
477 ei386lynx.c: $(srcdir)/emulparams/i386lynx.sh \
478   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386lynx.sc ${GEN_DEPENDS}
479         ${GENSCRIPTS} i386lynx "$(tdir_i386lynx)"
480 ei386mach.c: $(srcdir)/emulparams/i386mach.sh \
481   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
482         ${GENSCRIPTS} i386mach "$(tdir_i386mach)"
483 ei386moss.c: $(srcdir)/emulparams/i386moss.sh \
484   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
485         ${GENSCRIPTS} i386moss "$(tdir_i386moss)"
486 ei386msdos.c: $(srcdir)/emulparams/i386msdos.sh \
487   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386msdos.sc ${GEN_DEPENDS}
488         ${GENSCRIPTS} i386msdos "$(tdir_i386msdos)"
489 ei386nbsd.c:    $(srcdir)/emulparams/i386nbsd.sh \
490   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
491         ${GENSCRIPTS} i386nbsd "$(tdir_i386nbsd)"
492 ei386nw.c:      $(srcdir)/emulparams/i386nw.sh \
493   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
494         ${GENSCRIPTS} i386nw "$(tdir_i386nw)"
495 ei386pe.c: $(srcdir)/emulparams/i386pe.sh \
496   $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
497         ${GENSCRIPTS} i386pe "$(tdir_i386pe)"
498 elnk960.c: $(srcdir)/emulparams/lnk960.sh \
499   $(srcdir)/emultempl/lnk960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
500         ${GENSCRIPTS} lnk960 "$(tdir_lnk960)"
501 em68k4knbsd.c:  $(srcdir)/emulparams/m68k4knbsd.sh \
502   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
503         ${GENSCRIPTS} m68k4knbsd "$(tdir_m68k4knbsd)"
504 em68kaout.c: $(srcdir)/emulparams/m68kaout.sh \
505   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
506         ${GENSCRIPTS} m68kaout "$(tdir_m68kaout)"
507 em68kaux.c: $(srcdir)/emulparams/m68kaux.sh \
508   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kaux.sc ${GEN_DEPENDS}
509         ${GENSCRIPTS} m68kaux "$(tdir_m68kaux)"
510 em68kcoff.c: $(srcdir)/emulparams/m68kcoff.sh \
511   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kcoff.sc ${GEN_DEPENDS}
512         ${GENSCRIPTS} m68kcoff "$(tdir_m68kcoff)"
513 em68kelf.c: $(srcdir)/emulparams/m68kelf.sh \
514   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
515         ${GENSCRIPTS} m68kelf "$(tdir_m68kelf)"
516 em68klinux.c: $(srcdir)/emulparams/m68klinux.sh \
517   $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
518         ${GENSCRIPTS} m68klinux "$(tdir_m68klinux)"
519 em68klynx.c: $(srcdir)/emulparams/m68klynx.sh \
520   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68klynx.sc ${GEN_DEPENDS}
521         ${GENSCRIPTS} m68klynx "$(tdir_m68klynx)"
522 em68knbsd.c:    $(srcdir)/emulparams/m68knbsd.sh \
523   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
524         ${GENSCRIPTS} m68knbsd "$(tdir_m68knbsd)"
525 em68kpsos.c:    $(srcdir)/emulparams/m68kpsos.sh \
526   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/psos.sc ${GEN_DEPENDS}
527         ${GENSCRIPTS} m68kpsos "$(tdir_m68kpsos)"
528 em88kbcs.c: $(srcdir)/emulparams/m88kbcs.sh \
529   $(srcdir)/emultempl/m88kbcs.em $(srcdir)/scripttempl/m88kbcs.sc ${GEN_DEPENDS}
530         ${GENSCRIPTS} m88kbcs "$(tdir_m88kbcs)"
531 emipsbig.c:  $(srcdir)/emulparams/mipsbig.sh \
532   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
533         ${GENSCRIPTS} mipsbig
534 emipsbsd.c: $(srcdir)/emulparams/mipsbsd.sh \
535   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mipsbsd.sc ${GEN_DEPENDS}
536         ${GENSCRIPTS} mipsbsd
537 emipsidt.c: $(srcdir)/emulparams/mipsidt.sh \
538   $(srcdir)/emultempl/mipsecoff.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
539         ${GENSCRIPTS} mipsidt "$(tdir_mipsidt)"
540 emipsidtl.c: $(srcdir)/emulparams/mipsidtl.sh \
541   $(srcdir)/emultempl/mipsecoff.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
542         ${GENSCRIPTS} mipsidtl "$(tdir_mipsidtl)"
543 emipslit.c:  $(srcdir)/emulparams/mipslit.sh \
544   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
545         ${GENSCRIPTS} mipslit "$(tdir_mipslit)"
546 enews.c: $(srcdir)/emulparams/news.sh \
547   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
548         ${GENSCRIPTS} news "$(tdir_news)"
549 ens32knbsd.c:   $(srcdir)/emulparams/ns32knbsd.sh \
550   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
551         ${GENSCRIPTS} ns32knbsd "$(tdir_ns32knbsd)"
552 epc532macha.c: $(srcdir)/emulparams/pc532macha.sh \
553   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
554         ${GENSCRIPTS} pc532macha "$(tdir_pc532macha)"
555 eppcmacos.c:    $(srcdir)/emulparams/ppcmacos.sh \
556   $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
557         ${GENSCRIPTS} ppcmacos "$(tdir_ppcmacos)"
558 eppcnw.c:       $(srcdir)/emulparams/ppcnw.sh \
559   $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
560         ${GENSCRIPTS} ppcnw "$(tdir_ppcnw)"
561 eppcpe.c: $(srcdir)/emulparams/ppcpe.sh \
562   $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/ppcpe.sc ${GEN_DEPENDS}
563         ${GENSCRIPTS} ppcpe "$(tdir_ppcpe)"
564 eriscix.c: $(srcdir)/emulparams/riscix.sh \
565   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
566         ${GENSCRIPTS} riscix "$(tdir_riscix)"
567 esa29200.c: $(srcdir)/emulparams/sa29200.sh \
568   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sa29200.sc ${GEN_DEPENDS}
569         ${GENSCRIPTS} sa29200 "$(tdir_sa29200)"
570 esh.c: $(srcdir)/emulparams/sh.sh \
571   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
572         ${GENSCRIPTS} sh "$(tdir_sh)"
573 eshl.c: $(srcdir)/emulparams/shl.sh \
574   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
575         ${GENSCRIPTS} shl "$(tdir_shl)"
576 esparcaout.c: $(srcdir)/emulparams/sparcaout.sh \
577   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
578         ${GENSCRIPTS} sparcaout "$(tdir_sparcaout)"
579 esparclynx.c: $(srcdir)/emulparams/sparclynx.sh \
580   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparclynx.sc ${GEN_DEPENDS}
581         ${GENSCRIPTS} sparclynx "$(tdir_sparclynx)"
582 esparcnbsd.c:   $(srcdir)/emulparams/sparcnbsd.sh \
583   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
584         ${GENSCRIPTS} sparcnbsd "$(tdir_sparcnbsd)"
585 est2000.c: $(srcdir)/emulparams/st2000.sh \
586   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS}
587         ${GENSCRIPTS} st2000 "$(tdir_st2000)"
588 esun3.c: $(srcdir)/emulparams/sun3.sh \
589   $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
590         ${GENSCRIPTS} sun3 "$(tdir_sun3)"
591 esun4.c: $(srcdir)/emulparams/sun4.sh \
592   $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
593         ${GENSCRIPTS} sun4 "$(tdir_sun4)"
594 evanilla.c: $(srcdir)/emulparams/vanilla.sh \
595   $(srcdir)/emultempl/vanilla.em $(srcdir)/scripttempl/vanilla.sc ${GEN_DEPENDS}
596         ${GENSCRIPTS} vanilla "$(tdir_vanilla)"
597 evax.c: $(srcdir)/emulparams/vax.sh \
598   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
599         ${GENSCRIPTS} vax "$(tdir_vax)"
600 evsta.c: $(srcdir)/emulparams/vsta.sh \
601   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
602         ${GENSCRIPTS} vsta "$(tdir_vsta)"
603 ew65.c: $(srcdir)/emulparams/w65.sh \
604   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/w65.sc ${GEN_DEPENDS}
605         ${GENSCRIPTS} w65 "$(tdir_w65)"
606 ez8001.c: $(srcdir)/emulparams/z8001.sh \
607   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
608         ${GENSCRIPTS} z8001 "$(tdir_z8001)"
609 ez8002.c: $(srcdir)/emulparams/z8002.sh \
610   $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
611         ${GENSCRIPTS} z8002 "$(tdir_z8002)"
612
613 $(LD_PROG): $(OFILES) $(BFDDEP) $(LIBIBERTY)
614         $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(LD_PROG) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(EXTRALIBS)
615
616 # The generated emulation files mostly have the same dependencies.
617 $(EMULATION_OFILES): ../bfd/bfd.h sysdep.h config.h $(INCDIR)/bfdlink.h \
618   ld.h ldmain.h ldemul.h ldfile.h ldmisc.h ldexp.h ldlang.h \
619   ldctor.h ldexp.h ldlang.h ldgram.h
620
621 # These targets are for the dejagnu testsuites. The file site.exp 
622 # contains global variables that all the testsuites will use.
623
624 site.exp: ./config.status Makefile
625         @echo "Making a new config file..."
626         @rm -f ./tmp?
627         @touch site.exp
628         @mv site.exp site.bak
629         @echo "## variables are automatically generated by make ##" > ./tmp0
630         @echo "# Do not edit here. If you wish to override these" >> ./tmp0
631         @echo "# values, add them to the last section" >> ./tmp0
632         @echo "# HOST AND TARGET INFO" >> ./tmp0
633         @echo "set host_os @host_os@" >> ./tmp0
634         @echo "set host_alias @host_alias@" >> ./tmp0
635         @echo "set host_cpu @host_cpu@" >> ./tmp0
636         @echo "set host_vendor @host_vendor@" >> ./tmp0
637         @echo "set target_os @target_os@" >> ./tmp0
638         @echo "set target_alias @target_alias@" >> ./tmp0
639         @echo "set target_cpu @target_cpu@" >> ./tmp0
640         @echo "set target_vendor @target_vendor@" >> ./tmp0
641         @echo "set host_triplet @host@" >> ./tmp0
642         @echo "set target_triplet @target@" >> ./tmp0
643         @echo "# DIRECTORY INFO" >> ./tmp0
644         @echo "set objdir `pwd`" >> ./tmp0
645         @echo "" >> ./tmp0      
646         @echo "# LD DEPENDENCIES" >> ./tmp0     
647         @echo "set OFILES \"$(OFILES)\"" >> ./tmp0
648         @echo "set BFDLIB \"$(BFDLIB)\"" >> ./tmp0
649         @echo "set LIBIBERTY \"$(LIBIBERTY)\"" >> ./tmp0
650         @echo "set HOSTING_EMU \"$(HOSTING_EMU)\"" >> ./tmp0
651         @echo "set HOSTING_CRT0 \"$(HOSTING_CRT0)\"" >> ./tmp0
652         @echo "set HOSTING_LIBS \"$(HOSTING_LIBS)\"" >> ./tmp0
653         @echo "" >> ./tmp0      
654         @echo "## Variables generated by configure. Do Not Edit ##" >> ./tmp0
655         @cat ./tmp0 > site.exp
656         @cat site.bak | sed \
657                         -e '1,/^## Variables generated by.*##/ d' >> site.exp
658         -@rm -f ./tmp?
659
660 check: site.exp
661         r=`pwd`; export r; \
662         srcroot=`cd ${srcdir}; pwd` ; export srcroot ; \
663         EXPECT=${EXPECT} ; export EXPECT ; \
664         $(RPATH_ENVVAR)=$$r/../bfd:$$r/../opcodes:$$$(RPATH_ENVVAR); \
665         export $(RPATH_ENVVAR); \
666         if [ -f $$r/../expect/expect ] ; then  \
667            TCL_LIBRARY=$${srcroot}/../tcl/library ; \
668            export TCL_LIBRARY ; \
669         else true ; fi ; \
670         $(RUNTEST) --tool ld --srcdir $(srcdir)/testsuite $(RUNTESTFLAGS) \
671           CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)" \
672           CXX="$(CXX_FOR_TARGET)" CXXFLAGS="$(CXXFLAGS)" \
673           CC_FOR_HOST="$(CC)" CFLAGS_FOR_HOST="$(CFLAGS)"
674
675 installcheck:
676 .PHONY: check installcheck
677
678 # Rules for testing by relinking ld itself.
679 # A similar test is in the testsuite.  This target is for ease of use
680 # when porting ld.
681
682 ld-partial.o: ld.new
683         ./ld.new $(HOSTING_EMU) -o ld-partial.o -r $(OFILES)
684 ld1: ld-partial.o
685         ./ld.new $(HOSTING_EMU) -o ld1 $(HOSTING_CRT0) ld-partial.o $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
686
687 ld1-full: ld.new
688         ./ld.new $(HOSTING_EMU) -o ld1-full $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
689
690 ld2: ld1
691         ./ld1 $(HOSTING_EMU) -o ld2 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
692
693 ld3: ld2
694         ./ld2 $(HOSTING_EMU) -o ld3 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
695
696 bootstrap: ld3
697         cmp ld2 ld3
698
699 .PHONY: bootstrap
700
701 # A test program for C++ constructors and destructors.
702 # This test is now in the testsuite.
703 #
704 #cdtest: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
705 #       ./ld.new $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \
706 #         cdtest-main.o cdtest-bar.o cdtest-foo.o $(HOSTING_LIBS)
707 #
708 #cdtest.out: cdtest
709 #       ./cdtest > cdtest.tmp
710 #       mv cdtest.tmp cdtest.out
711 #
712 #cdtest-ur.o: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
713 #       ./ld.new $(HOSTING_EMU) -o cdtest-ur.o -Ur cdtest-main.o \
714 #         cdtest-bar.o cdtest-foo.o
715 #
716 #cdtest-ur: cdtest-ur.o
717 #       ./ld.new $(HOSTING_EMU) -o cdtest-ur $(HOSTING_CRT0) cdtest-ur.o \
718 #         $(HOSTING_LIBS)
719 #
720 #cdtest-ur.out: cdtest-ur
721 #       ./cdtest-ur > cdtest-ur.tmp
722 #       mv cdtest-ur.tmp cdtest-ur.out
723 #
724 #check-cdtest: cdtest.out cdtest-ur.out $(srcdir)/cdtest.exp
725 #       diff $(srcdir)/cdtest.exp cdtest.out
726 #       diff $(srcdir)/cdtest.exp cdtest-ur.out
727 #
728 #.PHONY: check-cdtest
729
730 # END OF CHECK TARGETS
731
732 # DOCUMENTATION TARGETS
733 # Manual configuration file; not usually attached to normal configuration,
734 # because almost all configs use "gen" version of manual.
735 #  Set DOCVER above to change.
736 configdoc.texi: ${DOCVER}-doc.texi
737         ln -s ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi || \
738         ln ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi || \
739         cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi
740
741 # TeX output
742 dvi: ld.dvi
743 ld.dvi: $(srcdir)/ld.texinfo configdoc.texi $(BFDDIR)/doc/bfdsumm.texi
744         TEXINPUTS=$(BFDDIR)/doc:$$TEXINPUTS $(TEXI2DVI) $(srcdir)/ld.texinfo
745
746 ldint.dvi: $(srcdir)/ldint.texinfo
747         $(TEXI2DVI) $(srcdir)/ldint.texinfo
748
749 # info file for online browsing
750 ld.info: $(srcdir)/ld.texinfo configdoc.texi $(BFDDIR)/doc/bfdsumm.texi
751         $(MAKEINFO) -I$(BFDDIR)/doc -o ld.info $(srcdir)/ld.texinfo
752
753 ldint.info: $(srcdir)/ldint.texinfo
754         $(MAKEINFO) -o ldint.info $(srcdir)/ldint.texinfo
755
756 .PHONY: dvi
757
758 #separate targets for "ms", "me", and "mm" forms of roff doc
759 # Try to use a recent texi2roff.  v2 was put on prep in jan91.
760 # If you want an index, see texi2roff doc for postprocessing 
761 # and add -i to texi2roff invocations below.
762 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
763 #    correspondint -e lines when later texi2roff's are current)
764 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
765 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
766 # + @   (that's at-BLANK) not recognized by texi2roff, turned into blank
767 # + @alphaenumerate is ridiculously new, turned into @enumerate
768
769 ld.ms: $(srcdir)/ld.texinfo
770         sed -e '/\\input texinfo/d' \
771                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
772                 -e '/^@ifinfo/,/^@end ifinfo/d' \
773                 -e '/^@c/d' \
774                 -e 's/{.*,,/{/' \
775                 -e 's/@ / /g' \
776                 -e 's/^@alphaenumerate/@enumerate/g' \
777                 -e 's/^@end alphaenumerate/@end enumerate/g' \
778                 $(srcdir)/ld.texinfo | \
779         $(TEXI2ROFF) $(TEXI2OPT) -ms | \
780         sed -e 's/---/\\(em/g' \
781                 >>ld.ms 
782
783 # index for roff output
784 ld-index.ms: ld.ms
785         $(ROFF) -ms ld.ms 2>&1 1>/dev/null | \
786                 sed -e '/: warning:/d' | \
787                 texi2index >ld-index.ms
788
789 # roff output (-mm)
790 ld.mm: $(srcdir)/ld.texinfo
791         sed -e '/\\input texinfo/d' \
792                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
793                 -e '/^@ifinfo/,/^@end ifinfo/d' \
794                 -e '/^@c/d' \
795                 -e 's/{.*,,/{/' \
796                 -e '/@noindent/d' \
797                 -e 's/@ / /g' \
798                 -e 's/^@alphaenumerate/@enumerate/g' \
799                 -e 's/^@end alphaenumerate/@end enumerate/g' \
800                 $(srcdir)/ld.texinfo | \
801         $(TEXI2ROFF) $(TEXI2OPT) -mm | \
802         sed -e 's/---/\\(em/g' \
803         >ld.mm 
804
805 # index for roff output
806 ld-index.mm: ld.mm
807         $(ROFF) -mm ld.mm 2>&1 1>/dev/null | \
808                 sed -e '/: warning:/d' | \
809                 texi2index >ld-index.mm
810
811 # roff output (-me)
812 ld.me: $(srcdir)/ld.texinfo
813         sed -e '/\\input texinfo/d' \
814                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
815                 -e '/^@ifinfo/,/^@end ifinfo/d' \
816                 -e '/^@c/d' \
817                 -e 's/{.*,,/{/' \
818                 -e 's/@ / /g' \
819                 -e 's/^@alphaenumerate/@enumerate/g' \
820                 -e 's/^@end alphaenumerate/@end enumerate/g' \
821                 $(srcdir)/ld.texinfo | \
822         $(TEXI2ROFF) $(TEXI2OPT) -me | \
823         sed -e 's/---/\\(em/g' \
824                 >>ld.me 
825
826 # index for roff output
827 ld-index.me: ld.me
828         $(ROFF) -me ld.me 2>&1 1>/dev/null | \
829                 sed -e '/: warning:/d' | \
830                 texi2index >ld-index.me
831
832 stage1: force
833         -mkdir stage1
834         -mv -f $(STAGESTUFF) $(LD_PROG) stage1
835         -(cd stage1 ; ln -s $(LD_PROG) ld)
836
837 stage2: force
838         -mkdir stage2
839         -mv -f $(STAGESTUFF) $(LD_PROG) stage2
840         -(cd stage2 ; ln -s $(LD_PROG) ld)
841
842 stage3: force
843         -mkdir stage3
844         -mv -f $(STAGESTUFF) $(LD_PROG) stage3
845         -(cd stage3 ; ln -s $(LD_PROG) ld)
846
847 against = stage2
848
849 comparison: force
850         for i in $(STAGESTUFF) $(LD_PROG) ; do cmp $$i $(against)/$$i ; done
851
852 de-stage1: force
853         -(cd stage1 ; mv -f * ..)
854         -rm ld
855         -rmdir stage1
856
857 de-stage2: force
858         -(cd stage2 ; mv -f * ..)
859         -rm ld
860         -rmdir stage2
861
862 de-stage3: force
863         -(cd stage3 ; mv -f * ..)
864         -rm ld
865         -rmdir stage3
866
867 .PHONY: stage1 stage2 stage3 comparison de-stage1 de-stage2 de-stage3
868
869 # Stuff that should be included in a distribution:
870 LDDISTSTUFF = ldgram.c ldgram.h ldlex.c
871 diststuff: $(LDDISTSTUFF) info
872
873 mostlyclean:
874         -rm -f $(STAGESTUFF) ld.?? ld.??? ldlex.[qp] config.log
875         -rm -f ld ld1 ld2 ld3 *.o y.output cdtest cdtest.out cdtest.tmp
876         -rm -f cdtest-ur cdtest-ur.out cdtest-ur.tmp crtbegin.o crtend.o
877         -rm -f ldemul-list.h
878         -rm -fr tmpdir
879 clean: mostlyclean
880         -rm -f $(LD_PROG) configdoc.texi
881 distclean: clean
882         -rm -f Makefile config.status TAGS site.exp site.bak config.cache
883         -rm -f config.h stamp-h
884         -rm -rf ldscripts
885 maintainer-clean realclean: clean distclean
886         @echo "This command is intended for maintainers to use;"
887         @echo "it deletes files that may require special tools to rebuild."
888         -rm -f $(GENERATED_CFILES) $(GENERATED_HFILES)
889         -rm -f $(LDDISTSTUFF) *.info*
890
891 .PHONY: diststuff mostlyclean clean distclean realclean
892
893 lintlog:$(LINTSOURCES) Makefile
894         $(LINT) -abhxzn  $(LINTFLAGS)  $(LINTSOURCES) \
895 | grep -v "pointer casts may be troublesome" \
896 | grep -v "possible pointer alignment problem" \
897 | grep -v "ignore" \
898 | grep -v "conversion from long may lose accuracy" \
899 | grep -v "warning: constant argument to NOT" \
900 | grep -v "enumeration type clash, operator CAST" \
901 | grep -v "warning: constant in conditional context"\
902 | grep -v "archive\.c"
903
904
905 TAGS:
906         etags -t $(srcdir)/*.[chly] *.[chly]
907
908
909 install: 
910         $(INSTALL_XFORM) ld.new $(bindir)/ld
911         $(INSTALL_XFORM1) $(srcdir)/ld.1 $(man1dir)/ld.1
912         for f in ldscripts/*; do \
913           $(INSTALL_DATA) $$f $(scriptdir)/$$f ; \
914         done
915         test -d $(tooldir) || mkdir $(tooldir)
916         test -d $(tooldir)/bin || mkdir $(tooldir)/bin
917         -n=`echo ld | sed '$(program_transform_name)'`; \
918           rm -f $(tooldir)/bin/ld; \
919           ln $(bindir)/$$n $(tooldir)/bin/ld >/dev/null 2>/dev/null \
920            || $(INSTALL_PROGRAM) ld.new $(tooldir)/bin/ld
921
922 install-info: ld.info
923         if [ -r ld.info ]; then \
924           dir=. ; \
925         else \
926           dir=$(srcdir) ; \
927         fi ; \
928         for i in `cd $$dir ; echo ld.info*` ; do \
929                 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
930         done
931
932 clean-info:
933         -rm -rf *.info*
934
935 .PHONY: install install-info clean-info
936
937 # Targets to rebuild dependencies in this Makefile.
938 # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
939 .dep: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
940         rm -f .dep1
941         $(MAKE) DEP=$(DEP) .dep1
942         sed -f dep.sed <.dep1 >.dep
943
944 # This rule really wants a mkdep that runs "gcc -MM".
945 .dep1: $(CFILES) $(GENERATED_CFILES)
946         rm -f .dep2
947         echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
948         $(DEP) -f .dep2 $(ALL_CFLAGS) $?
949         $(srcdir)/../move-if-change .dep2 .dep1
950
951 dep.sed: dep-in.sed config.status
952         sed <$(srcdir)/dep-in.sed >dep.sed      \
953                 -e 's!@INCDIR@!$(INCDIR)!'      \
954                 -e 's!@SRCDIR@!$(srcdir)!'
955
956 dep: .dep
957         sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
958         cat .dep >> tmp-Makefile
959         $(srcdir)/../move-if-change tmp-Makefile Makefile
960
961 dep-in: .dep
962         sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
963         cat .dep >> tmp-Makefile.in
964         $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
965
966 .PHONY: dep dep-in
967
968 # Dummy target to force execution of dependent targets.
969 #
970 force:
971
972 .PHONY: force
973
974 Makefile: Makefile.in config.status
975         CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
976
977 config.h: stamp-h ; @true
978 stamp-h: config.in config.status
979         CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
980
981 config.status: configure configure.host configure.tgt
982         $(SHELL) ./config.status --recheck
983
984 # What appears below is generated by a hacked mkdep using gcc -MM.
985
986 # DO NOT DELETE THIS LINE -- mkdep uses it.
987 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
988
989 ldctor.o: ldctor.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
990   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
991   $(INCDIR)/bfdlink.h ld.h ldexp.h ldlang.h ldmisc.h \
992   ldgram.h ldmain.h ldctor.h
993 ldemul.o: ldemul.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
994   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
995   ld.h ldemul.h ldmisc.h ldexp.h ldlang.h ldfile.h ldmain.h \
996   ldemul-list.h
997 ldexp.o: ldexp.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
998   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
999   $(INCDIR)/bfdlink.h ld.h ldmain.h ldmisc.h ldexp.h \
1000   ldgram.h ldlang.h
1001 ldfile.o: ldfile.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1002   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1003   $(INCDIR)/bfdlink.h ld.h ldmisc.h ldexp.h ldlang.h \
1004   ldfile.h ldmain.h ldgram.h ldlex.h ldemul.h
1005 ldlang.o: ldlang.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1006   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1007   $(INCDIR)/libiberty.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
1008   ldgram.h ldexp.h ldlang.h ldemul.h ldlex.h ldmisc.h \
1009   ldctor.h ldfile.h
1010 ldmain.o: ldmain.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1011   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1012   $(INCDIR)/libiberty.h $(INCDIR)/progress.h $(INCDIR)/bfdlink.h \
1013   ld.h ldmain.h ldmisc.h ldwrite.h ldgram.h ldexp.h ldlang.h \
1014   ldemul.h ldlex.h ldfile.h ldctor.h
1015 ldmisc.o: ldmisc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1016   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1017   $(INCDIR)/libiberty.h $(INCDIR)/demangle.h ld.h ldmisc.h \
1018   ldexp.h ldlang.h ldgram.h ldlex.h ldmain.h ldfile.h
1019 ldver.o: ldver.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1020   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1021   ld.h ldver.h ldemul.h ldmain.h
1022 ldwrite.o: ldwrite.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1023   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1024   $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h ld.h ldexp.h \
1025   ldlang.h ldwrite.h ldmisc.h ldgram.h ldmain.h
1026 lexsup.o: lexsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1027   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1028   $(INCDIR)/getopt.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
1029   ldmisc.h ldexp.h ldlang.h ldgram.h ldlex.h ldfile.h \
1030   ldver.h ldemul.h
1031 mri.o: mri.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
1032   sysdep.h config.h $(INCDIR)/fopen-same.h ld.h ldexp.h \
1033   ldlang.h ldmisc.h mri.h ldgram.h
1034 ldcref.o: ldcref.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1035   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1036   $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h ld.h ldmain.h \
1037   ldmisc.h
1038 ldgram.o: ldgram.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1039   $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1040   $(INCDIR)/bfdlink.h ld.h ldexp.h ldver.h ldlang.h ldemul.h \
1041   ldfile.h ldmisc.h ldmain.h mri.h ldlex.h
1042 ldlex.o: ldlex.c ../bfd/bfd.h $(INCDIR)/obstack.h sysdep.h \
1043   config.h $(INCDIR)/fopen-same.h ld.h ldgram.h ldmisc.h \
1044   ldexp.h ldlang.h ldfile.h ldlex.h ldmain.h
1045
1046 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY