1 ## Process this file with automake to generate Makefile.in
3 ## FIXME: work around apparent automake bug.
6 AUTOMAKE_OPTIONS = cygnus dejagnu
10 tooldir = $(exec_prefix)/$(target_alias)
12 YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
14 LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
16 # We put the scripts in the directory $(scriptdir)/ldscripts.
17 # We can't put the scripts in $(datadir) because the SEARCH_DIR
18 # directives need to be different for native and cross linkers.
19 scriptdir = $(tooldir)/lib
22 EMULATION_OFILES = @EMULATION_OFILES@
23 EMUL_EXTRA_OFILES = @EMUL_EXTRA_OFILES@
25 # Search path to override the default search path for -lfoo libraries.
26 # If LIB_PATH is empty, the ones in the script (if any) are left alone.
27 # (The default is usually /lib:/usr/lib:/usr/local/lib, unless building
28 # a cross-linker, in which case the default is empty. See genscripts.sh.)
29 # Otherwise, they are replaced with the ones given in LIB_PATH,
30 # which may have the form: LIB_PATH=/lib:/usr/local/lib
33 BASEDIR = $(srcdir)/..
34 BFDDIR = $(BASEDIR)/bfd
35 INCDIR = $(BASEDIR)/include
38 # What version of the manual to build
41 #stuff for self hosting (can be overridden in config file).
42 HOSTING_CRT0 = @HOSTING_CRT0@
43 HOSTING_LIBS = @HOSTING_LIBS@
44 HOSTING_EMU = -m $(EMUL)
46 # Setup the testing framework, if you have one
47 EXPECT = `if [ -f $$r/../expect/expect ] ; \
48 then echo $$r/../expect/expect ; \
49 else echo expect ; fi`
51 RUNTEST = `if [ -f $${srcroot}/../dejagnu/runtest ] ; \
52 then echo $${srcroot}/../dejagnu/runtest ; \
53 else echo runtest ; fi`
58 if [ -f $$r/../gcc/xgcc ] ; then \
59 if [ -f $$r/../newlib/Makefile ] ; then \
60 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
62 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
65 if [ "@host@" = "@target@" ] ; then \
68 echo gcc | sed '$(transform)'; \
74 if [ -f $$r/../gcc/xgcc ] ; then \
75 if [ -f $$r/../newlib/Makefile ] ; then \
76 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
78 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
81 if [ "@host@" = "@target@" ] ; then \
84 echo gcc | sed '$(transform)'; \
88 noinst_PROGRAMS = ld-new
89 info_TEXINFOS = ld.texinfo
90 noinst_TEXINFOS = ldint.texinfo
93 INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) -I$(top_srcdir)/../intl -I../intl $(HDEFINES) $(CFLAGS) -DLOCALEDIR="\"$(prefix)/share/locale\""
95 BFDLIB = ../bfd/libbfd.la
96 LIBIBERTY = ../libiberty/libiberty.a
213 ALL_64_EMULATIONS = \
219 ALL_EMUL_EXTRA_OFILES = \
223 CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \
224 ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \
225 mri.c ldcref.c pe-dll.c
227 HFILES = ld.h ldctor.h ldemul.h ldexp.h ldfile.h \
228 ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \
229 ldwrite.h mri.h deffile.h pe-dll.h
231 GENERATED_CFILES = ldgram.c ldlex.c deffilep.c
232 GENERATED_HFILES = ldgram.h ldemul-list.h deffilep.h
234 OFILES = ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o \
235 ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o \
236 ldfile.o ldcref.o ${EMULATION_OFILES} ${EMUL_EXTRA_OFILES}
238 STAGESTUFF = *.o ldscripts/* e*.c
240 # At the moment this is just a list of those emulation template files
241 # that contain internationalised strings.
242 EMULATION_FILES = emultempl/pe.em emultempl/armcoff.em
244 POTFILES = $(CFILES) $(HFILES) $(EMULATION_FILES)
246 po/POTFILES.in: @MAINT@ Makefile
247 for file in $(POTFILES); do echo $$file; done | sort > tmp \
248 && mv tmp $(srcdir)/po/POTFILES.in
250 ldmain.o: ldmain.c config.status
251 $(COMPILE) -c -DDEFAULT_EMULATION='"$(EMUL)"' -DSCRIPTDIR='"$(scriptdir)"' -DTARGET='"@target@"' $(srcdir)/ldmain.c
253 ldemul-list.h: Makefile
254 (echo "/* This file is automatically generated. DO NOT EDIT! */";\
255 for f in `echo " " ${EMULATION_OFILES} "" \
256 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
257 echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \
260 echo "#define EMULATION_LIST \\";\
261 for f in `echo " " ${EMULATION_OFILES} "" \
262 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
263 echo " &ld_$${f}_emulation, \\"; \
265 echo " 0") >ldemul-tmp.h
266 mv ldemul-tmp.h ldemul-list.h
268 stringify.sed: ${srcdir}/emultempl/$(STRINGIFY)
269 cp ${srcdir}/emultempl/$(STRINGIFY) stringify.sed
271 # These all start with e so 'make clean' can find them.
273 GENSCRIPTS = $(SHELL) $(srcdir)/genscripts.sh ${srcdir} ${libdir} @host@ @target@ @target_alias@ "@EMULATION_LIBPATH@" "@NATIVE_LIB_DIRS@"
274 GEN_DEPENDS = $(srcdir)/genscripts.sh stringify.sed
277 ea29k.c: $(srcdir)/emulparams/a29k.sh \
278 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/a29k.sc ${GEN_DEPENDS}
279 ${GENSCRIPTS} a29k "$(tdir_a29k)"
280 eaixppc.c: $(srcdir)/emulparams/aixppc.sh \
281 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
282 ${GENSCRIPTS} aixppc "$(tdir_aixppc)"
283 eaixrs6.c: $(srcdir)/emulparams/aixrs6.sh \
284 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
285 ${GENSCRIPTS} aixrs6 "$(tdir_aixrs6)"
286 ealpha.c: $(srcdir)/emulparams/alpha.sh \
287 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/alpha.sc ${GEN_DEPENDS}
288 ${GENSCRIPTS} alpha "$(tdir_alpha)"
289 earcelf.c: $(srcdir)/emulparams/arcelf.sh \
290 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
291 ${GENSCRIPTS} arcelf "$(tdir_arcelf)"
292 earmelf.c: $(srcdir)/emulparams/armelf.sh \
293 $(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
294 ${GENSCRIPTS} armelf "$(tdir_armelf)"
295 earmelf_oabi.c: $(srcdir)/emulparams/armelf_oabi.sh \
296 $(srcdir)/emultempl/armelf_oabi.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
297 ${GENSCRIPTS} armelf_oabi "$(tdir_armelf)"
298 earmelf_linux.c: $(srcdir)/emulparams/armelf_linux.sh \
299 $(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
300 ${GENSCRIPTS} armelf_linux "$(tdir_armelf_linux)"
301 earmelf_linux26.c: $(srcdir)/emulparams/armelf_linux26.sh \
302 $(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
303 ${GENSCRIPTS} armelf_linux26 "$(tdir_armelf_linux26)"
304 earmaoutb.c: $(srcdir)/emulparams/armaoutb.sh \
305 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
306 ${GENSCRIPTS} armaoutb "$(tdir_armaoutb)"
307 earmaoutl.c: $(srcdir)/emulparams/armaoutl.sh \
308 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
309 ${GENSCRIPTS} armaoutl "$(tdir_armaoutl)"
310 earmcoff.c: $(srcdir)/emulparams/armcoff.sh \
311 $(srcdir)/emultempl/armcoff.em $(srcdir)/scripttempl/armcoff.sc ${GEN_DEPENDS}
312 ${GENSCRIPTS} armcoff "$(tdir_armcoff)"
313 earmnbsd.c: $(srcdir)/emulparams/armnbsd.sh \
314 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
315 ${GENSCRIPTS} armnbsd "$(tdir_armnbsd)"
316 earm_epoc_pe.c: $(srcdir)/emulparams/arm_epoc_pe.sh \
317 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/epocpe.sc ${GEN_DEPENDS}
318 ${GENSCRIPTS} arm_epoc_pe "$(tdir_armpe)"
319 earmpe.c: $(srcdir)/emulparams/armpe.sh \
320 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
321 ${GENSCRIPTS} armpe "$(tdir_armpe)"
322 ecoff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
323 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS}
324 ${GENSCRIPTS} coff_sparc "$(tdir_coff_sparc)"
325 ed10velf.c: $(srcdir)/emulparams/d10velf.sh \
326 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd10v.sc ${GEN_DEPENDS}
327 ${GENSCRIPTS} d10velf "$(tdir_d10v)"
328 ed30velf.c: $(srcdir)/emulparams/d30velf.sh \
329 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
330 ${GENSCRIPTS} d30velf "$(tdir_d30v)"
331 ed30v_o.c: $(srcdir)/emulparams/d30v_o.sh \
332 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
333 ${GENSCRIPTS} d30v_o "$(tdir_d30v)"
334 ed30v_e.c: $(srcdir)/emulparams/d30v_e.sh \
335 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
336 ${GENSCRIPTS} d30v_e "$(tdir_d30v)"
337 edelta68.c: $(srcdir)/emulparams/delta68.sh \
338 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/delta68.sc ${GEN_DEPENDS}
339 ${GENSCRIPTS} delta68 "$(tdir_delta68)"
340 eebmon29k.c: $(srcdir)/emulparams/ebmon29k.sh \
341 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/ebmon29k.sc ${GEN_DEPENDS}
342 ${GENSCRIPTS} ebmon29k "$(tdir_ebmon29k)"
343 eelf32fr30.c: $(srcdir)/emulparams/elf32fr30.sh \
344 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
345 ${GENSCRIPTS} elf32fr30 "$(tdir_fr30)"
346 eelf32mcore.c: $(srcdir)/emulparams/elf32mcore.sh \
347 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
348 ${GENSCRIPTS} elf32mcore "$(tdir_mcore)"
349 em32relf.c: $(srcdir)/emulparams/m32relf.sh \
350 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
351 ${GENSCRIPTS} m32relf "$(tdir_m32r)"
352 eelf32_sparc.c: $(srcdir)/emulparams/elf32_sparc.sh \
353 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
354 ${GENSCRIPTS} elf32_sparc "$(tdir_elf32_sparc)"
355 eelf32_i960.c: $(srcdir)/emulparams/elf32_i960.sh \
356 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
357 ${GENSCRIPTS} elf32_i960 "$(tdir_elf32_i960)"
358 eelf32b4300.c: $(srcdir)/emulparams/elf32b4300.sh \
359 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
360 ${GENSCRIPTS} elf32b4300 "$(tdir_elf32b4300)"
361 eelf32bmip.c: $(srcdir)/emulparams/elf32bmip.sh \
362 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
363 ${GENSCRIPTS} elf32bmip "$(tdir_elf32bmip)"
364 eelf32bsmip.c: $(srcdir)/emulparams/elf32bsmip.sh \
365 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
366 ${GENSCRIPTS} elf32bsmip "$(tdir_elf32bsmip)"
367 eelf32ebmip.c: $(srcdir)/emulparams/elf32ebmip.sh \
368 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
369 ${GENSCRIPTS} elf32ebmip "$(tdir_elf32ebmip)"
370 eelf32elmip.c: $(srcdir)/emulparams/elf32elmip.sh \
371 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
372 ${GENSCRIPTS} elf32elmip "$(tdir_elf32elmip)"
373 eelf32bmipn32.c: $(srcdir)/emulparams/elf32bmipn32.sh \
374 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
375 ${GENSCRIPTS} elf32bmipn32 "$(tdir_elf32bmipn32)"
376 eelf32l4300.c: $(srcdir)/emulparams/elf32l4300.sh \
377 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
378 ${GENSCRIPTS} elf32l4300 "$(tdir_elf32l4300)"
379 eelf32lmip.c: $(srcdir)/emulparams/elf32lmip.sh \
380 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
381 ${GENSCRIPTS} elf32lmip "$(tdir_elf32lmip)"
382 eelf32lppc.c: $(srcdir)/emulparams/elf32lppc.sh \
383 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
384 ${GENSCRIPTS} elf32lppc "$(tdir_elf32lppc)"
385 eelf32lsmip.c: $(srcdir)/emulparams/elf32lsmip.sh \
386 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
387 ${GENSCRIPTS} elf32lsmip "$(tdir_elf32lsmip)"
388 eelf32ppc.c: $(srcdir)/emulparams/elf32ppc.sh \
389 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
390 ${GENSCRIPTS} elf32ppc "$(tdir_elf32ppc)"
391 eelf32ppclinux.c: $(srcdir)/emulparams/elf32ppclinux.sh \
392 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
393 ${GENSCRIPTS} elf32ppclinux "$(tdir_elf32ppclinux)"
394 eelf64alpha.c: $(srcdir)/emulparams/elf64alpha.sh \
395 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
396 ${GENSCRIPTS} elf64alpha "$(tdir_elf64alpha)"
397 eelf64hppa.c: $(srcdir)/emulparams/elf64hppa.sh \
398 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
399 ${GENSCRIPTS} elf64hppa "$(tdir_elf64hppa)"
400 eelf64_sparc.c: $(srcdir)/emulparams/elf64_sparc.sh \
401 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
402 ${GENSCRIPTS} elf64_sparc "$(tdir_elf64_sparc)"
403 eelf64bmip.c: $(srcdir)/emulparams/elf64bmip.sh \
404 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
405 ${GENSCRIPTS} elf64bmip "$(tdir_elf64bmip)"
406 eelf_i386.c: $(srcdir)/emulparams/elf_i386.sh \
407 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
408 ${GENSCRIPTS} elf_i386 "$(tdir_elf_i386)"
409 eelf_i386_be.c: $(srcdir)/emulparams/elf_i386_be.sh \
410 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
411 ${GENSCRIPTS} elf_i386_be "$(tdir_elf_i386_be)"
412 egld960.c: $(srcdir)/emulparams/gld960.sh \
413 $(srcdir)/emultempl/gld960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
414 ${GENSCRIPTS} gld960 "$(tdir_gld960)"
415 egld960coff.c: $(srcdir)/emulparams/gld960coff.sh \
416 $(srcdir)/emultempl/gld960c.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
417 ${GENSCRIPTS} gld960coff "$(tdir_gld960coff)"
418 eh8300.c: $(srcdir)/emulparams/h8300.sh \
419 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS}
420 ${GENSCRIPTS} h8300 "$(tdir_h8300)"
421 eh8300h.c: $(srcdir)/emulparams/h8300h.sh \
422 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300h.sc ${GEN_DEPENDS}
423 ${GENSCRIPTS} h8300h "$(tdir_h8300h)"
424 eh8300s.c: $(srcdir)/emulparams/h8300s.sh \
425 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300s.sc ${GEN_DEPENDS}
426 ${GENSCRIPTS} h8300s "$(tdir_h8300s)"
427 eh8500.c: $(srcdir)/emulparams/h8500.sh \
428 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500.sc ${GEN_DEPENDS}
429 ${GENSCRIPTS} h8500 "$(tdir_h8500)"
430 eh8500b.c: $(srcdir)/emulparams/h8500b.sh \
431 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500b.sc ${GEN_DEPENDS}
432 ${GENSCRIPTS} h8500b "$(tdir_h8500b)"
433 eh8500c.c: $(srcdir)/emulparams/h8500c.sh \
434 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500c.sc ${GEN_DEPENDS}
435 ${GENSCRIPTS} h8500c "$(tdir_h8500c)"
436 eh8500m.c: $(srcdir)/emulparams/h8500m.sh \
437 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500m.sc ${GEN_DEPENDS}
438 ${GENSCRIPTS} h8500m "$(tdir_h8500m)"
439 eh8500s.c: $(srcdir)/emulparams/h8500s.sh \
440 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500s.sc ${GEN_DEPENDS}
441 ${GENSCRIPTS} h8500s "$(tdir_h8500s)"
442 ehp300bsd.c: $(srcdir)/emulparams/hp300bsd.sh \
443 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
444 ${GENSCRIPTS} hp300bsd "$(tdir_hp300bsd)"
445 ehp3hpux.c: $(srcdir)/emulparams/hp3hpux.sh \
446 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
447 ${GENSCRIPTS} hp3hpux "$(tdir_hp3hpux)"
448 ehppaelf.c: $(srcdir)/emulparams/hppaelf.sh \
449 $(srcdir)/emultempl/hppaelf.em $(srcdir)/scripttempl/hppaelf.sc ${GEN_DEPENDS}
450 ${GENSCRIPTS} hppaelf "$(tdir_hppaelf)"
451 ei386aout.c: $(srcdir)/emulparams/i386aout.sh \
452 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
453 ${GENSCRIPTS} i386aout "$(tdir_i386aout)"
454 ei386beos.c: $(srcdir)/emulparams/i386beos.sh \
455 $(srcdir)/emultempl/beos.em $(srcdir)/scripttempl/i386beos.sc ${GEN_DEPENDS}
456 ${GENSCRIPTS} i386beos "$(tdir_i386beos)"
457 ei386bsd.c: $(srcdir)/emulparams/i386bsd.sh \
458 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
459 ${GENSCRIPTS} i386bsd "$(tdir_i386bsd)"
460 ei386coff.c: $(srcdir)/emulparams/i386coff.sh \
461 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386coff.sc ${GEN_DEPENDS}
462 ${GENSCRIPTS} i386coff "$(tdir_i386coff)"
463 ei386go32.c: $(srcdir)/emulparams/i386go32.sh \
464 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386go32.sc ${GEN_DEPENDS}
465 ${GENSCRIPTS} i386go32 "$(tdir_i386go32)"
466 ei386linux.c: $(srcdir)/emulparams/i386linux.sh \
467 $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
468 ${GENSCRIPTS} i386linux "$(tdir_i386linux)"
469 ei386lynx.c: $(srcdir)/emulparams/i386lynx.sh \
470 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386lynx.sc ${GEN_DEPENDS}
471 ${GENSCRIPTS} i386lynx "$(tdir_i386lynx)"
472 ei386mach.c: $(srcdir)/emulparams/i386mach.sh \
473 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
474 ${GENSCRIPTS} i386mach "$(tdir_i386mach)"
475 ei386moss.c: $(srcdir)/emulparams/i386moss.sh \
476 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
477 ${GENSCRIPTS} i386moss "$(tdir_i386moss)"
478 ei386msdos.c: $(srcdir)/emulparams/i386msdos.sh \
479 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386msdos.sc ${GEN_DEPENDS}
480 ${GENSCRIPTS} i386msdos "$(tdir_i386msdos)"
481 ei386nbsd.c: $(srcdir)/emulparams/i386nbsd.sh \
482 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
483 ${GENSCRIPTS} i386nbsd "$(tdir_i386nbsd)"
484 ei386nw.c: $(srcdir)/emulparams/i386nw.sh \
485 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
486 ${GENSCRIPTS} i386nw "$(tdir_i386nw)"
487 ei386pe.c: $(srcdir)/emulparams/i386pe.sh \
488 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
489 ${GENSCRIPTS} i386pe "$(tdir_i386pe)"
490 ei386pe_posix.c: $(srcdir)/emulparams/i386pe_posix.sh \
491 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
492 ${GENSCRIPTS} i386pe_posix "$(tdir_i386pe_posix)"
493 elnk960.c: $(srcdir)/emulparams/lnk960.sh \
494 $(srcdir)/emultempl/lnk960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
495 ${GENSCRIPTS} lnk960 "$(tdir_lnk960)"
496 em68k4knbsd.c: $(srcdir)/emulparams/m68k4knbsd.sh \
497 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
498 ${GENSCRIPTS} m68k4knbsd "$(tdir_m68k4knbsd)"
499 em68kaout.c: $(srcdir)/emulparams/m68kaout.sh \
500 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
501 ${GENSCRIPTS} m68kaout "$(tdir_m68kaout)"
502 em68kaux.c: $(srcdir)/emulparams/m68kaux.sh \
503 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kaux.sc ${GEN_DEPENDS}
504 ${GENSCRIPTS} m68kaux "$(tdir_m68kaux)"
505 em68kcoff.c: $(srcdir)/emulparams/m68kcoff.sh \
506 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kcoff.sc ${GEN_DEPENDS}
507 ${GENSCRIPTS} m68kcoff "$(tdir_m68kcoff)"
508 em68kelf.c: $(srcdir)/emulparams/m68kelf.sh \
509 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
510 ${GENSCRIPTS} m68kelf "$(tdir_m68kelf)"
511 em68klinux.c: $(srcdir)/emulparams/m68klinux.sh \
512 $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
513 ${GENSCRIPTS} m68klinux "$(tdir_m68klinux)"
514 em68klynx.c: $(srcdir)/emulparams/m68klynx.sh \
515 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68klynx.sc ${GEN_DEPENDS}
516 ${GENSCRIPTS} m68klynx "$(tdir_m68klynx)"
517 em68knbsd.c: $(srcdir)/emulparams/m68knbsd.sh \
518 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
519 ${GENSCRIPTS} m68knbsd "$(tdir_m68knbsd)"
520 em68kpsos.c: $(srcdir)/emulparams/m68kpsos.sh \
521 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/psos.sc ${GEN_DEPENDS}
522 ${GENSCRIPTS} m68kpsos "$(tdir_m68kpsos)"
523 em88kbcs.c: $(srcdir)/emulparams/m88kbcs.sh \
524 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m88kbcs.sc ${GEN_DEPENDS}
525 ${GENSCRIPTS} m88kbcs "$(tdir_m88kbcs)"
526 emcorepe.c: $(srcdir)/emulparams/mcorepe.sh \
527 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
528 ${GENSCRIPTS} mcorepe "$(tdir_mcorepe)"
529 emipsbig.c: $(srcdir)/emulparams/mipsbig.sh \
530 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
531 ${GENSCRIPTS} mipsbig
532 emipsbsd.c: $(srcdir)/emulparams/mipsbsd.sh \
533 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mipsbsd.sc ${GEN_DEPENDS}
534 ${GENSCRIPTS} mipsbsd
535 emipsidt.c: $(srcdir)/emulparams/mipsidt.sh \
536 $(srcdir)/emultempl/mipsecoff.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
537 ${GENSCRIPTS} mipsidt "$(tdir_mipsidt)"
538 emipsidtl.c: $(srcdir)/emulparams/mipsidtl.sh \
539 $(srcdir)/emultempl/mipsecoff.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
540 ${GENSCRIPTS} mipsidtl "$(tdir_mipsidtl)"
541 emipslit.c: $(srcdir)/emulparams/mipslit.sh \
542 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
543 ${GENSCRIPTS} mipslit "$(tdir_mipslit)"
544 emipslnews.c: $(srcdir)/emulparams/mipslnews.sh \
545 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
546 ${GENSCRIPTS} mipslnews
547 emn10300.c: $(srcdir)/emulparams/mn10300.sh \
548 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
549 ${GENSCRIPTS} mn10300 "$(tdir_mn10300)"
550 emn10200.c: $(srcdir)/emulparams/mn10200.sh \
551 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
552 ${GENSCRIPTS} mn10200 "$(tdir_mn10200)"
553 enews.c: $(srcdir)/emulparams/news.sh \
554 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
555 ${GENSCRIPTS} news "$(tdir_news)"
556 ens32knbsd.c: $(srcdir)/emulparams/ns32knbsd.sh \
557 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
558 ${GENSCRIPTS} ns32knbsd "$(tdir_ns32knbsd)"
559 epc532macha.c: $(srcdir)/emulparams/pc532macha.sh \
560 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
561 ${GENSCRIPTS} pc532macha "$(tdir_pc532macha)"
562 epjelf.c: $(srcdir)/emulparams/pjelf.sh \
563 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
564 ${GENSCRIPTS} pjelf "$(tdir_pjelf)"
565 epjlelf.c: $(srcdir)/emulparams/pjlelf.sh \
566 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
567 ${GENSCRIPTS} pjlelf "$(tdir_pjlelf)"
568 eppcmacos.c: $(srcdir)/emulparams/ppcmacos.sh \
569 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
570 ${GENSCRIPTS} ppcmacos "$(tdir_ppcmacos)"
571 eppcnw.c: $(srcdir)/emulparams/ppcnw.sh \
572 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
573 ${GENSCRIPTS} ppcnw "$(tdir_ppcnw)"
574 eppcpe.c: $(srcdir)/emulparams/ppcpe.sh \
575 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/ppcpe.sc ${GEN_DEPENDS}
576 ${GENSCRIPTS} ppcpe "$(tdir_ppcpe)"
577 eriscix.c: $(srcdir)/emulparams/riscix.sh \
578 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
579 ${GENSCRIPTS} riscix "$(tdir_riscix)"
580 esa29200.c: $(srcdir)/emulparams/sa29200.sh \
581 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sa29200.sc ${GEN_DEPENDS}
582 ${GENSCRIPTS} sa29200 "$(tdir_sa29200)"
583 esh.c: $(srcdir)/emulparams/sh.sh \
584 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
585 ${GENSCRIPTS} sh "$(tdir_sh)"
586 eshelf.c: $(srcdir)/emulparams/shelf.sh \
587 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
588 ${GENSCRIPTS} shelf "$(tdir_shelf)"
589 eshlelf.c: $(srcdir)/emulparams/shlelf.sh \
590 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
591 ${GENSCRIPTS} shlelf "$(tdir_shlelf)"
592 eshl.c: $(srcdir)/emulparams/shl.sh \
593 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
594 ${GENSCRIPTS} shl "$(tdir_shl)"
595 esparcaout.c: $(srcdir)/emulparams/sparcaout.sh \
596 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
597 ${GENSCRIPTS} sparcaout "$(tdir_sparcaout)"
598 esparclinux.c: $(srcdir)/emulparams/sparclinux.sh \
599 $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
600 ${GENSCRIPTS} sparclinux "$(tdir_sparclinux)"
601 esparclynx.c: $(srcdir)/emulparams/sparclynx.sh \
602 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparclynx.sc ${GEN_DEPENDS}
603 ${GENSCRIPTS} sparclynx "$(tdir_sparclynx)"
604 esparcnbsd.c: $(srcdir)/emulparams/sparcnbsd.sh \
605 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
606 ${GENSCRIPTS} sparcnbsd "$(tdir_sparcnbsd)"
607 est2000.c: $(srcdir)/emulparams/st2000.sh \
608 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS}
609 ${GENSCRIPTS} st2000 "$(tdir_st2000)"
610 esun3.c: $(srcdir)/emulparams/sun3.sh \
611 $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
612 ${GENSCRIPTS} sun3 "$(tdir_sun3)"
613 esun4.c: $(srcdir)/emulparams/sun4.sh \
614 $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
615 ${GENSCRIPTS} sun4 "$(tdir_sun4)"
616 etic30aout.c: $(srcdir)/emulparams/tic30aout.sh \
617 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30aout.sc ${GEN_DEPENDS}
618 ${GENSCRIPTS} tic30aout "$(tdir_tic30aout)"
619 etic30coff.c: $(srcdir)/emulparams/tic30coff.sh \
620 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30coff.sc ${GEN_DEPENDS}
621 ${GENSCRIPTS} tic30coff "$(tdir_tic30coff)"
622 etic80coff.c: $(srcdir)/emulparams/tic80coff.sh \
623 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic80coff.sc ${GEN_DEPENDS}
624 ${GENSCRIPTS} tic80coff "$(tdir_tic80coff)"
625 evanilla.c: $(srcdir)/emulparams/vanilla.sh \
626 $(srcdir)/emultempl/vanilla.em $(srcdir)/scripttempl/vanilla.sc ${GEN_DEPENDS}
627 ${GENSCRIPTS} vanilla "$(tdir_vanilla)"
628 evax.c: $(srcdir)/emulparams/vax.sh \
629 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
630 ${GENSCRIPTS} vax "$(tdir_vax)"
631 evsta.c: $(srcdir)/emulparams/vsta.sh \
632 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
633 ${GENSCRIPTS} vsta "$(tdir_vsta)"
634 ev850.c: $(srcdir)/emulparams/v850.sh \
635 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/v850.sc ${GEN_DEPENDS}
636 ${GENSCRIPTS} v850 "$(tdir_v850)"
637 ew65.c: $(srcdir)/emulparams/w65.sh \
638 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/w65.sc ${GEN_DEPENDS}
639 ${GENSCRIPTS} w65 "$(tdir_w65)"
640 ez8001.c: $(srcdir)/emulparams/z8001.sh \
641 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
642 ${GENSCRIPTS} z8001 "$(tdir_z8001)"
643 ez8002.c: $(srcdir)/emulparams/z8002.sh \
644 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
645 ${GENSCRIPTS} z8002 "$(tdir_z8002)"
647 ld_new_SOURCES = ldgram.y ldlex.l lexsup.c ldlang.c mri.c ldctor.c ldmain.c \
648 ldwrite.c ldexp.c ldemul.c ldver.c ldmisc.c ldfile.c ldcref.c
649 ld_new_DEPENDENCIES = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBIBERTY) $(INTLDEPS)
650 ld_new_LDADD = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBIBERTY) $(INTLLIBS)
652 # The generated emulation files mostly have the same dependencies.
653 $(EMULATION_OFILES): ../bfd/bfd.h sysdep.h config.h $(INCDIR)/bfdlink.h \
654 ld.h ldmain.h ldemul.h ldfile.h ldmisc.h ldexp.h ldlang.h \
655 ldctor.h ldexp.h ldlang.h ldgram.h
657 # This is the real libbfd.a created by libtool.
658 TESTBFDLIB = @TESTBFDLIB@
660 check-DEJAGNU: site.exp
661 srcroot=`cd $(srcdir) && pwd`; export srcroot; \
663 EXPECT=$(EXPECT); export EXPECT; \
664 if [ -f $(top_builddir)/../expect/expect ]; then \
665 TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \
666 export TCL_LIBRARY; \
668 runtest=$(RUNTEST); \
669 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
670 $$runtest --tool $(DEJATOOL) --srcdir $${srcroot}/testsuite \
671 CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)" \
672 CXX="$(CXX_FOR_TARGET)" CXXFLAGS="$(CXXFLAGS)" \
673 CC_FOR_HOST="$(CC)" CFLAGS_FOR_HOST="$(CFLAGS)" \
674 OFILES="$(OFILES)" BFDLIB="$(TESTBFDLIB)" \
675 LIBIBERTY="$(LIBIBERTY) $(INTLLIBS)" \
677 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
680 # Rules for testing by relinking ld itself.
681 # A similar test is in the testsuite. This target is for ease of use
684 ld-partial.o: ld-new$(EXEEXT)
685 ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld-partial.o -r $(OFILES)
686 ld1$(EXEEXT): ld-partial.o
687 ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld1$(EXEEXT) $(HOSTING_CRT0) ld-partial.o $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
689 ld1-full$(EXEEXT): ld-new
690 ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld1-full$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
692 ld2$(EXEEXT): ld1$(EXEEXT)
693 ./ld1$(EXEEXT) $(HOSTING_EMU) -o ld2$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
695 ld3$(EXEEXT): ld2$(EXEEXT)
696 ./ld2$(EXEEXT) $(HOSTING_EMU) -o ld3$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
698 bootstrap: ld3$(EXEEXT)
699 cmp ld2$(EXEEXT) ld3$(EXEEXT)
703 # A test program for C++ constructors and destructors.
704 # This test is now in the testsuite.
706 #cdtest: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
707 # ./ld.new $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \
708 # cdtest-main.o cdtest-bar.o cdtest-foo.o $(HOSTING_LIBS)
711 # ./cdtest > cdtest.tmp
712 # mv cdtest.tmp cdtest.out
714 #cdtest-ur.o: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
715 # ./ld.new $(HOSTING_EMU) -o cdtest-ur.o -Ur cdtest-main.o \
716 # cdtest-bar.o cdtest-foo.o
718 #cdtest-ur: cdtest-ur.o
719 # ./ld.new $(HOSTING_EMU) -o cdtest-ur $(HOSTING_CRT0) cdtest-ur.o \
722 #cdtest-ur.out: cdtest-ur
723 # ./cdtest-ur > cdtest-ur.tmp
724 # mv cdtest-ur.tmp cdtest-ur.out
726 #check-cdtest: cdtest.out cdtest-ur.out $(srcdir)/cdtest.exp
727 # diff $(srcdir)/cdtest.exp cdtest.out
728 # diff $(srcdir)/cdtest.exp cdtest-ur.out
730 #.PHONY: check-cdtest
732 # END OF CHECK TARGETS
734 # DOCUMENTATION TARGETS
735 # Manual configuration file; not usually attached to normal configuration,
736 # because almost all configs use "gen" version of manual.
737 # Set DOCVER above to change.
738 configdoc.texi: ${DOCVER}-doc.texi
739 ln -s ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi >/dev/null 2>&1 \
740 || ln ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi >/dev/null 2>&1 \
741 || cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi
745 echo '@set VERSION $(VERSION)' > $@
747 ld.info: $(srcdir)/ld.texinfo configdoc.texi ldver.texi
748 @rm -f $@ $@-[0-9] $@-[0-9][0-9]
749 $(MAKEINFO) -I $(srcdir) -I $(BFDDIR)/doc $(srcdir)/ld.texinfo
751 ld.dvi: $(srcdir)/ld.texinfo configdoc.texi ldver.texi
752 TEXINPUTS=$(top_srcdir)/../texinfo:$$TEXINPUTS \
753 MAKEINFO="$(MAKEINFO) -I $(srcdir) -I $(BFDDIR)/doc" $(TEXI2DVI) $(srcdir)/ld.texinfo
755 MAINTAINERCLEANFILES = ldver.texi
757 # We want to reconfigure if configure.host or configure.tgt changes.
758 config.status: $(srcdir)/configure $(srcdir)/configure.host $(srcdir)/configure.tgt
759 $(SHELL) ./config.status --recheck
761 MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \
762 ldemul-list.h crtbegin.o crtend.o ld.log ld.sum
765 CLEANFILES = dep.sed DEP DEP1
767 .PHONY: install-exec-local install-data-local
769 install-exec-local: ld-new$(EXEEXT)
770 $(mkinstalldirs) $(bindir) $(tooldir)/bin
771 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
772 if test -f $$p; then \
773 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
774 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
777 n=`echo ld | sed '$(transform)'`; \
778 if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/ld$(EXEEXT)" ]; then \
779 rm -f $(tooldir)/bin/ld$(EXEEXT); \
780 ln $(bindir)/$$n$(EXEEXT) $(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \
781 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(tooldir)/bin/ld$(EXEEXT); \
785 $(mkinstalldirs) $(scriptdir)/ldscripts
786 for f in ldscripts/*; do \
787 $(INSTALL_DATA) $$f $(scriptdir)/$$f ; \
790 # Stuff that should be included in a distribution. The diststuff
791 # target is run by the taz target in ../Makefile.in.
792 LDDISTSTUFF = ldgram.c ldgram.h ldlex.c
793 diststuff: $(LDDISTSTUFF) info
795 DISTCLEANFILES = tdirs site.exp site.bak
799 # Targets to rebuild dependencies in this Makefile.
800 # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
801 DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
803 $(MAKE) MKDEP=$(MKDEP) DEP1
804 sed -f dep.sed <DEP1 >DEP
806 # This rule really wants a mkdep that runs "gcc -MM".
807 DEP1: $(CFILES) $(GENERATED_CFILES)
809 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
810 $(MKDEP) -f DEP2 $(INCLUDES) $?
811 $(srcdir)/../move-if-change DEP2 DEP1
813 dep.sed: dep-in.sed config.status
814 sed <$(srcdir)/dep-in.sed >dep.sed \
815 -e 's!@INCDIR@!$(INCDIR)!' \
816 -e 's!@SRCDIR@!$(srcdir)!'
819 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
820 cat DEP >> tmp-Makefile
821 $(srcdir)/../move-if-change tmp-Makefile Makefile
824 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
825 cat DEP >> tmp-Makefile.in
826 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
829 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
830 cat DEP >> tmp-Makefile.am
831 $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
833 .PHONY: dep dep-in dep-am
835 # What appears below is generated by a hacked mkdep using gcc -MM.
837 # DO NOT DELETE THIS LINE -- mkdep uses it.
838 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
840 ldctor.o: ldctor.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
841 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
842 ld.h ldexp.h ldlang.h ldmisc.h ldgram.h ldmain.h ldctor.h
843 ldemul.o: ldemul.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
844 sysdep.h config.h $(INCDIR)/fopen-same.h ld.h ldemul.h \
845 ldmisc.h ldexp.h ldlang.h ldfile.h ldmain.h ldemul-list.h
846 ldexp.o: ldexp.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
847 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
848 ld.h ldmain.h ldmisc.h ldexp.h ldgram.h ldlang.h
849 ldfile.o: ldfile.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
850 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
851 ld.h ldmisc.h ldexp.h ldlang.h ldfile.h ldmain.h ldgram.h \
853 ldlang.o: ldlang.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
854 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
855 $(INCDIR)/obstack.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
856 ldgram.h ldexp.h ldlang.h ldemul.h ldlex.h ldmisc.h \
857 ldctor.h ldfile.h $(INCDIR)/fnmatch.h $(INCDIR)/demangle.h
858 ldmain.o: ldmain.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
859 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
860 $(INCDIR)/progress.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
861 ldmisc.h ldwrite.h ldgram.h ldexp.h ldlang.h ldemul.h \
862 ldlex.h ldfile.h ldctor.h
863 ldmisc.o: ldmisc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
864 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
865 $(INCDIR)/demangle.h ld.h ldmisc.h ldexp.h ldlang.h \
866 ldgram.h ldlex.h ldmain.h ldfile.h
867 ldver.o: ldver.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
868 sysdep.h config.h $(INCDIR)/fopen-same.h ld.h ldver.h \
870 ldwrite.o: ldwrite.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
871 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
872 $(INCDIR)/libiberty.h ld.h ldexp.h ldlang.h ldwrite.h \
873 ldmisc.h ldgram.h ldmain.h
874 lexsup.o: lexsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
875 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
876 $(INCDIR)/getopt.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
877 ldmisc.h ldexp.h ldlang.h ldgram.h ldlex.h ldfile.h \
879 mri.o: mri.c ../bfd/bfd.h $(INCDIR)/ansidecl.h sysdep.h \
880 config.h $(INCDIR)/fopen-same.h ld.h ldexp.h ldlang.h \
881 ldmisc.h mri.h ldgram.h $(INCDIR)/libiberty.h
882 ldcref.o: ldcref.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
883 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
884 $(INCDIR)/libiberty.h ld.h ldmain.h ldmisc.h ldexp.h \
886 pe-dll.o: pe-dll.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
887 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
888 $(INCDIR)/libiberty.h ld.h ldexp.h ldlang.h ldwrite.h \
889 ldmisc.h ldgram.h ldmain.h ldemul.h $(INCDIR)/coff/internal.h \
890 ../bfd/libcoff.h deffile.h pe-dll.h
891 ldgram.o: ldgram.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
892 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
893 ld.h ldexp.h ldver.h ldlang.h ldemul.h ldfile.h ldmisc.h \
894 ldmain.h mri.h ldctor.h ldlex.h
895 ldlex.o: ldlex.c ../bfd/bfd.h sysdep.h config.h $(INCDIR)/fopen-same.h \
896 ld.h ldgram.h ldmisc.h ldexp.h ldlang.h ldfile.h ldlex.h \
898 deffilep.o: deffilep.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
899 ../bfd/bfd.h sysdep.h config.h $(INCDIR)/fopen-same.h \
900 ld.h ldmisc.h deffile.h
902 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY