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