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