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