* scripttempl/h8300.sc: Change name of page zero memory
[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 = $(exec_prefix)/bin
32 libdir = $(exec_prefix)/lib
33 tooldir = $(exec_prefix)/$(target_alias)
34 datadir = $(prefix)/lib
35 mandir = $(prefix)/man
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 = $(prefix)/info
46 includedir = $(prefix)/include
47 docdir = $(datadir)/doc
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)
57 INSTALL_DATA = $(INSTALL)
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 # Seach 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 = ea29k.o ealpha.o earmaoutl.o earmaoutb.o \
198 ecoff_sparc.o eebmon29k.o \
199 eelf32_sparc.o eelf32bmip.o eelf32lmip.o eelf32ppc.o eelf32lppc.o \
200 eelf64_sparc.o eelf_i386.o egld960.o ego32.o eh8300.o \
201 eh8300h.o eh8500.o eh8500b.o eh8500c.o eh8500m.o eh8500s.o \
202 ehp300bsd.o ehp3hpux.o ehppaelf.o ei386aout.o ei386bsd.o \
203 ei386coff.o ei386go32.o ei386linux.o ei386lynx.o ei386mach.o \
204 ei386nbsd.o ei386nw.o elnk960.o em68k4knbsd.o em68kaout.o em68kaux.o \
205 em68kcoff.o em68kelf.o em68klynx.o em68knbsd.o em88kbcs.o emipsbig.o \
206 emipsbsd.o emipsidt.o emipsidtl.o emipslit.o enews.o ens32knbsd.o \
207 eppcnw.o eriscix.o esa29200.o eshl.o esh.o esparclynx.o esparcnbsd.o \
208 est2000.o esun3.o esun4.o evanilla.o evax.o evsta.o \
209 ez8001.o ez8002.o ei386pe.o earmpe.o eelf32b4300.o eelf32l4300.o \
210 eaixppc.o eaixrs6.o eppcmacos.o edelta68.o eppcpe.o em68kpsos.o
211
212 CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \
213 ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \
214 mri.c
215
216 HFILES = config.h ld.h ldctor.h ldemul.h ldexp.h ldfile.h \
217 ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \
218 ldwrite.h mri.h
219
220 GENERATED_CFILES = ldgram.c ldlex.c
221 GENERATED_HFILES = ldgram.h ldemul-list.h
222
223 OFILES = ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o \
224 ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o \
225 ldfile.o ${EMULATION_OFILES}
226
227 LINTSOURCES = $(CFILES) $(GENERATED_CFILES) e*.c
228
229 STAGESTUFF = *.o ldscripts/* e*.c
230
231 info: ld.info
232 .PHONY: info
233
234 ldgram.c: ldgram.y
235 $(BISON) $(BISONFLAGS) -d $(srcdir)/ldgram.y
236 mv -f y.tab.c ldgram.c
237 mv -f y.tab.h ldgram.h
238
239 # Separate from ldgram.c so that a parallel make doesn't try to build
240 # both ldgram.c and ldgram.h simultaneously.
241 ldgram.h: ldgram.c
242
243 ldmain.o: ldmain.c config.status
244 $(CC) -c -DDEFAULT_EMULATION='"$(EMUL)"' -DSCRIPTDIR='"$(scriptdir)"' $(ALL_CFLAGS) $<
245
246 ldemul-list.h: Makefile
247 (echo "/* This file is automatically generated. DO NOT EDIT! */";\
248 for f in `echo " " ${EMULATION_OFILES} "" \
249 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
250 echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \
251 done;\
252 echo "";\
253 echo "#define EMULATION_LIST \\";\
254 for f in `echo " " ${EMULATION_OFILES} "" \
255 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
256 echo " &ld_$${f}_emulation, \\"; \
257 done;\
258 echo " 0") >ldemul-tmp.h
259 mv ldemul-tmp.h ldemul-list.h
260
261 ldlex.c: ldlex.l
262 $(LEX) -I -Cem $(srcdir)/ldlex.l
263 -sed -e '/^int.*free();/d' \
264 -e '/^char.*malloc();/d' \
265 -e 's/malloc/xmalloc/g' \
266 < lex.yy.c > ldlex.c.new
267 -rm lex.yy.c
268 mv ldlex.c.new ./ldlex.c
269
270 # These all start with e so 'make clean' can find them.
271
272 GENSCRIPTS = $(SHELL) $(srcdir)/genscripts.sh ${srcdir} ${libdir} @host@ @target@ @target_alias@ ${EMUL} "@NATIVE_LIB_DIRS@"
273 GEN_DEPENDS = $(srcdir)/genscripts.sh $(srcdir)/emultempl/stringify.sed
274 @TDIRS@
275
276 esun4.c: $(srcdir)/emulparams/sun4.sh \
277 $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
278 ${GENSCRIPTS} sun4 "$(tdir_sun4)"
279 esun3.c: $(srcdir)/emulparams/sun3.sh \
280 $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
281 ${GENSCRIPTS} sun3 "$(tdir_sun3)"
282 earmpe.c: $(srcdir)/emulparams/armpe.sh \
283 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
284 ${GENSCRIPTS} armpe "$(tdir_armpe)"
285 evsta.c: $(srcdir)/emulparams/vsta.sh \
286 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
287 ${GENSCRIPTS} vsta "$(tdir_vsta)"
288 ego32.c: $(srcdir)/emulparams/go32.sh \
289 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
290 ${GENSCRIPTS} go32 "$(tdir_go32)"
291 enews.c: $(srcdir)/emulparams/news.sh \
292 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
293 ${GENSCRIPTS} news "$(tdir_news)"
294 evax.c: $(srcdir)/emulparams/vax.sh \
295 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
296 ${GENSCRIPTS} vax "$(tdir_vax)"
297 ehp300bsd.c: $(srcdir)/emulparams/hp300bsd.sh \
298 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
299 ${GENSCRIPTS} hp300bsd "$(tdir_hp300bsd)"
300 ehp3hpux.c: $(srcdir)/emulparams/hp3hpux.sh \
301 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
302 ${GENSCRIPTS} hp3hpux "$(tdir_hp3hpux)"
303 ei386pe.c: $(srcdir)/emulparams/i386pe.sh \
304 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
305 ${GENSCRIPTS} i386pe "$(tdir_i386pe)"
306 eppcpe.c: $(srcdir)/emulparams/ppcpe.sh \
307 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/ppcpe.sc ${GEN_DEPENDS}
308 ${GENSCRIPTS} ppcpe "$(tdir_ppcpe)"
309 ehppaelf.c: $(srcdir)/emulparams/hppaelf.sh \
310 $(srcdir)/emultempl/hppaelf.em $(srcdir)/scripttempl/hppaelf.sc ${GEN_DEPENDS}
311 ${GENSCRIPTS} hppaelf "$(tdir_hppaelf)"
312 ei386aout.c: $(srcdir)/emulparams/i386aout.sh \
313 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
314 ${GENSCRIPTS} i386aout "$(tdir_i386aout)"
315 ei386go32.c: $(srcdir)/emulparams/i386go32.sh \
316 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386go32.sc ${GEN_DEPENDS}
317 ${GENSCRIPTS} i386go32 "$(tdir_i386go32)"
318 ei386mach.c: $(srcdir)/emulparams/i386mach.sh \
319 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
320 ${GENSCRIPTS} i386mach "$(tdir_i386mach)"
321 ei386moss.c: $(srcdir)/emulparams/i386moss.sh \
322 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
323 ${GENSCRIPTS} i386moss "$(tdir_i386moss)"
324 ei386msdos.c: $(srcdir)/emulparams/i386msdos.sh \
325 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386msdos.sc ${GEN_DEPENDS}
326 ${GENSCRIPTS} i386msdos "$(tdir_i386msdos)"
327 eebmon29k.c: $(srcdir)/emulparams/ebmon29k.sh \
328 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/ebmon29k.sc ${GEN_DEPENDS}
329 ${GENSCRIPTS} ebmon29k "$(tdir_ebmon29k)"
330 esa29200.c: $(srcdir)/emulparams/sa29200.sh \
331 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sa29200.sc ${GEN_DEPENDS}
332 ${GENSCRIPTS} sa29200 "$(tdir_sa29200)"
333 ea29k.c: $(srcdir)/emulparams/a29k.sh \
334 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/a29k.sc ${GEN_DEPENDS}
335 ${GENSCRIPTS} a29k "$(tdir_a29k)"
336 em88kbcs.c: $(srcdir)/emulparams/m88kbcs.sh \
337 $(srcdir)/emultempl/m88kbcs.em $(srcdir)/scripttempl/m88kbcs.sc ${GEN_DEPENDS}
338 ${GENSCRIPTS} m88kbcs "$(tdir_m88kbcs)"
339 eh8300.c: $(srcdir)/emulparams/h8300.sh \
340 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS}
341 ${GENSCRIPTS} h8300 "$(tdir_h8300)"
342 eh8300h.c: $(srcdir)/emulparams/h8300h.sh \
343 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300h.sc ${GEN_DEPENDS}
344 ${GENSCRIPTS} h8300h "$(tdir_h8300h)"
345 eh8500.c: $(srcdir)/emulparams/h8500.sh \
346 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500.sc ${GEN_DEPENDS}
347 ${GENSCRIPTS} h8500 "$(tdir_h8500)"
348 eh8500b.c: $(srcdir)/emulparams/h8500b.sh \
349 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500b.sc ${GEN_DEPENDS}
350 ${GENSCRIPTS} h8500b "$(tdir_h8500b)"
351 eh8500c.c: $(srcdir)/emulparams/h8500c.sh \
352 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500c.sc ${GEN_DEPENDS}
353 ${GENSCRIPTS} h8500c "$(tdir_h8500c)"
354 eh8500m.c: $(srcdir)/emulparams/h8500m.sh \
355 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500m.sc ${GEN_DEPENDS}
356 ${GENSCRIPTS} h8500m "$(tdir_h8500m)"
357 eh8500s.c: $(srcdir)/emulparams/h8500s.sh \
358 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500s.sc ${GEN_DEPENDS}
359 ${GENSCRIPTS} h8500s "$(tdir_h8500s)"
360 esh.c: $(srcdir)/emulparams/sh.sh \
361 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
362 ${GENSCRIPTS} sh "$(tdir_sh)"
363 eshl.c: $(srcdir)/emulparams/shl.sh \
364 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
365 ${GENSCRIPTS} shl "$(tdir_shl)"
366 est2000.c: $(srcdir)/emulparams/st2000.sh \
367 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS}
368 ${GENSCRIPTS} st2000 "$(tdir_st2000)"
369 evanilla.c: $(srcdir)/emulparams/vanilla.sh \
370 $(srcdir)/emultempl/vanilla.em $(srcdir)/scripttempl/vanilla.sc ${GEN_DEPENDS}
371 ${GENSCRIPTS} vanilla "$(tdir_vanilla)"
372 elnk960.c: $(srcdir)/emulparams/lnk960.sh \
373 $(srcdir)/emultempl/lnk960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
374 ${GENSCRIPTS} lnk960 "$(tdir_lnk960)"
375 egld960.c: $(srcdir)/emulparams/gld960.sh \
376 $(srcdir)/emultempl/gld960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
377 ${GENSCRIPTS} gld960 "$(tdir_gld960)"
378 egld960coff.c: $(srcdir)/emulparams/gld960coff.sh \
379 $(srcdir)/emultempl/gld960c.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
380 ${GENSCRIPTS} gld960coff "$(tdir_gld960coff)"
381 em68kaux.c: $(srcdir)/emulparams/m68kaux.sh \
382 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kaux.sc ${GEN_DEPENDS}
383 ${GENSCRIPTS} m68kaux "$(tdir_m68kaux)"
384 em68kcoff.c: $(srcdir)/emulparams/m68kcoff.sh \
385 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kcoff.sc ${GEN_DEPENDS}
386 ${GENSCRIPTS} m68kcoff "$(tdir_m68kcoff)"
387 em68kelf.c: $(srcdir)/emulparams/m68kelf.sh \
388 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
389 ${GENSCRIPTS} m68kelf "$(tdir_m68kelf)"
390 em68klynx.c: $(srcdir)/emulparams/m68klynx.sh \
391 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68klynx.sc ${GEN_DEPENDS}
392 ${GENSCRIPTS} m68klynx "$(tdir_m68klynx)"
393 ei386coff.c: $(srcdir)/emulparams/i386coff.sh \
394 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386coff.sc ${GEN_DEPENDS}
395 ${GENSCRIPTS} i386coff "$(tdir_i386coff)"
396 ei386lynx.c: $(srcdir)/emulparams/i386lynx.sh \
397 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386lynx.sc ${GEN_DEPENDS}
398 ${GENSCRIPTS} i386lynx "$(tdir_i386lynx)"
399 emipslit.c: $(srcdir)/emulparams/mipslit.sh \
400 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
401 ${GENSCRIPTS} mipslit "$(tdir_mipslit)"
402 ei386bsd.c: $(srcdir)/emulparams/i386bsd.sh \
403 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
404 ${GENSCRIPTS} i386bsd "$(tdir_i386bsd)"
405 emipsbig.c: $(srcdir)/emulparams/mipsbig.sh \
406 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
407 ${GENSCRIPTS} mipsbig "$(tdir_mipsbig)"
408 emipsbsd.c: $(srcdir)/emulparams/mipsbsd.sh \
409 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mipsbsd.sc ${GEN_DEPENDS}
410 ${GENSCRIPTS} mipsbsd "$(tdir_mipsbsd)"
411 emipsidt.c: $(srcdir)/emulparams/mipsidt.sh \
412 $(srcdir)/emultempl/mipsecoff.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
413 ${GENSCRIPTS} mipsidt "$(tdir_mipsidt)"
414 emipsidtl.c: $(srcdir)/emulparams/mipsidtl.sh \
415 $(srcdir)/emultempl/mipsecoff.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
416 ${GENSCRIPTS} mipsidtl "$(tdir_mipsidtl)"
417 eelf_i386.c: $(srcdir)/emulparams/elf_i386.sh \
418 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
419 ${GENSCRIPTS} elf_i386 "$(tdir_elf_i386)"
420 eelf32bmip.c: $(srcdir)/emulparams/elf32bmip.sh \
421 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfmips.sc ${GEN_DEPENDS}
422 ${GENSCRIPTS} elf32bmip "$(tdir_elf32bmip)"
423 eelf32lmip.c: $(srcdir)/emulparams/elf32lmip.sh \
424 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfmips.sc ${GEN_DEPENDS}
425 ${GENSCRIPTS} elf32lmip "$(tdir_elf32lmip)"
426 eelf32b4300.c: $(srcdir)/emulparams/elf32b4300.sh \
427 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
428 ${GENSCRIPTS} elf32b4300 "$(tdir_elf32b4300)"
429 eelf32l4300.c: $(srcdir)/emulparams/elf32l4300.sh \
430 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
431 ${GENSCRIPTS} elf32l4300 "$(tdir_elf32l4300)"
432 ealpha.c: $(srcdir)/emulparams/alpha.sh \
433 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/alpha.sc ${GEN_DEPENDS}
434 ${GENSCRIPTS} alpha "$(tdir_alpha)"
435 ecoff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
436 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS}
437 ${GENSCRIPTS} coff_sparc "$(tdir_coff_sparc)"
438 esparclynx.c: $(srcdir)/emulparams/sparclynx.sh \
439 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparclynx.sc ${GEN_DEPENDS}
440 ${GENSCRIPTS} sparclynx "$(tdir_sparclynx)"
441 eelf32ppc.c: $(srcdir)/emulparams/elf32ppc.sh \
442 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
443 ${GENSCRIPTS} elf32ppc "$(tdir_elf32ppc)"
444 eelf32lppc.c: $(srcdir)/emulparams/elf32lppc.sh \
445 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
446 ${GENSCRIPTS} elf32lppc "$(tdir_elf32lppc)"
447 eriscix.c: $(srcdir)/emulparams/riscix.sh \
448 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
449 ${GENSCRIPTS} riscix "$(tdir_riscix)"
450 em68kaout.c: $(srcdir)/emulparams/m68kaout.sh \
451 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
452 ${GENSCRIPTS} m68kaout "$(tdir_m68kaout)"
453 ei386linux.c: $(srcdir)/emulparams/i386linux.sh \
454 $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
455 ${GENSCRIPTS} i386linux "$(tdir_i386linux)"
456 eelf32_sparc.c: $(srcdir)/emulparams/elf32_sparc.sh \
457 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
458 ${GENSCRIPTS} elf32_sparc "$(tdir_elf32_sparc)"
459 eelf64_sparc.c: $(srcdir)/emulparams/elf64_sparc.sh \
460 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
461 ${GENSCRIPTS} elf64_sparc "$(tdir_elf64_sparc)"
462
463 epc532machaout.c: $(srcdir)/emulparams/pc532machaout.sh \
464 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
465 ${GENSCRIPTS} pc532machaout "$(tdir_pc532machaout)"
466
467 ew65.c: $(srcdir)/emulparams/w65.sh \
468 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/w65.sc ${GEN_DEPENDS}
469 ${GENSCRIPTS} w65 "$(tdir_w65)"
470
471 eppcmacos.c: $(srcdir)/emulparams/ppcmacos.sh \
472 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
473 ${GENSCRIPTS} ppcmacos "$(tdir_ppcmacos)"
474
475 ei386nw.c: $(srcdir)/emulparams/i386nw.sh \
476 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
477 ${GENSCRIPTS} i386nw "$(tdir_i386nw)"
478 eppcnw.c: $(srcdir)/emulparams/ppcnw.sh \
479 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
480 ${GENSCRIPTS} ppcnw "$(tdir_ppcnw)"
481
482 ei386nbsd.c: $(srcdir)/emulparams/i386nbsd.sh \
483 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
484 ${GENSCRIPTS} i386nbsd "$(tdir_i386nbsd)"
485 em68k4knbsd.c: $(srcdir)/emulparams/m68k4knbsd.sh \
486 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
487 ${GENSCRIPTS} m68k4knbsd "$(tdir_m68k4knbsd)"
488 em68knbsd.c: $(srcdir)/emulparams/m68knbsd.sh \
489 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
490 ${GENSCRIPTS} m68knbsd "$(tdir_m68knbsd)"
491 em68kpsos.c: $(srcdir)/emulparams/m68kpsos.sh \
492 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/psos.sc ${GEN_DEPENDS}
493 ${GENSCRIPTS} m68kpsos "$(tdir_m68kpsos)"
494 ens32knbsd.c: $(srcdir)/emulparams/ns32knbsd.sh \
495 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
496 ${GENSCRIPTS} ns32knbsd "$(tdir_ns32knbsd)"
497 esparcnbsd.c: $(srcdir)/emulparams/sparcnbsd.sh \
498 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
499 ${GENSCRIPTS} sparcnbsd "$(tdir_sparcnbsd)"
500 earmaoutl.c: $(srcdir)/emulparams/armaoutl.sh \
501 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
502 ${GENSCRIPTS} armaoutl "$(tdir_armaoutl)"
503 earmaoutb.c: $(srcdir)/emulparams/armaoutb.sh \
504 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
505 ${GENSCRIPTS} armaoutb "$(tdir_armaoutb)"
506 earmcoff.c: $(srcdir)/emulparams/armcoff.sh \
507 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armcoff.sc ${GEN_DEPENDS}
508 ${GENSCRIPTS} armcoff "$(tdir_armcoff)"
509 ez8001.c: $(srcdir)/emulparams/z8001.sh \
510 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
511 ${GENSCRIPTS} z8001 "$(tdir_z8001)"
512 ez8002.c: $(srcdir)/emulparams/z8002.sh \
513 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
514 ${GENSCRIPTS} z8002 "$(tdir_z8002)"
515 eaixppc.c: $(srcdir)/emulparams/aixppc.sh \
516 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
517 ${GENSCRIPTS} aixppc "$(tdir_aixppc)"
518 eaixrs6.c: $(srcdir)/emulparams/aixrs6.sh \
519 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
520 ${GENSCRIPTS} aixrs6 "$(tdir_aixrs6)"
521 edelta68.c: $(srcdir)/emulparams/delta68.sh \
522 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/delta68.sc ${GEN_DEPENDS}
523 ${GENSCRIPTS} delta68 "$(tdir_delta68)"
524 # start-sanitize-arc
525 earcelf.c: $(srcdir)/emulparams/arcelf.sh \
526 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
527 ${GENSCRIPTS} arcelf "$(tdir_arcelf)"
528 # end-sanitize-arc
529 # start-sanitize-rce
530 erce.c: $(srcdir)/emulparams/rce.sh \
531 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/rce.sc ${GEN_DEPENDS}
532 ${GENSCRIPTS} rce "$(tdir_rce)"
533 # end-sanitize-rce
534
535 $(LD_PROG): $(OFILES) $(BFDDEP) $(LIBIBERTY)
536 $(CC) $(HLDFLAGS) $(CFLAGS) $(LDFLAGS) -o $(LD_PROG) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(EXTRALIBS)
537
538 # The generated emulation files mostly have the same dependencies.
539 $(EMULATION_OFILES): ../bfd/bfd.h sysdep.h config.h $(INCDIR)/bfdlink.h \
540 ld.h ldmain.h ldemul.h ldfile.h ldmisc.h ldexp.h ldlang.h \
541 ldctor.h ldexp.h ldlang.h ldgram.h
542
543 # These targets are for the dejagnu testsuites. The file site.exp
544 # contains global variables that all the testsuites will use.
545
546 site.exp: ./config.status Makefile
547 @echo "Making a new config file..."
548 @rm -f ./tmp?
549 @touch site.exp
550 @mv site.exp site.bak
551 @echo "## variables are automatically generated by make ##" > ./tmp0
552 @echo "# Do not edit here. If you wish to override these" >> ./tmp0
553 @echo "# values, add them to the last section" >> ./tmp0
554 @echo "# HOST AND TARGET INFO" >> ./tmp0
555 @echo "set host_os @host_os@" >> ./tmp0
556 @echo "set host_alias @host_alias@" >> ./tmp0
557 @echo "set host_cpu @host_cpu@" >> ./tmp0
558 @echo "set host_vendor @host_vendor@" >> ./tmp0
559 @echo "set target_os @target_os@" >> ./tmp0
560 @echo "set target_alias @target_alias@" >> ./tmp0
561 @echo "set target_cpu @target_cpu@" >> ./tmp0
562 @echo "set target_vendor @target_vendor@" >> ./tmp0
563 @echo "set host_triplet @host@" >> ./tmp0
564 @echo "set target_triplet @target@" >> ./tmp0
565 @echo "# DIRECTORY INFO" >> ./tmp0
566 @echo "set objdir `pwd`" >> ./tmp0
567 @echo "" >> ./tmp0
568 @echo "# LD DEPENDENCIES" >> ./tmp0
569 @echo "set OFILES \"$(OFILES)\"" >> ./tmp0
570 @echo "set BFDLIB \"$(BFDLIB)\"" >> ./tmp0
571 @echo "set LIBIBERTY \"$(LIBIBERTY)\"" >> ./tmp0
572 @echo "set HOSTING_EMU \"$(HOSTING_EMU)\"" >> ./tmp0
573 @echo "set HOSTING_CRT0 \"$(HOSTING_CRT0)\"" >> ./tmp0
574 @echo "set HOSTING_LIBS \"$(HOSTING_LIBS)\"" >> ./tmp0
575 @echo "" >> ./tmp0
576 @echo "## Variables generated by configure. Do Not Edit ##" >> ./tmp0
577 @cat ./tmp0 > site.exp
578 @cat site.bak | sed \
579 -e '1,/^## Variables generated by.*##/ d' >> site.exp
580 -@rm -f ./tmp?
581
582 check: site.exp
583 r=`pwd`; export r; \
584 srcroot=`cd ${srcdir}; pwd` ; export srcroot ; \
585 EXPECT=${EXPECT} ; export EXPECT ; \
586 $(RPATH_ENVVAR)=$$r/../bfd:$$r/../opcodes:$$$(RPATH_ENVVAR); \
587 export $(RPATH_ENVVAR); \
588 if [ -f $$r/../expect/expect ] ; then \
589 TCL_LIBRARY=$${srcroot}/../tcl/library ; \
590 export TCL_LIBRARY ; \
591 else true ; fi ; \
592 $(RUNTEST) --tool ld --srcdir $(srcdir)/testsuite $(RUNTESTFLAGS) \
593 CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)" \
594 CXX="$(CXX_FOR_TARGET)" CXXFLAGS="$(CXXFLAGS)" \
595 CC_FOR_HOST="$(CC)" CFLAGS_FOR_HOST="$(CFLAGS)"
596
597 installcheck:
598 .PHONY: check installcheck
599
600 # Rules for testing by relinking ld itself.
601 # A similar test is in the testsuite. This target is for ease of use
602 # when porting ld.
603
604 ld-partial.o: ld.new
605 ./ld.new $(HOSTING_EMU) -o ld-partial.o -r $(OFILES)
606 ld1: ld-partial.o
607 ./ld.new $(HOSTING_EMU) -o ld1 $(HOSTING_CRT0) ld-partial.o $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
608
609 ld1-full: ld.new
610 ./ld.new $(HOSTING_EMU) -o ld1-full $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
611
612 ld2: ld1
613 ./ld1 $(HOSTING_EMU) -o ld2 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
614
615 ld3: ld2
616 ./ld2 $(HOSTING_EMU) -o ld3 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
617
618 bootstrap: ld3
619 cmp ld2 ld3
620
621 .PHONY: bootstrap
622
623 # A test program for C++ constructors and destructors.
624 # This test is now in the testsuite.
625 #
626 #cdtest: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
627 # ./ld.new $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \
628 # cdtest-main.o cdtest-bar.o cdtest-foo.o $(HOSTING_LIBS)
629 #
630 #cdtest.out: cdtest
631 # ./cdtest > cdtest.tmp
632 # mv cdtest.tmp cdtest.out
633 #
634 #cdtest-ur.o: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
635 # ./ld.new $(HOSTING_EMU) -o cdtest-ur.o -Ur cdtest-main.o \
636 # cdtest-bar.o cdtest-foo.o
637 #
638 #cdtest-ur: cdtest-ur.o
639 # ./ld.new $(HOSTING_EMU) -o cdtest-ur $(HOSTING_CRT0) cdtest-ur.o \
640 # $(HOSTING_LIBS)
641 #
642 #cdtest-ur.out: cdtest-ur
643 # ./cdtest-ur > cdtest-ur.tmp
644 # mv cdtest-ur.tmp cdtest-ur.out
645 #
646 #check-cdtest: cdtest.out cdtest-ur.out $(srcdir)/cdtest.exp
647 # diff $(srcdir)/cdtest.exp cdtest.out
648 # diff $(srcdir)/cdtest.exp cdtest-ur.out
649 #
650 #.PHONY: check-cdtest
651
652 # END OF CHECK TARGETS
653
654 # DOCUMENTATION TARGETS
655 # Manual configuration file; not usually attached to normal configuration,
656 # because almost all configs use "gen" version of manual.
657 # Set DOCVER above to change.
658 configdoc.texi: ${DOCVER}-doc.texi
659 ln -s ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi || \
660 ln ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi || \
661 cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi
662
663 # TeX output
664 dvi: ld.dvi
665 ld.dvi: $(srcdir)/ld.texinfo configdoc.texi $(BFDDIR)/doc/bfdsumm.texi
666 TEXINPUTS=$(BFDDIR)/doc:$$TEXINPUTS $(TEXI2DVI) $(srcdir)/ld.texinfo
667
668 ldint.dvi: $(srcdir)/ldint.texinfo
669 $(TEXI2DVI) $(srcdir)/ldint.texinfo
670
671 # info file for online browsing
672 ld.info: $(srcdir)/ld.texinfo configdoc.texi $(BFDDIR)/doc/bfdsumm.texi
673 $(MAKEINFO) -I$(BFDDIR)/doc -o ld.info $(srcdir)/ld.texinfo
674
675 ldint.info: $(srcdir)/ldint.texinfo
676 $(MAKEINFO) -o ldint.info $(srcdir)/ldint.texinfo
677
678 .PHONY: dvi
679
680 #separate targets for "ms", "me", and "mm" forms of roff doc
681 # Try to use a recent texi2roff. v2 was put on prep in jan91.
682 # If you want an index, see texi2roff doc for postprocessing
683 # and add -i to texi2roff invocations below.
684 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
685 # correspondint -e lines when later texi2roff's are current)
686 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
687 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
688 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
689 # + @alphaenumerate is ridiculously new, turned into @enumerate
690
691 ld.ms: $(srcdir)/ld.texinfo
692 sed -e '/\\input texinfo/d' \
693 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
694 -e '/^@ifinfo/,/^@end ifinfo/d' \
695 -e '/^@c/d' \
696 -e 's/{.*,,/{/' \
697 -e 's/@ / /g' \
698 -e 's/^@alphaenumerate/@enumerate/g' \
699 -e 's/^@end alphaenumerate/@end enumerate/g' \
700 $(srcdir)/ld.texinfo | \
701 $(TEXI2ROFF) $(TEXI2OPT) -ms | \
702 sed -e 's/---/\\(em/g' \
703 >>ld.ms
704
705 # index for roff output
706 ld-index.ms: ld.ms
707 $(ROFF) -ms ld.ms 2>&1 1>/dev/null | \
708 sed -e '/: warning:/d' | \
709 texi2index >ld-index.ms
710
711 # roff output (-mm)
712 ld.mm: $(srcdir)/ld.texinfo
713 sed -e '/\\input texinfo/d' \
714 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
715 -e '/^@ifinfo/,/^@end ifinfo/d' \
716 -e '/^@c/d' \
717 -e 's/{.*,,/{/' \
718 -e '/@noindent/d' \
719 -e 's/@ / /g' \
720 -e 's/^@alphaenumerate/@enumerate/g' \
721 -e 's/^@end alphaenumerate/@end enumerate/g' \
722 $(srcdir)/ld.texinfo | \
723 $(TEXI2ROFF) $(TEXI2OPT) -mm | \
724 sed -e 's/---/\\(em/g' \
725 >ld.mm
726
727 # index for roff output
728 ld-index.mm: ld.mm
729 $(ROFF) -mm ld.mm 2>&1 1>/dev/null | \
730 sed -e '/: warning:/d' | \
731 texi2index >ld-index.mm
732
733 # roff output (-me)
734 ld.me: $(srcdir)/ld.texinfo
735 sed -e '/\\input texinfo/d' \
736 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
737 -e '/^@ifinfo/,/^@end ifinfo/d' \
738 -e '/^@c/d' \
739 -e 's/{.*,,/{/' \
740 -e 's/@ / /g' \
741 -e 's/^@alphaenumerate/@enumerate/g' \
742 -e 's/^@end alphaenumerate/@end enumerate/g' \
743 $(srcdir)/ld.texinfo | \
744 $(TEXI2ROFF) $(TEXI2OPT) -me | \
745 sed -e 's/---/\\(em/g' \
746 >>ld.me
747
748 # index for roff output
749 ld-index.me: ld.me
750 $(ROFF) -me ld.me 2>&1 1>/dev/null | \
751 sed -e '/: warning:/d' | \
752 texi2index >ld-index.me
753
754 stage1: force
755 -mkdir stage1
756 -mv -f $(STAGESTUFF) $(LD_PROG) stage1
757 -(cd stage1 ; ln -s $(LD_PROG) ld)
758
759 stage2: force
760 -mkdir stage2
761 -mv -f $(STAGESTUFF) $(LD_PROG) stage2
762 -(cd stage2 ; ln -s $(LD_PROG) ld)
763
764 stage3: force
765 -mkdir stage3
766 -mv -f $(STAGESTUFF) $(LD_PROG) stage3
767 -(cd stage3 ; ln -s $(LD_PROG) ld)
768
769 against = stage2
770
771 comparison: force
772 for i in $(STAGESTUFF) $(LD_PROG) ; do cmp $$i $(against)/$$i ; done
773
774 de-stage1: force
775 -(cd stage1 ; mv -f * ..)
776 -rm ld
777 -rmdir stage1
778
779 de-stage2: force
780 -(cd stage2 ; mv -f * ..)
781 -rm ld
782 -rmdir stage2
783
784 de-stage3: force
785 -(cd stage3 ; mv -f * ..)
786 -rm ld
787 -rmdir stage3
788
789 .PHONY: stage1 stage2 stage3 comparison de-stage1 de-stage2 de-stage3
790
791 # Stuff that should be included in a distribution:
792 LDDISTSTUFF = ldgram.c ldgram.h ldlex.c
793 diststuff: $(LDDISTSTUFF) info
794
795 mostlyclean:
796 -rm -f $(STAGESTUFF) ld.?? ld.??? ldlex.[qp] config.log
797 -rm -f ld ld1 ld2 ld3 *.o y.output cdtest cdtest.out cdtest.tmp
798 -rm -f cdtest-ur cdtest-ur.out cdtest-ur.tmp
799 -rm -f ldemul-list.h
800 -rm -fr tmpdir
801 clean: mostlyclean
802 -rm -f $(LD_PROG) configdoc.texi
803 distclean: clean
804 -rm -f Makefile config.status TAGS site.exp site.bak config.cache
805 -rm -f config.h stamp-h
806 -rm -rf ldscripts
807 maintainer-clean realclean: clean distclean
808 @echo "This command is intended for maintainers to use;"
809 @echo "it deletes files that may require special tools to rebuild."
810 -rm -f $(GENERATED_CFILES) $(GENERATED_HFILES)
811 -rm -f $(LDDISTSTUFF) *.info*
812
813 .PHONY: diststuff mostlyclean clean distclean realclean
814
815 lintlog:$(LINTSOURCES) Makefile
816 $(LINT) -abhxzn $(LINTFLAGS) $(LINTSOURCES) \
817 | grep -v "pointer casts may be troublesome" \
818 | grep -v "possible pointer alignment problem" \
819 | grep -v "ignore" \
820 | grep -v "conversion from long may lose accuracy" \
821 | grep -v "warning: constant argument to NOT" \
822 | grep -v "enumeration type clash, operator CAST" \
823 | grep -v "warning: constant in conditional context"\
824 | grep -v "archive\.c"
825
826
827 TAGS:
828 etags -t $(srcdir)/*.[chly] *.[chly]
829
830
831 install:
832 $(INSTALL_XFORM) ld.new $(bindir)/ld
833 $(INSTALL_XFORM1) $(srcdir)/ld.1 $(man1dir)/ld.1
834 for f in ldscripts/*; do \
835 $(INSTALL_DATA) $$f $(scriptdir)/$$f ; \
836 done
837 -n=`echo ld | sed '$(program_transform_name)'`; \
838 rm -f $(tooldir)/bin/ld; \
839 ln $(bindir)/$$n $(tooldir)/bin/ld >/dev/null 2>/dev/null \
840 || $(INSTALL_PROGRAM) ld.new $(tooldir)/bin/ld
841
842 install-info: ld.info
843 if [ -r ld.info ]; then \
844 dir=. ; \
845 else \
846 dir=$(srcdir) ; \
847 fi ; \
848 for i in `cd $$dir ; echo ld.info*` ; do \
849 $(INSTALL_DATA) $$dir/$$i $(infodir)/$$i ; \
850 done
851
852 clean-info:
853 -rm -rf *.info*
854
855 .PHONY: install install-info clean-info
856
857 # Targets to rebuild dependencies in this Makefile.
858 # Have to get rid of .dep1 here so that "$?" later includes all of $(CFILES).
859 .dep: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
860 rm -f .dep1
861 $(MAKE) DEP=$(DEP) .dep1
862 sed -f dep.sed <.dep1 >.dep
863
864 # This rule really wants a mkdep that runs "gcc -MM".
865 .dep1: $(CFILES) $(GENERATED_CFILES)
866 rm -f .dep2
867 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > .dep2
868 $(DEP) -f .dep2 $(ALL_CFLAGS) $?
869 $(srcdir)/../move-if-change .dep2 .dep1
870
871 dep.sed: dep-in.sed config.status
872 sed <$(srcdir)/dep-in.sed >dep.sed \
873 -e 's!@INCDIR@!$(INCDIR)!' \
874 -e 's!@SRCDIR@!$(srcdir)!'
875
876 dep: .dep
877 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
878 cat .dep >> tmp-Makefile
879 $(srcdir)/../move-if-change tmp-Makefile Makefile
880
881 dep-in: .dep
882 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
883 cat .dep >> tmp-Makefile.in
884 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
885
886 .PHONY: dep dep-in
887
888 # Dummy target to force execution of dependent targets.
889 #
890 force:
891
892 .PHONY: force
893
894 Makefile: Makefile.in config.status
895 CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status
896
897 config.h: stamp-h ; @true
898 stamp-h: config.in config.status
899 CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
900
901 config.status: configure configure.host configure.tgt
902 $(SHELL) ./config.status --recheck
903
904 # What appears below is generated by a hacked mkdep using gcc -MM.
905
906 # DO NOT DELETE THIS LINE -- mkdep uses it.
907 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
908
909 ldctor.o: ldctor.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
910 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
911 $(INCDIR)/bfdlink.h ld.h ldexp.h ldlang.h ldmisc.h \
912 ldgram.h ldmain.h ldctor.h
913 ldemul.o: ldemul.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
914 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
915 ld.h ldemul.h ldmisc.h ldexp.h ldlang.h ldfile.h ldmain.h \
916 ldemul-list.h
917 ldexp.o: ldexp.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
918 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
919 $(INCDIR)/bfdlink.h ld.h ldmain.h ldmisc.h ldexp.h \
920 ldgram.h ldlang.h
921 ldfile.o: ldfile.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
922 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
923 $(INCDIR)/bfdlink.h ld.h ldmisc.h ldexp.h ldlang.h \
924 ldfile.h ldmain.h ldgram.h ldlex.h ldemul.h
925 ldlang.o: ldlang.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
926 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
927 $(INCDIR)/libiberty.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
928 ldgram.h ldexp.h ldlang.h ldemul.h ldlex.h ldmisc.h \
929 ldctor.h ldfile.h
930 ldmain.o: ldmain.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
931 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
932 $(INCDIR)/libiberty.h $(INCDIR)/progress.h $(INCDIR)/bfdlink.h \
933 ld.h ldmain.h ldmisc.h ldwrite.h ldgram.h ldexp.h ldlang.h \
934 ldemul.h ldlex.h ldfile.h ldctor.h
935 ldmisc.o: ldmisc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
936 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
937 ld.h ldmisc.h ldexp.h ldlang.h ldgram.h ldlex.h ldmain.h \
938 ldfile.h
939 ldver.o: ldver.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
940 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
941 ld.h ldver.h ldemul.h ldmain.h
942 ldwrite.o: ldwrite.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
943 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
944 $(INCDIR)/bfdlink.h ld.h ldexp.h ldlang.h ldwrite.h \
945 ldmisc.h ldgram.h ldmain.h
946 lexsup.o: lexsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
947 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
948 $(INCDIR)/getopt.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
949 ldmisc.h ldexp.h ldlang.h ldgram.h ldlex.h ldfile.h \
950 ldver.h ldemul.h
951 mri.o: mri.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/obstack.h \
952 sysdep.h config.h $(INCDIR)/fopen-same.h ld.h ldexp.h \
953 ldlang.h ldmisc.h mri.h ldgram.h
954 ldgram.o: ldgram.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
955 $(INCDIR)/obstack.h sysdep.h config.h $(INCDIR)/fopen-same.h \
956 $(INCDIR)/bfdlink.h ld.h ldexp.h ldver.h ldlang.h ldemul.h \
957 ldfile.h ldmisc.h ldmain.h mri.h ldlex.h
958 ldlex.o: ldlex.c ../bfd/bfd.h $(INCDIR)/obstack.h sysdep.h \
959 config.h $(INCDIR)/fopen-same.h ld.h ldgram.h ldmisc.h \
960 ldexp.h ldlang.h ldfile.h ldlex.h ldmain.h
961
962 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
This page took 0.052852 seconds and 4 git commands to generate.