1## Process this file with automake to generate Makefile.in 2# 3# Copyright (C) 2012-2020 Free Software Foundation, Inc. 4# 5# This file is free software; you can redistribute it and/or modify 6# it under the terms of the GNU General Public License as published by 7# the Free Software Foundation; either version 3 of the License, or 8# (at your option) any later version. 9# 10# This program is distributed in the hope that it will be useful, 11# but WITHOUT ANY WARRANTY; without even the implied warranty of 12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13# GNU General Public License for more details. 14# 15# You should have received a copy of the GNU General Public License 16# along with this program; see the file COPYING3. If not see 17# <http://www.gnu.org/licenses/>. 18# 19 20AUTOMAKE_OPTIONS = dejagnu no-texinfo.tex no-dist foreign info-in-builddir 21ACLOCAL_AMFLAGS = -I .. -I ../config -I ../bfd 22TEXINFO_TEX = ../texinfo/texinfo.tex 23 24SUBDIRS = po 25 26tooldir = $(exec_prefix)/$(target_alias) 27 28YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi` 29YFLAGS = -d 30LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi` 31 32# Automake 1.10+ disables lex and yacc output file regeneration if 33# maintainer mode is disabled. Avoid this. 34am__skiplex = 35am__skipyacc = 36 37# This is where we get zlib from. zlibdir is -L../zlib and zlibinc is 38# -I../zlib, unless we were configured with --with-system-zlib, in which 39# case both are empty. 40ZLIB = @zlibdir@ -lz 41ZLIBINC = @zlibinc@ 42 43ELF_CLFAGS=-DELF_LIST_OPTIONS=@elf_list_options@ \ 44 -DELF_SHLIB_LIST_OPTIONS=@elf_shlib_list_options@ \ 45 -DELF_PLT_UNWIND_LIST_OPTIONS=@elf_plt_unwind_list_options@ 46WARN_CFLAGS = @WARN_CFLAGS@ 47NO_WERROR = @NO_WERROR@ 48AM_CFLAGS = $(WARN_CFLAGS) $(ELF_CLFAGS) 49 50# Conditionally enable the plugin interface. 51if ENABLE_PLUGINS 52PLUGIN_C = plugin.c 53PLUGIN_H = plugin.h 54PLUGIN_OBJECT = plugin.@OBJEXT@ 55PLUGIN_CFLAGS = -DENABLE_PLUGINS 56else 57PLUGIN_C = 58PLUGIN_H = 59PLUGIN_OBJECT = 60PLUGIN_CFLAGS = 61endif 62 63# We put the scripts in the directory $(scriptdir)/ldscripts. 64# We can't put the scripts in $(datadir) because the SEARCH_DIR 65# directives need to be different for native and cross linkers. 66scriptdir = $(tooldir)/lib 67 68EMUL = @EMUL@ 69EMULATION_OFILES = @EMULATION_OFILES@ 70EMUL_EXTRA_OFILES = @EMUL_EXTRA_OFILES@ 71 72 73# Search path to override the default search path for -lfoo libraries. 74# If LIB_PATH is empty, the ones in the script (if any) are left alone. 75# (The default is usually /lib:/usr/lib:/usr/local/lib, unless building 76# a cross-linker, in which case the default is empty. See genscripts.sh.) 77# Otherwise, they are replaced with the ones given in LIB_PATH, 78# which may have the form: LIB_PATH=/lib:/usr/local/lib. This can be set 79# when the linker is configured via the --with-lib-path configure switch. 80LIB_PATH = @LIB_PATH@ 81 82BASEDIR = $(srcdir)/.. 83BFDDIR = $(BASEDIR)/bfd 84INCDIR = $(BASEDIR)/include 85 86# What version of the manual to build 87DOCVER = gen 88 89# Options to extract the man page from ld.texi 90MANCONF = -Dman 91 92TEXI2POD = perl $(BASEDIR)/etc/texi2pod.pl $(AM_MAKEINFOFLAGS) 93 94POD2MAN = pod2man --center="GNU Development Tools" \ 95 --release="binutils-$(VERSION)" --section=1 96 97# Setup the testing framework, if you have one 98EXPECT = expect 99RUNTEST = runtest 100RUNTESTFLAGS = 101 102CC_FOR_TARGET = ` \ 103 if [ -f $$r/../gcc/xgcc ] ; then \ 104 if [ -f $$r/../newlib/Makefile ] ; then \ 105 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \ 106 else \ 107 echo $$r/../gcc/xgcc -B$$r/../gcc/; \ 108 fi; \ 109 else \ 110 if [ "@host@" = "@target@" ] ; then \ 111 echo $(CC); \ 112 else \ 113 echo gcc | sed '$(transform)'; \ 114 fi; \ 115 fi` 116 117CXX_FOR_TARGET = ` \ 118 if [ -f $$r/../gcc/g++ ] ; then \ 119 if [ -f $$r/../newlib/Makefile ] ; then \ 120 echo $$r/../gcc/g++ -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \ 121 else \ 122 echo $$r/../gcc/g++ -B$$r/../gcc/; \ 123 fi; \ 124 elif [ -f $$r/../gcc/xg++ ] ; then \ 125 if [ -f $$r/../newlib/Makefile ] ; then \ 126 echo $$r/../gcc/xg++ -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \ 127 else \ 128 echo $$r/../gcc/xg++ -B$$r/../gcc/; \ 129 fi; \ 130 else \ 131 if [ "@host@" = "@target@" ] ; then \ 132 echo $(CXX); \ 133 else \ 134 echo g++ | sed '$(transform)'; \ 135 fi; \ 136 fi` 137 138# Strip out sanitization options as we want to test building binaries without any extra paraphernalia 139CFLAGS_FOR_TARGET = `echo $(CFLAGS) | sed -e 's/-fsanitize=address//g' -e 's/-fsanitize=undefined//g'` 140CXXFLAGS_FOR_TARGET = `echo $(CXXFLAGS) | sed -e 's/-fsanitize=address//g' -e 's/-fsanitize=undefined//g'` 141 142transform = s/^ld-new$$/$(installed_linker)/;@program_transform_name@ 143bin_PROGRAMS = ld-new 144info_TEXINFOS = ld.texi 145ld_TEXINFOS = configdoc.texi 146noinst_TEXINFOS = ldint.texi 147man_MANS = ld.1 148 149AM_MAKEINFOFLAGS = -I $(srcdir) -I $(BFDDIR)/doc -I ../bfd/doc \ 150 -I $(top_srcdir)/../libiberty 151TEXI2DVI = texi2dvi -I $(srcdir) -I $(BFDDIR)/doc -I ../bfd/doc \ 152 -I $(top_srcdir)/../libiberty 153 154AM_CPPFLAGS = -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) @zlibinc@ \ 155 @INCINTL@ $(HDEFINES) $(CFLAGS) $(PLUGIN_CFLAGS) \ 156 -DLOCALEDIR="\"$(datadir)/locale\"" 157 158BFDLIB = ../bfd/libbfd.la 159LIBIBERTY = ../libiberty/libiberty.a 160LIBCTF = ../libctf/libctf.la 161 162# These all start with e so 'make clean' can find them. 163ALL_EMULATION_SOURCES = \ 164 eaix5ppc.c \ 165 eaix5rs6.c \ 166 eaixppc.c \ 167 eaixrs6.c \ 168 ealpha.c \ 169 ealphavms.c \ 170 earcv2elf.c \ 171 earcv2elfx.c \ 172 earcelf.c \ 173 earclinux.c \ 174 earclinux_nps.c \ 175 earm_wince_pe.c \ 176 earmelf.c \ 177 earmelf_fbsd.c \ 178 earmelf_fuchsia.c \ 179 earmelf_linux.c \ 180 earmelf_linux_eabi.c \ 181 earmelf_linux_fdpiceabi.c \ 182 earmelf_nacl.c \ 183 earmelf_nbsd.c \ 184 earmelf_nbsd_eabi.c \ 185 earmelf_nbsd_eabihf.c \ 186 earmelf_phoenix.c \ 187 earmelf_vxworks.c \ 188 earmelfb.c \ 189 earmelfb_fbsd.c \ 190 earmelfb_fuchsia.c \ 191 earmelfb_linux.c \ 192 earmelfb_linux_eabi.c \ 193 earmelfb_linux_fdpiceabi.c \ 194 earmelfb_nacl.c \ 195 earmelfb_nbsd.c \ 196 earmelfb_nbsd_eabi.c \ 197 earmelfb_nbsd_eabihf.c \ 198 earmnbsd.c \ 199 earmnto.c \ 200 earmpe.c \ 201 earmsymbian.c \ 202 eavr1.c \ 203 eavr2.c \ 204 eavr25.c \ 205 eavr3.c \ 206 eavr31.c \ 207 eavr35.c \ 208 eavr4.c \ 209 eavr5.c \ 210 eavr51.c \ 211 eavr6.c \ 212 eavrxmega1.c \ 213 eavrxmega2.c \ 214 eavrxmega3.c \ 215 eavrxmega4.c \ 216 eavrxmega5.c \ 217 eavrxmega6.c \ 218 eavrxmega7.c \ 219 eavrtiny.c \ 220 ecrisaout.c \ 221 ecriself.c \ 222 ecrislinux.c \ 223 ecskyelf.c \ 224 ecskyelf_linux.c \ 225 ed10velf.c \ 226 ed30v_e.c \ 227 ed30v_o.c \ 228 ed30velf.c \ 229 eelf32_dlx.c \ 230 eelf32_sparc.c \ 231 eelf32_sparc_sol2.c \ 232 eelf32_sparc_vxworks.c \ 233 eelf32_spu.c \ 234 eelf32_tic6x_be.c \ 235 eelf32_tic6x_le.c \ 236 eelf32_tic6x_linux_be.c \ 237 eelf32_tic6x_linux_le.c \ 238 eelf32_tic6x_elf_be.c \ 239 eelf32_tic6x_elf_le.c \ 240 eelf32am33lin.c \ 241 eelf32bfin.c \ 242 eelf32bfinfd.c \ 243 eelf32cr16.c \ 244 eelf32crx.c \ 245 eelf32epiphany.c \ 246 eelf32epiphany_4x4.c \ 247 eelf32fr30.c \ 248 eelf32frv.c \ 249 eelf32frvfd.c \ 250 eelf32ft32.c \ 251 eelf32ip2k.c \ 252 eelf32iq10.c \ 253 eelf32iq2000.c \ 254 eelf32lm32.c \ 255 eelf32lm32fd.c \ 256 eelf32lppc.c \ 257 eelf32lppclinux.c \ 258 eelf32lppcnto.c \ 259 eelf32lppcsim.c \ 260 eelf32lriscv.c \ 261 eelf32lsmip.c \ 262 eelf32ltsmip.c \ 263 eelf32ltsmip_fbsd.c \ 264 eelf32ltsmipn32.c \ 265 eelf32ltsmipn32_fbsd.c \ 266 eelf32m32c.c \ 267 eelf32mb_linux.c \ 268 eelf32mbel_linux.c \ 269 eelf32mcore.c \ 270 eelf32mep.c \ 271 eelf32metag.c \ 272 eelf32microblazeel.c \ 273 eelf32microblaze.c \ 274 eelf32moxie.c \ 275 emoxiebox.c \ 276 eelf32mt.c \ 277 eelf32or1k.c \ 278 eelf32or1k_linux.c \ 279 eelf32or1k_nbsd.c \ 280 eelf32ppc.c \ 281 eelf32ppc_fbsd.c \ 282 eelf32ppc_nbsd.c \ 283 eelf32ppclinux.c \ 284 eelf32ppcnto.c \ 285 eelf32ppcsim.c \ 286 eelf32ppcvxworks.c \ 287 eelf32ppcwindiss.c \ 288 eelf32lriscv.c \ 289 eelf32lriscv_ilp32f.c \ 290 eelf32lriscv_ilp32.c \ 291 eelf32rl78.c \ 292 eelf32rx.c \ 293 eelf32tilegx.c \ 294 eelf32tilegx_be.c \ 295 eelf32tilepro.c \ 296 eelf32vax.c \ 297 eelf32visium.c \ 298 eelf32xc16x.c \ 299 eelf32xc16xl.c \ 300 eelf32xc16xs.c \ 301 eelf32xstormy16.c \ 302 eelf32xtensa.c \ 303 eelf32z80.c \ 304 eelf_i386.c \ 305 eelf_i386_be.c \ 306 eelf_i386_fbsd.c \ 307 eelf_i386_ldso.c \ 308 eelf_i386_nacl.c \ 309 eelf_i386_sol2.c \ 310 eelf_i386_vxworks.c \ 311 eelf_iamcu.c \ 312 eelf_s390.c \ 313 eh8300elf.c \ 314 eh8300elf_linux.c \ 315 eh8300helf.c \ 316 eh8300helf_linux.c \ 317 eh8300hnelf.c \ 318 eh8300self.c \ 319 eh8300self_linux.c \ 320 eh8300snelf.c \ 321 eh8300sxelf.c \ 322 eh8300sxelf_linux.c \ 323 eh8300sxnelf.c \ 324 ehppaelf.c \ 325 ehppalinux.c \ 326 ehppanbsd.c \ 327 ehppaobsd.c \ 328 ei386beos.c \ 329 ei386bsd.c \ 330 ei386go32.c \ 331 ei386lynx.c \ 332 ei386moss.c \ 333 ei386msdos.c \ 334 ei386nto.c \ 335 ei386pe.c \ 336 ei386pe_posix.c \ 337 em32relf.c \ 338 em32relf_linux.c \ 339 em32rlelf.c \ 340 em32rlelf_linux.c \ 341 em68hc11elf.c \ 342 em68hc11elfb.c \ 343 em68hc12elf.c \ 344 em68hc12elfb.c \ 345 em68kelf.c \ 346 em68kelfnbsd.c \ 347 em9s12zelf.c \ 348 emcorepe.c \ 349 emn10200.c \ 350 emn10300.c \ 351 emsp430elf.c \ 352 emsp430X.c \ 353 ends32elf.c \ 354 ends32elf16m.c \ 355 ends32elf_linux.c \ 356 ends32belf.c \ 357 ends32belf16m.c \ 358 ends32belf_linux.c \ 359 ens32knbsd.c \ 360 enios2elf.c \ 361 enios2linux.c \ 362 epc532macha.c \ 363 epdp11.c \ 364 epjelf.c \ 365 epjlelf.c \ 366 eppclynx.c \ 367 eppcmacos.c \ 368 eppcpe.c \ 369 epruelf.c \ 370 escore3_elf.c \ 371 escore7_elf.c \ 372 esh.c \ 373 eshelf.c \ 374 eshelf_fd.c \ 375 eshelf_linux.c \ 376 eshelf_nbsd.c \ 377 eshelf_nto.c \ 378 eshelf_uclinux.c \ 379 eshelf_vxworks.c \ 380 eshl.c \ 381 eshlelf.c \ 382 eshlelf_fd.c \ 383 eshlelf_linux.c \ 384 eshlelf_nbsd.c \ 385 eshlelf_nto.c \ 386 eshlelf_vxworks.c \ 387 eshpe.c \ 388 etic30aout.c \ 389 etic30coff.c \ 390 etic3xcoff.c \ 391 etic3xcoff_onchip.c \ 392 etic4xcoff.c \ 393 etic54xcoff.c \ 394 ev850.c \ 395 ev850_rh850.c \ 396 evanilla.c \ 397 evaxnbsd.c \ 398 exgateelf.c \ 399 ez80.c \ 400 ez8001.c \ 401 ez8002.c 402 403ALL_EMULATIONS = $(ALL_EMULATION_SOURCES:.c=.@OBJEXT@) 404 405ALL_64_EMULATION_SOURCES = \ 406 eaarch64elf.c \ 407 eaarch64elf32.c \ 408 eaarch64elfb.c \ 409 eaarch64elf32b.c \ 410 eaarch64cloudabi.c \ 411 eaarch64cloudabib.c \ 412 eaarch64fbsd.c \ 413 eaarch64fbsdb.c \ 414 eaarch64linux.c \ 415 eaarch64linuxb.c \ 416 eaarch64nbsd.c \ 417 eaarch64nbsdb.c \ 418 eaarch64linux32.c \ 419 eaarch64linux32b.c \ 420 eelf32_x86_64.c \ 421 eelf32_x86_64_nacl.c \ 422 eelf32b4300.c \ 423 eelf32bmip.c \ 424 eelf32bmipn32.c \ 425 eelf32bsmip.c \ 426 eelf32btsmip.c \ 427 eelf32btsmip_fbsd.c \ 428 eelf32btsmipn32.c \ 429 eelf32btsmipn32_fbsd.c \ 430 eelf32ebmip.c \ 431 eelf32ebmipvxworks.c \ 432 eelf32elmip.c \ 433 eelf32elmipvxworks.c \ 434 eelf32l4300.c \ 435 eelf32lmip.c \ 436 eelf32lr5900.c \ 437 eelf32lr5900n32.c \ 438 eelf32lsmip.c \ 439 eelf32ltsmip.c \ 440 eelf32ltsmip_fbsd.c \ 441 eelf32ltsmipn32.c \ 442 eelf32ltsmipn32_fbsd.c \ 443 eelf32mipswindiss.c \ 444 eelf64_aix.c \ 445 eelf64bpf.c \ 446 eelf64_ia64.c \ 447 eelf64_ia64_fbsd.c \ 448 eelf64_ia64_vms.c \ 449 eelf64_s390.c \ 450 eelf64_sparc.c \ 451 eelf64_sparc_fbsd.c \ 452 eelf64_sparc_sol2.c \ 453 eelf64alpha.c \ 454 eelf64alpha_fbsd.c \ 455 eelf64alpha_nbsd.c \ 456 eelf64bmip.c \ 457 eelf64btsmip.c \ 458 eelf64btsmip_fbsd.c \ 459 eelf64hppa.c \ 460 eelf64lppc.c \ 461 eelf64lriscv.c \ 462 eelf64lriscv_lp64f.c \ 463 eelf64lriscv_lp64.c \ 464 eelf64ltsmip.c \ 465 eelf64ltsmip_fbsd.c \ 466 eelf64mmix.c \ 467 eelf64ppc.c \ 468 eelf64ppc_fbsd.c \ 469 eelf64rdos.c \ 470 eelf64tilegx.c \ 471 eelf64tilegx_be.c \ 472 eelf_l1om.c \ 473 eelf_l1om_fbsd.c \ 474 eelf_k1om.c \ 475 eelf_k1om_fbsd.c \ 476 eelf_x86_64.c \ 477 eelf_x86_64_cloudabi.c \ 478 eelf_x86_64_fbsd.c \ 479 eelf_x86_64_nacl.c \ 480 eelf_x86_64_sol2.c \ 481 ehppa64linux.c \ 482 ei386pep.c \ 483 emmo.c 484 485ALL_64_EMULATIONS = $(ALL_64_EMULATION_SOURCES:.c=.@OBJEXT@) 486 487ALL_EMUL_EXTRA_OFILES = \ 488 deffilep.@OBJEXT@ \ 489 pe-dll.@OBJEXT@ \ 490 ldelf.@OBJEXT@ \ 491 ldelfgen.@OBJEXT@ 492 493ALL_64_EMUL_EXTRA_OFILES = \ 494 pep-dll.@OBJEXT@ 495 496CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \ 497 ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \ 498 mri.c ldcref.c pe-dll.c pep-dll.c ldlex-wrapper.c \ 499 $(PLUGIN_C) ldbuildid.c ldelf.c ldelfgen.c 500 501HFILES = ld.h ldctor.h ldemul.h ldexp.h ldfile.h \ 502 ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \ 503 ldwrite.h mri.h deffile.h pe-dll.h pep-dll.h \ 504 elf-hints-local.h $(PLUGIN_H) ldbuildid.h ldelf.h ldelfgen.h 505 506GENERATED_CFILES = ldgram.c ldlex.c deffilep.c 507GENERATED_HFILES = ldgram.h ldemul-list.h deffilep.h 508 509# Require an early dependency on the generated headers, as the dependency 510# tracking will not cause them to be built beforehand. 511BUILT_SOURCES = $(GENERATED_HFILES) 512 513OFILES = ldgram.@OBJEXT@ ldlex-wrapper.@OBJEXT@ lexsup.@OBJEXT@ ldlang.@OBJEXT@ \ 514 mri.@OBJEXT@ ldctor.@OBJEXT@ ldmain.@OBJEXT@ $(PLUGIN_OBJECT) \ 515 ldwrite.@OBJEXT@ ldexp.@OBJEXT@ ldemul.@OBJEXT@ ldver.@OBJEXT@ ldmisc.@OBJEXT@ \ 516 ldfile.@OBJEXT@ ldcref.@OBJEXT@ ${EMULATION_OFILES} ${EMUL_EXTRA_OFILES} \ 517 ldbuildid.@OBJEXT@ 518 519STAGESTUFF = *.@OBJEXT@ ldscripts/* e*.c 520 521# Disable -Werror, if it has been enabled, since old versions of bison/ 522# yacc will produce working code which contain compile time warnings. 523ldgram.@OBJEXT@: ldgram.c 524if am__fastdepCC 525 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f ldgram.c || echo $(srcdir)/`ldgram.c $(NO_WERROR) 526 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 527else 528if AMDEP 529 source='ldgram.c' object='$@' libtool=no @AMDEPBACKSLASH@ 530 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 531endif 532 $(COMPILE) -c `test -f ldgram.c || echo $(srcdir)/`ldgram.c $(NO_WERROR) 533endif 534 535ldlex-wrapper.@OBJEXT@: ldlex-wrapper.c ldlex.c 536if am__fastdepCC 537 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $(srcdir)/ldlex-wrapper.c $(NO_WERROR) 538 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 539else 540if AMDEP 541 source='ldlex-wrapper.c' object='$@' libtool=no @AMDEPBACKSLASH@ 542 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 543endif 544 $(COMPILE) -c $(srcdir)/ldlex-wrapper.c $(NO_WERROR) 545endif 546 547deffilep.@OBJEXT@: deffilep.c 548if am__fastdepCC 549 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `test -f deffilep.c || echo $(srcdir)/`deffilep.c $(NO_WERROR) 550 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 551else 552if AMDEP 553 source='deffilep.c' object='$@' libtool=no @AMDEPBACKSLASH@ 554 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 555endif 556 $(COMPILE) -c `test -f deffilep.c || echo $(srcdir)/`deffilep.c $(NO_WERROR) 557endif 558 559SRC_POTFILES = $(CFILES) $(HFILES) 560BLD_POTFILES = $(ALL_EMULATION_SOURCES) $(ALL_64_EMULATION_SOURCES) 561 562po/SRC-POTFILES.in: @MAINT@ Makefile 563 for f in $(SRC_POTFILES); do echo $$f; done | LC_ALL=C sort > $@-tmp \ 564 && mv $@-tmp $(srcdir)/po/SRC-POTFILES.in 565 566po/BLD-POTFILES.in: @MAINT@ Makefile $(BLD_POTFILES) 567 for f in $(BLD_POTFILES); do echo $$f; done | LC_ALL=C sort > $@-tmp \ 568 && mv $@-tmp $(srcdir)/po/BLD-POTFILES.in 569 570ldmain.@OBJEXT@: ldmain.c config.status 571if am__fastdepCC 572 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \ 573 -DDEFAULT_EMULATION='"$(EMUL)"' \ 574 -DBINDIR='"$(bindir)"' -DTOOLBINDIR='"$(tooldir)/bin"' \ 575 -DTARGET='"@target@"' @TARGET_SYSTEM_ROOT_DEFINE@ \ 576 $(srcdir)/ldmain.c 577 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 578else 579if AMDEP 580 source='ldmain.c' object='$@' libtool=no @AMDEPBACKSLASH@ 581 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 582endif 583 $(COMPILE) -c -DDEFAULT_EMULATION='"$(EMUL)"' \ 584 -DBINDIR='"$(bindir)"' -DTOOLBINDIR='"$(tooldir)/bin"' \ 585 -DTARGET='"@target@"' @TARGET_SYSTEM_ROOT_DEFINE@ \ 586 $(srcdir)/ldmain.c 587endif 588 589ldfile.@OBJEXT@: ldfile.c config.status 590if am__fastdepCC 591 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \ 592 -DSCRIPTDIR='"$(scriptdir)"' -DBINDIR='"$(bindir)"' -DTOOLBINDIR='"$(tooldir)/bin"' \ 593 $(srcdir)/ldfile.c 594 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 595else 596if AMDEP 597 source='ldfile.c' object='$@' libtool=no @AMDEPBACKSLASH@ 598 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 599endif 600 $(COMPILE) -c -DSCRIPTDIR='"$(scriptdir)"' -DBINDIR='"$(bindir)"' \ 601 -DTOOLBINDIR='"$(tooldir)/bin"' \ 602 $(srcdir)/ldfile.c 603endif 604 605eelf32_spu.@OBJEXT@: eelf32_spu.c 606if am__fastdepCC 607 $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ \ 608 -DEMBEDSPU="\"`echo embedspu | sed '$(transform)'`\"" eelf32_spu.c 609 mv -f $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 610else 611if AMDEP 612 source='eelf32_spu.c' object='$@' libtool=no @AMDEPBACKSLASH@ 613 DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 614endif 615 $(COMPILE) -c -DEMBEDSPU="\"`echo embedspu | sed '$(transform)'`\"" \ 616 eelf32_spu.c 617endif 618 619ldemul-list.h: Makefile 620 (echo "/* This file is automatically generated. DO NOT EDIT! */";\ 621 for f in `echo " " ${EMULATION_OFILES} "" \ 622 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \ 623 echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \ 624 done;\ 625 echo "";\ 626 echo "#define EMULATION_LIST \\";\ 627 for f in `echo " " ${EMULATION_OFILES} "" \ 628 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \ 629 echo " &ld_$${f}_emulation, \\"; \ 630 done;\ 631 echo " 0") >ldemul-tmp.h 632 mv ldemul-tmp.h ldemul-list.h 633 634stringify.sed: ${srcdir}/emultempl/$(STRINGIFY) 635 cp ${srcdir}/emultempl/$(STRINGIFY) stringify.sed 636 637if AMDEP 638 GENDEPDIR=$(DEPDIR) 639else 640 GENDEPDIR= 641endif 642GENSCRIPTS = $(SHELL) $(srcdir)/genscripts.sh "${srcdir}" "${libdir}" "${prefix}" "${exec_prefix}" @host@ @target@ @target_alias@ "$(GENDEPDIR)" "${LIB_PATH}" "@EMULATION_LIBPATH@" "@NATIVE_LIB_DIRS@" @use_sysroot@ @enable_initfini_array@ 643GEN_DEPENDS = $(srcdir)/genscripts.sh stringify.sed 644 645@TDIRS@ 646 647# We can't use pattern rules as we don't want to depend on GNU 648# make, or else these rules could have been expressed in one 649# two-liner: 'e%.c:' and ' ${GENSCRIPTS} $* "$(tdir_$*)"'. 650# (The recursive variable expansion is portable.) 651 652run-genscripts: 653 ${GENSCRIPTS} $(script_target) "$($(script_tdirname))" 654 655.PHONY: run-genscripts 656 657$(ALL_EMULATION_SOURCES) $(ALL_64_EMULATION_SOURCES): $(GEN_DEPENDS) 658 base=`echo $@ | sed -e 's,e\(.*\).c,\1,'`; \ 659 $(MAKE) run-genscripts "script_target=$$base" "script_tdirname=tdir_$$base" 660 661# It's a pity we can't generate these include "./deps/e*.Pc" lines 662# from ALL_EMULATION_SOURCES and ALL_64_EMULATION_SOURCES, but that isn't 663# so easy to do. What we'd like to do is have automake generate these 664# lines in Makefile.in, but I can't see a way of doing that. Generating 665# the includes at configure time is possible but then we'd need to 666# duplicate autoconf/automake handling of dependency files. 667@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaix5ppc.Pc@am__quote@ 668@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaix5rs6.Pc@am__quote@ 669@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaixppc.Pc@am__quote@ 670@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaixrs6.Pc@am__quote@ 671@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ealpha.Pc@am__quote@ 672@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ealphavms.Pc@am__quote@ 673@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcv2elf.Pc@am__quote@ 674@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcv2elfx.Pc@am__quote@ 675@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earcelf.Pc@am__quote@ 676@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earclinux.Pc@am__quote@ 677@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earclinux_nps.Pc@am__quote@ 678@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earm_wince_pe.Pc@am__quote@ 679@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf.Pc@am__quote@ 680@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_fbsd.Pc@am__quote@ 681@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_fuchsia.Pc@am__quote@ 682@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux.Pc@am__quote@ 683@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux_eabi.Pc@am__quote@ 684@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_linux_fdpiceabi.Pc@am__quote@ 685@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_nacl.Pc@am__quote@ 686@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_nbsd.Pc@am__quote@ 687@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_phoenix.Pc@am__quote@ 688@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelf_vxworks.Pc@am__quote@ 689@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb.Pc@am__quote@ 690@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_fbsd.Pc@am__quote@ 691@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_fuchsia.Pc@am__quote@ 692@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux.Pc@am__quote@ 693@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux_eabi.Pc@am__quote@ 694@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_linux_fdpiceabi.Pc@am__quote@ 695@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_nacl.Pc@am__quote@ 696@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmelfb_nbsd.Pc@am__quote@ 697@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmnto.Pc@am__quote@ 698@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmpe.Pc@am__quote@ 699@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/earmsymbian.Pc@am__quote@ 700@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr1.Pc@am__quote@ 701@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr2.Pc@am__quote@ 702@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr25.Pc@am__quote@ 703@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr3.Pc@am__quote@ 704@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr31.Pc@am__quote@ 705@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr35.Pc@am__quote@ 706@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr4.Pc@am__quote@ 707@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr5.Pc@am__quote@ 708@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr51.Pc@am__quote@ 709@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavr6.Pc@am__quote@ 710@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega1.Pc@am__quote@ 711@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega2.Pc@am__quote@ 712@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega3.Pc@am__quote@ 713@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega4.Pc@am__quote@ 714@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega5.Pc@am__quote@ 715@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega6.Pc@am__quote@ 716@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrxmega7.Pc@am__quote@ 717@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eavrtiny.Pc@am__quote@ 718@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecrisaout.Pc@am__quote@ 719@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecriself.Pc@am__quote@ 720@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecrislinux.Pc@am__quote@ 721@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecskyelf.Pc@am__quote@ 722@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ecskyelf_linux.Pc@am__quote@ 723@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed10velf.Pc@am__quote@ 724@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30v_e.Pc@am__quote@ 725@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30v_o.Pc@am__quote@ 726@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ed30velf.Pc@am__quote@ 727@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_dlx.Pc@am__quote@ 728@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc.Pc@am__quote@ 729@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc_sol2.Pc@am__quote@ 730@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_sparc_vxworks.Pc@am__quote@ 731@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_spu.Pc@am__quote@ 732@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_be.Pc@am__quote@ 733@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_le.Pc@am__quote@ 734@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_linux_be.Pc@am__quote@ 735@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_linux_le.Pc@am__quote@ 736@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_elf_be.Pc@am__quote@ 737@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_tic6x_elf_le.Pc@am__quote@ 738@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32am33lin.Pc@am__quote@ 739@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bfin.Pc@am__quote@ 740@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bfinfd.Pc@am__quote@ 741@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32cr16.Pc@am__quote@ 742@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32crx.Pc@am__quote@ 743@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32epiphany.Pc@am__quote@ 744@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32epiphany_4x4.Pc@am__quote@ 745@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32fr30.Pc@am__quote@ 746@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32frv.Pc@am__quote@ 747@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32frvfd.Pc@am__quote@ 748@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ft32.Pc@am__quote@ 749@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ip2k.Pc@am__quote@ 750@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32iq10.Pc@am__quote@ 751@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32iq2000.Pc@am__quote@ 752@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lm32.Pc@am__quote@ 753@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lm32fd.Pc@am__quote@ 754@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppc.Pc@am__quote@ 755@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppclinux.Pc@am__quote@ 756@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppcnto.Pc@am__quote@ 757@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lppcsim.Pc@am__quote@ 758@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32m32c.Pc@am__quote@ 759@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mb_linux.Pc@am__quote@ 760@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mbel_linux.Pc@am__quote@ 761@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mcore.Pc@am__quote@ 762@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mep.Pc@am__quote@ 763@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32metag.Pc@am__quote@ 764@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32microblazeel.Pc@am__quote@ 765@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32microblaze.Pc@am__quote@ 766@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32moxie.Pc@am__quote@ 767@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emoxiebox.Pc@am__quote@ 768@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mt.Pc@am__quote@ 769@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32or1k.Pc@am__quote@ 770@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32or1k_linux.Pc@am__quote@ 771@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppc.Pc@am__quote@ 772@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppc_fbsd.Pc@am__quote@ 773@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppclinux.Pc@am__quote@ 774@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcnto.Pc@am__quote@ 775@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcsim.Pc@am__quote@ 776@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcvxworks.Pc@am__quote@ 777@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ppcwindiss.Pc@am__quote@ 778@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv.Pc@am__quote@ 779@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv_ilp32f.Pc@am__quote@ 780@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lriscv_ilp32.Pc@am__quote@ 781@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32rl78.Pc@am__quote@ 782@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32rx.Pc@am__quote@ 783@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilegx.Pc@am__quote@ 784@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilegx_be.Pc@am__quote@ 785@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32tilepro.Pc@am__quote@ 786@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32vax.Pc@am__quote@ 787@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32visium.Pc@am__quote@ 788@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16x.Pc@am__quote@ 789@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16xl.Pc@am__quote@ 790@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xc16xs.Pc@am__quote@ 791@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xstormy16.Pc@am__quote@ 792@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32xtensa.Pc@am__quote@ 793@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32z80.Pc@am__quote@ 794@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386.Pc@am__quote@ 795@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_be.Pc@am__quote@ 796@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_fbsd.Pc@am__quote@ 797@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_ldso.Pc@am__quote@ 798@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_nacl.Pc@am__quote@ 799@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_sol2.Pc@am__quote@ 800@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_i386_vxworks.Pc@am__quote@ 801@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_iamcu.Pc@am__quote@ 802@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_s390.Pc@am__quote@ 803@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300elf.Pc@am__quote@ 804@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300elf_linux.Pc@am__quote@ 805@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300helf.Pc@am__quote@ 806@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300helf_linux.Pc@am__quote@ 807@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300hnelf.Pc@am__quote@ 808@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300self.Pc@am__quote@ 809@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300self_linux.Pc@am__quote@ 810@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300snelf.Pc@am__quote@ 811@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxelf.Pc@am__quote@ 812@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxelf_linux.Pc@am__quote@ 813@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eh8300sxnelf.Pc@am__quote@ 814@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppaelf.Pc@am__quote@ 815@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppalinux.Pc@am__quote@ 816@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppanbsd.Pc@am__quote@ 817@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppaobsd.Pc@am__quote@ 818@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386beos.Pc@am__quote@ 819@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386bsd.Pc@am__quote@ 820@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386go32.Pc@am__quote@ 821@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386lynx.Pc@am__quote@ 822@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386moss.Pc@am__quote@ 823@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386msdos.Pc@am__quote@ 824@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386nto.Pc@am__quote@ 825@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pe.Pc@am__quote@ 826@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pe_posix.Pc@am__quote@ 827@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32relf.Pc@am__quote@ 828@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32relf_linux.Pc@am__quote@ 829@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32rlelf.Pc@am__quote@ 830@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em32rlelf_linux.Pc@am__quote@ 831@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc11elf.Pc@am__quote@ 832@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc11elfb.Pc@am__quote@ 833@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc12elf.Pc@am__quote@ 834@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68hc12elfb.Pc@am__quote@ 835@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68kelf.Pc@am__quote@ 836@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em68kelfnbsd.Pc@am__quote@ 837@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/em9s12zelf.Pc@am__quote@ 838@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emcorepe.Pc@am__quote@ 839@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emn10200.Pc@am__quote@ 840@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emn10300.Pc@am__quote@ 841@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emsp430elf.Pc@am__quote@ 842@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emsp430X.Pc@am__quote@ 843@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf.Pc@am__quote@ 844@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf16m.Pc@am__quote@ 845@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32elf_linux.Pc@am__quote@ 846@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf.Pc@am__quote@ 847@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf16m.Pc@am__quote@ 848@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ends32belf_linux.Pc@am__quote@ 849@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ens32knbsd.Pc@am__quote@ 850@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enios2elf.Pc@am__quote@ 851@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/enios2linux.Pc@am__quote@ 852@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epc532macha.Pc@am__quote@ 853@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epdp11.Pc@am__quote@ 854@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epjelf.Pc@am__quote@ 855@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epjlelf.Pc@am__quote@ 856@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eppclynx.Pc@am__quote@ 857@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eppcmacos.Pc@am__quote@ 858@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eppcpe.Pc@am__quote@ 859@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/epruelf.Pc@am__quote@ 860@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/escore3_elf.Pc@am__quote@ 861@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/escore7_elf.Pc@am__quote@ 862@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/esh.Pc@am__quote@ 863@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf.Pc@am__quote@ 864@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_fd.Pc@am__quote@ 865@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_linux.Pc@am__quote@ 866@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_nbsd.Pc@am__quote@ 867@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_nto.Pc@am__quote@ 868@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_uclinux.Pc@am__quote@ 869@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshelf_vxworks.Pc@am__quote@ 870@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshl.Pc@am__quote@ 871@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf.Pc@am__quote@ 872@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_fd.Pc@am__quote@ 873@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_linux.Pc@am__quote@ 874@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_nbsd.Pc@am__quote@ 875@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_nto.Pc@am__quote@ 876@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshlelf_vxworks.Pc@am__quote@ 877@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eshpe.Pc@am__quote@ 878@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic30aout.Pc@am__quote@ 879@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic30coff.Pc@am__quote@ 880@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic3xcoff.Pc@am__quote@ 881@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic3xcoff_onchip.Pc@am__quote@ 882@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic4xcoff.Pc@am__quote@ 883@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/etic54xcoff.Pc@am__quote@ 884@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ev850.Pc@am__quote@ 885@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ev850_rh850.Pc@am__quote@ 886@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/evanilla.Pc@am__quote@ 887@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/evaxnbsd.Pc@am__quote@ 888@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/exgateelf.Pc@am__quote@ 889@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez80.Pc@am__quote@ 890@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez8001.Pc@am__quote@ 891@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ez8002.Pc@am__quote@ 892@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf.Pc@am__quote@ 893@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf32.Pc@am__quote@ 894@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elfb.Pc@am__quote@ 895@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64elf32b.Pc@am__quote@ 896@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64cloudabi.Pc@am__quote@ 897@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64cloudabib.Pc@am__quote@ 898@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64fbsd.Pc@am__quote@ 899@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64fbsdb.Pc@am__quote@ 900@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux.Pc@am__quote@ 901@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linuxb.Pc@am__quote@ 902@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux32.Pc@am__quote@ 903@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eaarch64linux32b.Pc@am__quote@ 904@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_x86_64.Pc@am__quote@ 905@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32_x86_64_nacl.Pc@am__quote@ 906@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32b4300.Pc@am__quote@ 907@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bmip.Pc@am__quote@ 908@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bmipn32.Pc@am__quote@ 909@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32bsmip.Pc@am__quote@ 910@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmip.Pc@am__quote@ 911@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmip_fbsd.Pc@am__quote@ 912@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmipn32.Pc@am__quote@ 913@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32btsmipn32_fbsd.Pc@am__quote@ 914@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ebmip.Pc@am__quote@ 915@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ebmipvxworks.Pc@am__quote@ 916@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32elmip.Pc@am__quote@ 917@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32elmipvxworks.Pc@am__quote@ 918@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32l4300.Pc@am__quote@ 919@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lmip.Pc@am__quote@ 920@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lr5900.Pc@am__quote@ 921@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lr5900n32.Pc@am__quote@ 922@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32lsmip.Pc@am__quote@ 923@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmip.Pc@am__quote@ 924@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmip_fbsd.Pc@am__quote@ 925@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmipn32.Pc@am__quote@ 926@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32ltsmipn32_fbsd.Pc@am__quote@ 927@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf32mipswindiss.Pc@am__quote@ 928@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_aix.Pc@am__quote@ 929@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64bpf.Pc@am__quote@ 930@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64.Pc@am__quote@ 931@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64_fbsd.Pc@am__quote@ 932@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_ia64_vms.Pc@am__quote@ 933@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_s390.Pc@am__quote@ 934@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc.Pc@am__quote@ 935@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc_fbsd.Pc@am__quote@ 936@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64_sparc_sol2.Pc@am__quote@ 937@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha.Pc@am__quote@ 938@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha_fbsd.Pc@am__quote@ 939@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64alpha_nbsd.Pc@am__quote@ 940@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64bmip.Pc@am__quote@ 941@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64btsmip.Pc@am__quote@ 942@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64btsmip_fbsd.Pc@am__quote@ 943@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64hppa.Pc@am__quote@ 944@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lppc.Pc@am__quote@ 945@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv.Pc@am__quote@ 946@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv_lp64f.Pc@am__quote@ 947@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64lriscv_lp64.Pc@am__quote@ 948@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ltsmip.Pc@am__quote@ 949@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ltsmip_fbsd.Pc@am__quote@ 950@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64mmix.Pc@am__quote@ 951@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ppc.Pc@am__quote@ 952@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64ppc_fbsd.Pc@am__quote@ 953@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64rdos.Pc@am__quote@ 954@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx.Pc@am__quote@ 955@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf64tilegx_be.Pc@am__quote@ 956@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_l1om.Pc@am__quote@ 957@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_l1om_fbsd.Pc@am__quote@ 958@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_k1om.Pc@am__quote@ 959@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_k1om_fbsd.Pc@am__quote@ 960@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64.Pc@am__quote@ 961@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_cloudabi.Pc@am__quote@ 962@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_fbsd.Pc@am__quote@ 963@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_nacl.Pc@am__quote@ 964@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/eelf_x86_64_sol2.Pc@am__quote@ 965@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehppa64linux.Pc@am__quote@ 966@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ei386pep.Pc@am__quote@ 967@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/emmo.Pc@am__quote@ 968 969# We need this for automake to use YLWRAP. 970EXTRA_ld_new_SOURCES = deffilep.y ldlex.l 971# Allow dependency tracking to work for these files, too. 972EXTRA_ld_new_SOURCES += pep-dll.c pe-dll.c ldelf.c ldelfgen.c 973 974ld_new_SOURCES = ldgram.y ldlex-wrapper.c lexsup.c ldlang.c mri.c ldctor.c ldmain.c \ 975 ldwrite.c ldexp.c ldemul.c ldver.c ldmisc.c ldfile.c ldcref.c $(PLUGIN_C) \ 976 ldbuildid.c 977ld_new_DEPENDENCIES = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) \ 978 $(BFDLIB) $(LIBCTF) $(LIBIBERTY) $(LIBINTL_DEP) 979ld_new_LDADD = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBCTF) $(LIBIBERTY) $(LIBINTL) $(ZLIB) 980 981# Dependency tracking for the generated emulation files. 982EXTRA_ld_new_SOURCES += $(ALL_EMULATION_SOURCES) $(ALL_64_EMULATION_SOURCES) 983 984# This is the real libbfd.a and libctf.a created by libtool. 985TESTBFDLIB = @TESTBFDLIB@ 986TESTCTFLIB = @TESTCTFLIB@ 987 988check-DEJAGNU: site.exp 989 srcroot=`cd $(srcdir) && pwd`; export srcroot; \ 990 r=`pwd`; export r; \ 991 LC_ALL=C; export LC_ALL; \ 992 EXPECT=$(EXPECT); export EXPECT; \ 993 runtest=$(RUNTEST); \ 994 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \ 995 $$runtest --tool $(DEJATOOL) --srcdir $${srcroot}/testsuite \ 996 CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS_FOR_TARGET)" \ 997 CXX="$(CXX_FOR_TARGET)" CXXFLAGS="$(CXXFLAGS_FOR_TARGET)" \ 998 CC_FOR_HOST="$(CC)" CFLAGS_FOR_HOST="$(CFLAGS)" \ 999 OFILES="$(OFILES)" BFDLIB="$(TESTBFDLIB)" CTFLIB="$(TESTCTFLIB) $(ZLIB)" \ 1000 LIBIBERTY="$(LIBIBERTY) $(LIBINTL)" LIBS="$(LIBS)" \ 1001 DO_COMPARE="`echo '$(do_compare)' | sed -e 's,\\$$,,g'`" \ 1002 $(RUNTESTFLAGS); \ 1003 else echo "WARNING: could not find \`runtest'" 1>&2; :;\ 1004 fi 1005 1006development.exp: $(BFDDIR)/development.sh 1007 $(EGREP) "[development|experimental]=" $(BFDDIR)/development.sh \ 1008 | $(AWK) -F= '{ print "set " $$1 " " $$2 }' > $@ 1009# 1010# 1011# Build a dummy plugin using libtool. 1012# 1013if ENABLE_PLUGINS 1014noinst_LTLIBRARIES = libldtestplug.la libldtestplug2.la \ 1015 libldtestplug3.la libldtestplug4.la 1016libldtestplug_la_SOURCES = testplug.c 1017libldtestplug_la_CFLAGS= -g -O2 1018libldtestplug_la_LDFLAGS = -no-undefined -rpath /nowhere 1019libldtestplug2_la_SOURCES = testplug2.c 1020libldtestplug2_la_CFLAGS= -g -O2 1021libldtestplug2_la_LDFLAGS = -no-undefined -rpath /nowhere 1022libldtestplug3_la_SOURCES = testplug3.c 1023libldtestplug3_la_CFLAGS= -g -O2 1024libldtestplug3_la_LDFLAGS = -no-undefined -rpath /nowhere 1025libldtestplug4_la_SOURCES = testplug4.c 1026libldtestplug4_la_CFLAGS= -g -O2 1027libldtestplug4_la_LDFLAGS = -no-undefined -rpath /nowhere 1028endif 1029 1030# DOCUMENTATION TARGETS 1031# Manual configuration file; not usually attached to normal configuration, 1032# because almost all configs use "gen" version of manual. 1033# Set DOCVER above to change. 1034configdoc.texi: ${DOCVER}-doc.texi 1035 @echo "NOT REBUILDING $@" 1036NetBSD_DISABLED_configdoc.texi: 1037 cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi 1038 chmod u+w ./configdoc.texi 1039 1040# Build the man page from the texinfo file 1041# The sed command removes the no-adjust Nroff command so that 1042# the man output looks standard. 1043ld.1: $(srcdir)/ld.texi configdoc.texi 1044 @echo "NOT REBUILDING $@" 1045NetBSD_DISABLED_ld.1: 1046 touch $@ 1047 -$(TEXI2POD) $(MANCONF) < $(srcdir)/ld.texi > ld.pod 1048 -($(POD2MAN) ld.pod | \ 1049 sed -e '/^.if n .na/d' > $@.T$$$$ && \ 1050 mv -f $@.T$$$$ $@) || \ 1051 (rm -f $@.T$$$$ && exit 1) 1052 rm -f ld.pod 1053 1054MAINTAINERCLEANFILES = configdoc.texi ld.1 1055 1056# We want to reconfigure if configure.host or configure.tgt changes. 1057# development.sh is used to determine -Werror default. 1058CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.host $(srcdir)/configure.tgt \ 1059 $(BFDDIR)/development.sh 1060 1061EXTRA_DEJAGNU_SITE_CONFIG = development.exp 1062 1063MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \ 1064 ldemul-list.h crtbegin.@OBJEXT@ crtend.@OBJEXT@ ld.log ld.sum 1065mostlyclean-local: 1066 -rm -rf tmpdir 1067CLEANFILES = dep.sed DEP DEPA DEP1 DEP2 spu_ovl.s spu_ovl.@OBJEXT@ spu_icache.s spu_icache.@OBJEXT@ 1068 1069.PHONY: install-exec-local install-data-local 1070 1071install-exec-local: ld-new$(EXEEXT) install-binPROGRAMS 1072 $(mkinstalldirs) $(DESTDIR)$(tooldir)/bin 1073 n=`echo $(installed_linker) | sed '$(transform)'`; \ 1074 if test "$(bindir)" != "$(tooldir)/bin"; then \ 1075 rm -f $(DESTDIR)$(tooldir)/bin/$(installed_linker)$(EXEEXT); \ 1076 ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$(installed_linker)$(EXEEXT) >/dev/null 2>/dev/null \ 1077 || $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/$(installed_linker)$(EXEEXT); \ 1078 fi; \ 1079 if test "x$(install_as_default)" = "xyes"; then \ 1080 ld=`echo ld | sed '$(transform)'`; \ 1081 rm -f $(DESTDIR)$(bindir)/$$ld$(EXEEXT); \ 1082 ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(bindir)/$$ld$(EXEEXT) >/dev/null 2>/dev/null \ 1083 || $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(bindir)/$$ld$(EXEEXT); \ 1084 if test "$(bindir)" != "$(tooldir)/bin"; then \ 1085 rm -f $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \ 1086 ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \ 1087 || $(INSTALL_PROGRAM_ENV) $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \ 1088 fi; \ 1089 fi 1090 1091install-data-local: 1092 $(mkinstalldirs) $(DESTDIR)$(scriptdir)/ldscripts 1093 for f in ldscripts/* ; do \ 1094 $(INSTALL_DATA) $$f $(DESTDIR)$(scriptdir)/$$f ; \ 1095 done 1096 1097# Stuff that should be included in a distribution. The diststuff 1098# target is run by the taz target in ../Makefile.in. 1099EXTRA_DIST = ldgram.c ldgram.h ldlex.c emultempl/spu_ovl.@OBJEXT@_c \ 1100 emultempl/spu_icache.@OBJEXT@_c deffilep.c deffilep.h $(man_MANS) 1101diststuff: info $(EXTRA_DIST) 1102 1103# Both info (ld.info) and ld.1 depend on configdoc.texi. 1104# But info isn't a direct target. Make info-recursive to depend on 1105# ld.1 to support parallel build. 1106info-recursive: ld.1 1107 1108DISTCLEANFILES = site.exp development.exp site.bak stringify.sed 1109distclean-local: 1110 rm -rf ldscripts 1111 1112MAINTAINERCLEANFILES += ld.info 1113