1 # Makefile for the GNU linker ld (version 2)
2 # Copyright (C) 1989-1992 Free Software Foundation, Inc.
4 # This file is part of GNU ld..
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 program_transform_name =
26 exec_prefix = $(prefix)
27 bindir = $(exec_prefix)/bin
28 libdir = $(exec_prefix)/lib
29 tooldir = $(exec_prefix)/$(target_alias)
30 datadir = $(prefix)/lib
31 mandir = $(prefix)/man
32 man1dir = $(mandir)/man1
33 man2dir = $(mandir)/man2
34 man3dir = $(mandir)/man3
35 man4dir = $(mandir)/man4
36 man5dir = $(mandir)/man5
37 man6dir = $(mandir)/man6
38 man7dir = $(mandir)/man7
39 man8dir = $(mandir)/man8
40 man9dir = $(mandir)/man9
41 infodir = $(prefix)/info
42 includedir = $(prefix)/include
43 docdir = $(datadir)/doc
44 # We put the scripts in the directory $(scriptdir)/ldscripts.
45 # We can't put the scripts in $(datadir) because the SEARCH_DIR
46 # directives need to be different for native and cross linkers.
47 scriptdir = $(tooldir)/lib
49 gcclibdir = $(libdir)/gcc/$(target_alias)
53 INSTALL = `cd $(srcdir); pwd`/../install.sh -c
54 INSTALL_PROGRAM = $(INSTALL)
55 INSTALL_DATA = $(INSTALL)
56 INSTALL_XFORM = $(INSTALL) -t='$(program_transform_name)'
57 INSTALL_XFORM1 = $(INSTALL_XFORM) -b=.1
66 BISON = `if [ -f ../bison/bison ] ; then echo ../bison/bison -y -L../bison/bison ; else echo bison -y ; fi`
67 LEX = `if [ -f ../flex/flex ] ; then echo ../flex/flex ; else echo flex ; fi`
69 #version=/`./../gcc/gcc -dumpversion`
72 # Seach path to override the default search path for -lfoo libraries.
73 # If LIB_PATH is empty, the ones in the script (if any) are left alone.
74 # (The default is usually /lib:usr/lib:/usr/local/lib, unless building
75 # a cross-linker, in which case the default is empty. See genscripts.sh.)
76 # Otherwise, they are replaced with the ones given in LIB_PATH,
77 # which may have the form: LIB_PATH=/lib:/usr/local/lib
81 INCLUDE = $(srcdir)/../include
82 INCLUDES = -I. -I$(srcdir) -I$(srcdir)/../bfd -I../bfd -I$(INCLUDE)
84 # What version of the manual to build
87 # Where to find texinfo.tex to format docn with TeX
88 TEXIDIR = $(srcdir)/../texinfo/fsf
90 # Whether to get roff to put indexing entries on stderr
92 # You neeed this to generate ld-index.ms (or .mm or .me)
97 # Which roff program to use to generate index for texi2roff'd doc
100 #stuff for self hosting (can be overridden in config file).
101 HOSTING_CRT0=/lib/crt0.o
102 HOSTING_LIBS=`if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else gcc -print-libgcc-file-name; fi` -lc
103 HOSTING_EMU=-m $(EMUL)
105 C++ = g++ -fgnu-linker
109 ### Host, target, and site specific Makefile fragments come in here.
112 LINTFLAGS = $(INCLUDES) $(EXTRA_DEF)
114 # The .cc suffix is used by `make check'.
116 .SUFFIXES: .y $(SUFFIXES) .cc
118 # Suppress smart makes who think they know how to automake Yacc files
122 $(C++) -c -I$(srcdir) $(CFLAGS) $<
125 $(CC) -c $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $(CFLAGS) $<
127 # go directly to ld.new in case this ld isn't capable of
128 # linking native object on this host. It can be renamed on
133 BFDLIB=./../bfd/libbfd.a
134 LIBIBERTY=./../libiberty/libiberty.a
136 ALL_EMULATIONS=em_lnk960.o em_sun3.o em_i386aout.o em_go32.o \
137 em_m88kbcs.o em_a29k.o em_news.o em_hp300bsd.o em_hp3hpux.o \
138 em_h8300.o em_ebmon29k.o em_sun4.o em_gld960.o \
139 em_m68kcoff.o em_st2000.o em_sa29200.o \
140 em_vanilla.o em_i386coff.o em_z8ksim.o em_mipslit.o em_i386bsd.o \
141 em_mipsbig.o em_mipsbsd.o em_mipsidt.o em_vax.o em_h8500.o \
142 em_hppaosf.o em_mipsidtl.o em_sh.o \
145 EMULATION_OFILES=${ALL_EMULATIONS}
147 OFILES= ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o ldindr.o \
148 ldwarn.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldsym.o \
149 ldfile.o relax.o lderror.o ${EMULATION_OFILES}
151 HEADERS=config.h ldmain.h ldmain.h ldwarn.h ldmisc.h ldindr.h \
152 ldsym.h ldctor.h ldlang.h ldexp.h \
153 ldlex.h ldwrite.h ldver.h ldemul.h ldfile.h ldgram.h ld.h
157 LDCSOURCES=ldlang.c lexsup.c ldctor.c mri.c ldindr.c ldmain.c ldwrite.c ldwarn.c ldlnk960.c \
158 em_gld.c em_sun3.c em_go32.c em_m88k.c em_ebmon29k.c em_hppaosf.c \
159 ldgld960.c ldemul.c ldver.c ldmisc.c ldexp.c ldsym.c ldfile.c \
162 GENERATED_SOURCES=ldgram.c ldlex.c em_*.c ldemul-list.h
163 GENERATED_HEADERS=ldgram.h ldemul-list.h
165 LDSOURCES=$(LDCSOURCES) ldgram.y ldlex.l ldgram.h
167 BFDSOURCES=../../bfd/common/*.c
169 SOURCES= $(LDSOURCES) $(BFDSOURCES)
170 LINTSOURCES= $(LDCSOURCES) $(BFDSOURCES) $(GENERATED_SOURCES)
172 STAGESTUFF = ldscripts/* $(GENERATED_SOURCES) $(GENERATED_HEADERS) $(OFILES)
178 ldgram.h ldgram.c: ldgram.y
179 $(BISON) $(BISONFLAGS) -d $(srcdir)/ldgram.y
180 mv -f y.tab.c ldgram.c
181 mv -f y.tab.h ldgram.h
183 DEF_EMUL = ` if [ -z "$(EMUL)" ] ; then \
184 echo "you must set a default emulation" 1>&2 ; \
187 echo -DDEFAULT_EMULATION='"$(EMUL)"' ; \
191 $(CC) -c $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $(DEF_EMUL) -DSCRIPTDIR='"$(scriptdir)"' $(CFLAGS) $<
194 (echo "/* This file is automatically generated. DO NOT EDIT! */";\
195 for f in `echo " " ${EMULATION_OFILES} "" \
196 | sed -e 's/em_/ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
197 echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \
200 echo "#define EMULATION_LIST \\";\
201 for f in `echo " " ${EMULATION_OFILES} "" \
202 | sed -e 's/em_/ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
203 echo " &ld_$${f}_emulation, \\"; \
205 echo " 0") >ldemul-list.h
207 ldemul.o: ldemul-list.h
209 ldlex.c: ldlex.l ldgram.h
210 $(LEX) -I -Cem $(srcdir)/ldlex.l
213 # These all start with em_ so 'make clean' can find them.
215 GENSCRIPTS=sh $(srcdir)/genscripts.sh ${srcdir} ${libdir} ${host_alias} ${target_alias}
216 GEN_DEPENDS=$(srcdir)/genscripts.sh
218 em_sun4.c: $(srcdir)/emulparams/sun4.sh \
219 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
220 ${GENSCRIPTS} sun4.sh
221 em_sun3.c: $(srcdir)/emulparams/sun3.sh \
222 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
223 ${GENSCRIPTS} sun3.sh
224 em_go32.c: $(srcdir)/emulparams/go32.sh \
225 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
226 ${GENSCRIPTS} go32.sh
227 em_news.c: $(srcdir)/emulparams/news.sh \
228 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
229 ${GENSCRIPTS} news.sh
230 em_vax.c: $(srcdir)/emulparams/vax.sh \
231 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
233 em_hp300bsd.c: $(srcdir)/emulparams/hp300bsd.sh \
234 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
235 ${GENSCRIPTS} hp300bsd.sh
236 em_hp3hpux.c: $(srcdir)/emulparams/hp3hpux.sh \
237 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
238 ${GENSCRIPTS} hp3hpux.sh
239 em_hppaosf.c: $(srcdir)/emulparams/hppaosf.sh \
240 $(srcdir)/emultempl/hppaosf.em $(srcdir)/scripttempl/hppaosf.sc ${GEN_DEPENDS}
241 ${GENSCRIPTS} hppaosf.sh
242 em_i386aout.c: $(srcdir)/emulparams/i386aout.sh \
243 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
244 ${GENSCRIPTS} i386aout.sh
245 em_ebmon29k.c: $(srcdir)/emulparams/ebmon29k.sh \
246 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/ebmon29k.sc ${GEN_DEPENDS}
247 ${GENSCRIPTS} ebmon29k.sh
248 em_sa29200.c: $(srcdir)/emulparams/sa29200.sh \
249 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sa29200.sc ${GEN_DEPENDS}
250 ${GENSCRIPTS} sa29200.sh
251 em_a29k.c: $(srcdir)/emulparams/a29k.sh \
252 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/a29k.sc ${GEN_DEPENDS}
253 ${GENSCRIPTS} a29k.sh
254 em_m88kbcs.c: $(srcdir)/emulparams/m88kbcs.sh \
255 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS}
256 ${GENSCRIPTS} m88kbcs.sh
257 em_h8300.c: $(srcdir)/emulparams/h8300.sh \
258 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS}
259 ${GENSCRIPTS} h8300.sh
260 em_h8500.c: $(srcdir)/emulparams/h8500.sh \
261 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500.sc ${GEN_DEPENDS}
262 ${GENSCRIPTS} h8500.sh
263 em_sh.c: $(srcdir)/emulparams/sh.sh \
264 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
266 em_st2000.c: $(srcdir)/emulparams/st2000.sh \
267 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS}
268 ${GENSCRIPTS} st2000.sh
269 em_z8ksim.c: $(srcdir)/emulparams/z8ksim.sh \
270 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8ksim.sc ${GEN_DEPENDS}
271 ${GENSCRIPTS} z8ksim.sh
272 em_vanilla.c: $(srcdir)/emulparams/vanilla.sh \
273 $(srcdir)/emultempl/vanilla.em $(srcdir)/scripttempl/vanilla.sc ${GEN_DEPENDS}
274 ${GENSCRIPTS} vanilla.sh
275 em_lnk960.c: $(srcdir)/emulparams/lnk960.sh \
276 $(srcdir)/emultempl/lnk960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
277 ${GENSCRIPTS} lnk960.sh
278 em_gld960.c: $(srcdir)/emulparams/gld960.sh \
279 $(srcdir)/emultempl/gld960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
280 ${GENSCRIPTS} gld960.sh
281 em_m68kcoff.c: $(srcdir)/emulparams/m68kcoff.sh \
282 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kcoff.sc ${GEN_DEPENDS}
283 ${GENSCRIPTS} m68kcoff.sh
284 em_i386coff.c: $(srcdir)/emulparams/i386coff.sh \
285 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386coff.sc ${GEN_DEPENDS}
286 ${GENSCRIPTS} i386coff.sh
287 em_mipslit.c: $(srcdir)/emulparams/mipslit.sh \
288 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
289 ${GENSCRIPTS} mipslit.sh
290 em_i386bsd.c: $(srcdir)/emulparams/i386bsd.sh \
291 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
292 ${GENSCRIPTS} i386bsd.sh
293 em_mipsbig.c: $(srcdir)/emulparams/mipsbig.sh \
294 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
295 ${GENSCRIPTS} mipsbig.sh
296 em_mipsbsd.c: $(srcdir)/emulparams/mipsbsd.sh \
297 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
298 ${GENSCRIPTS} mipsbsd.sh
299 em_mipsidt.c: $(srcdir)/emulparams/mipsidt.sh \
300 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
301 ${GENSCRIPTS} mipsidt.sh
302 em_mipsidtl.c: $(srcdir)/emulparams/mipsidtl.sh \
303 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
304 ${GENSCRIPTS} mipsidtl.sh
306 $(LD_PROG): $(OFILES) $(BFDLIB) $(LIBIBERTY)
307 $(CC) $(INCLUDES) $(HDEFINES) $(TDEFINES) $(CDEFINES) $(LDFLAGS) -o $(LD_PROG) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(LOADLIBES) $(CFLAGS)
312 check: bootstrap check-cdtest
315 # Rules for testing by relinking ld itself.
318 ./ld.new $(HOSTING_EMU) -o ld-partial.o -r $(OFILES)
320 ./ld.new $(HOSTING_EMU) -o ld1 $(HOSTING_CRT0) ld-partial.o $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
323 ./ld.new $(HOSTING_EMU) -o ld1-full $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
326 ./ld1 $(HOSTING_EMU) -o ld2 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
329 ./ld2 $(HOSTING_EMU) -o ld3 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
334 # A test program for C++ constructors and destructors.
336 cdtest: cdtest-main.o cdtest-func.o cdtest-foo.o ld.new
337 ./ld.new $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \
338 cdtest-main.o cdtest-func.o cdtest-foo.o $(HOSTING_LIBS)
340 check-cdtest: cdtest $(srcdir)/cdtest.exp
342 diff $(srcdir)/cdtest.exp cdtest.out
344 # DOCUMENTATION TARGETS
345 # Manual configuration file; not usually attached to normal configuration,
346 # because almost all configs use "gen" version of manual.
347 # Set DOCVER above to change.
348 configdoc.texi: ${DOCVER}-doc.texi
349 ln -s ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi || \
350 ln ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi || \
351 cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi
355 ld.dvi: $(srcdir)/ld.texinfo
356 $(TEXI2DVI) $(srcdir)/ld.texinfo
358 ldint.dvi: $(srcdir)/ldint.texinfo
359 $(TEXI2DVI) $(srcdir)/ldint.texinfo
361 # info file for online browsing
362 ld.info: $(srcdir)/ld.texinfo configdoc.texi
363 $(MAKEINFO) -I$(srcdir)/../bfd/doc -o ld.info $(srcdir)/ld.texinfo
365 ldint.info: $(srcdir)/ldint.texinfo
366 $(MAKEINFO) -o ldint.info $(srcdir)/ldint.texinfo
368 #separate targets for "ms", "me", and "mm" forms of roff doc
369 # Try to use a recent texi2roff. v2 was put on prep in jan91.
370 # If you want an index, see texi2roff doc for postprocessing
371 # and add -i to texi2roff invocations below.
372 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
373 # correspondint -e lines when later texi2roff's are current)
374 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
375 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
376 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
377 # + @alphaenumerate is ridiculously new, turned into @enumerate
379 ld.ms: $(srcdir)/ld.texinfo
380 sed -e '/\\input texinfo/d' \
381 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
382 -e '/^@ifinfo/,/^@end ifinfo/d' \
386 -e 's/^@alphaenumerate/@enumerate/g' \
387 -e 's/^@end alphaenumerate/@end enumerate/g' \
388 $(srcdir)/ld.texinfo | \
389 $(TEXI2ROFF) $(TEXI2OPT) -ms | \
390 sed -e 's/---/\\(em/g' \
393 # index for roff output
395 $(ROFF) -ms ld.ms 2>&1 1>/dev/null | \
396 sed -e '/: warning:/d' | \
397 texi2index >ld-index.ms
400 ld.mm: $(srcdir)/ld.texinfo
401 sed -e '/\\input texinfo/d' \
402 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
403 -e '/^@ifinfo/,/^@end ifinfo/d' \
408 -e 's/^@alphaenumerate/@enumerate/g' \
409 -e 's/^@end alphaenumerate/@end enumerate/g' \
410 $(srcdir)/ld.texinfo | \
411 $(TEXI2ROFF) $(TEXI2OPT) -mm | \
412 sed -e 's/---/\\(em/g' \
415 # index for roff output
417 $(ROFF) -mm ld.mm 2>&1 1>/dev/null | \
418 sed -e '/: warning:/d' | \
419 texi2index >ld-index.mm
422 ld.me: $(srcdir)/ld.texinfo
423 sed -e '/\\input texinfo/d' \
424 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
425 -e '/^@ifinfo/,/^@end ifinfo/d' \
429 -e 's/^@alphaenumerate/@enumerate/g' \
430 -e 's/^@end alphaenumerate/@end enumerate/g' \
431 $(srcdir)/ld.texinfo | \
432 $(TEXI2ROFF) $(TEXI2OPT) -me | \
433 sed -e 's/---/\\(em/g' \
436 # index for roff output
438 $(ROFF) -me ld.me 2>&1 1>/dev/null | \
439 sed -e '/: warning:/d' | \
440 texi2index >ld-index.me
443 ldlex.o: ldlex.c ldgram.h
445 ldexp.o: ldexp.c ldgram.h
446 ldctor.o: ldctor.c ldgram.h
447 ldlang.o: ldlang.c ldgram.h
448 ldmain.o: ldmain.c ldgram.h
449 ldwrite.o: ldwrite.c ldgram.h
450 lexsup.o: lexsup.c ldgram.h
451 mri.o: mri.c ldgram.h
452 relax.o: relax.c ldgram.h
455 h8300xray.o:h8300xray.c
461 -mv -f $(STAGESTUFF) $(LD_PROG) stage1
462 -(cd stage1 ; ln -s $(LD_PROG) ld)
466 -mv -f $(STAGESTUFF) $(LD_PROG) stage2
467 -(cd stage2 ; ln -s $(LD_PROG) ld)
471 -mv -f $(STAGESTUFF) $(LD_PROG) stage3
472 -(cd stage3 ; ln -s $(LD_PROG) ld)
477 for i in $(STAGESTUFF) $(LD_PROG) ; do cmp $$i $(against)/$$i ; done
480 -(cd stage1 ; mv -f * ..)
485 -(cd stage2 ; mv -f * ..)
490 -(cd stage3 ; mv -f * ..)
494 # Stuff that should be included in a distribution:
495 LDDISTSTUFF=ldgram.c ldgram.h ldlex.c
496 diststuff: $(LDDISTSTUFF)
499 -rm -f $(STAGESTUFF) ld.?? ld.??? ldlex.[qp]
500 -rm -f ld ld1 ld2 ld3 *.o y.output cdtest cdtest.out
504 -rm -fr Makefile config.status TAGS sysdep.h ldscripts
506 -rm -f $(LDDISTSTUFF)
508 lintlog:$(SOURCES) Makefile
509 $(LINT) -abhxzn $(LINTFLAGS) $(LINTSOURCES) \
510 | grep -v "pointer casts may be troublesome" \
511 | grep -v "possible pointer alignment problem" \
513 | grep -v "conversion from long may lose accuracy" \
514 | grep -v "warning: constant argument to NOT" \
515 | grep -v "enumeration type clash, operator CAST" \
516 | grep -v "warning: constant in conditional context"\
517 | grep -v "archive\.c"
520 tags TAGS:$(SOURCES) $(HEADERS)
528 $(INSTALL_XFORM) ld.new $(bindir)/ld
529 $(INSTALL_XFORM1) $(srcdir)/ld.1 $(man1dir)/ld.1
530 for f in ldscripts/*; do \
531 $(INSTALL_DATA) $$f $(scriptdir)/$$f ; \
533 -n=`t='$(program_transform_name)'; echo ld | sed -e "" $$t`; \
534 rm -f $(tooldir)/bin/ld; \
535 ln $(bindir)/$$n $(tooldir)/bin/ld \
536 || $(INSTALL_PROGRAM) ld.new $(tooldir)/bin/ld
539 for i in ld.info* ; do \
540 $(INSTALL_DATA) $$i $(infodir)/$$i ; \
546 #-----------------------------------------------------------------------------
547 # 'STANDARD' GNU/960 TARGETS BELOW THIS POINT
549 # 'VERSION' file must be present and contain a string of the form "x.y"
550 #-----------------------------------------------------------------------------
554 echo "char ${TARG}_ver[]= \"${TARG} `cat VERSION`, `date`\";" > ver960.c
557 # This target should be invoked before building a new release.
558 # 'VERSION' file must be present and contain a string of the form "x.y"
562 MAJ=`sed 's/\..*//' VERSION` ; \
563 MIN=`sed 's/.*\.//' VERSION` ; \
564 V=$$MAJ.`expr $$MIN + 1` ; \
566 echo $$V >VERSION ; \
573 # Dummy target to force execution of dependent targets.
577 # Target to uncomment host-specific lines in this makefile. Such lines must
578 # have the following string beginning in column 1: #__<hostname>__#
579 # Original Makefile is backed up as 'Makefile.old'.
581 # Invoke with: make make HOST=xxx
584 -@if test $(HOST)x = x ; then \
585 echo '
\aSpecify "make make HOST=???"'; \
588 grep -s "^#The next line was generated by 'make make'" Makefile; \
589 if test $$? = 0 ; then \
590 echo "
\aMakefile has already been processed with 'make make'";\
593 mv -f Makefile Makefile.old; \
594 echo "#The next line was generated by 'make make'" >Makefile ; \
595 echo "HOST=$(HOST)" >>Makefile ; \
597 sed "s/^#__$(HOST)__#//" < Makefile.old >>Makefile
601 Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
602 $(SHELL) ./config.status
604 ### mode:fundamental ***
605 ### Local Variables: ***
606 ### page-delimiter: "^#
\f" ***
611 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY