]>
Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | ## Process this file with automake to generate Makefile.in |
2 | ||
252b5132 RH |
3 | AUTOMAKE_OPTIONS = cygnus dejagnu |
4 | ||
5 | SUBDIRS = po | |
6 | ||
7 | tooldir = $(exec_prefix)/$(target_alias) | |
8 | ||
a7e78dae | 9 | YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi` |
252b5132 | 10 | YFLAGS = -d |
a7e78dae | 11 | LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi` |
252b5132 | 12 | |
a2d91340 | 13 | WARN_CFLAGS = @WARN_CFLAGS@ |
9e9b66a9 | 14 | NO_WERROR = @NO_WERROR@ |
a2d91340 AC |
15 | AM_CFLAGS = $(WARN_CFLAGS) |
16 | ||
252b5132 RH |
17 | # We put the scripts in the directory $(scriptdir)/ldscripts. |
18 | # We can't put the scripts in $(datadir) because the SEARCH_DIR | |
19 | # directives need to be different for native and cross linkers. | |
20 | scriptdir = $(tooldir)/lib | |
21 | ||
22 | EMUL = @EMUL@ | |
23 | EMULATION_OFILES = @EMULATION_OFILES@ | |
24 | EMUL_EXTRA_OFILES = @EMUL_EXTRA_OFILES@ | |
25 | ||
26 | # Search path to override the default search path for -lfoo libraries. | |
27 | # If LIB_PATH is empty, the ones in the script (if any) are left alone. | |
28 | # (The default is usually /lib:/usr/lib:/usr/local/lib, unless building | |
29 | # a cross-linker, in which case the default is empty. See genscripts.sh.) | |
30 | # Otherwise, they are replaced with the ones given in LIB_PATH, | |
8e523c23 NC |
31 | # which may have the form: LIB_PATH=/lib:/usr/local/lib. This can be set |
32 | # when the linker is configured via the --with-lib-path configure switch. | |
33 | LIB_PATH = @LIB_PATH@ | |
252b5132 RH |
34 | |
35 | BASEDIR = $(srcdir)/.. | |
36 | BFDDIR = $(BASEDIR)/bfd | |
37 | INCDIR = $(BASEDIR)/include | |
41b49281 | 38 | MKDEP = gcc -MM |
252b5132 RH |
39 | |
40 | # What version of the manual to build | |
41 | DOCVER = gen | |
42 | ||
0285c67d NC |
43 | # Options to extract the man page from ld.texinfo |
44 | MANCONF = -Dman | |
45 | ||
38fc1cb1 | 46 | TEXI2POD = perl $(BASEDIR)/etc/texi2pod.pl $(AM_MAKEINFOFLAGS) |
0285c67d | 47 | |
ff5dcc92 SC |
48 | POD2MAN = pod2man --center="GNU Development Tools" \ |
49 | --release="binutils-$(VERSION)" --section=1 | |
0285c67d | 50 | |
252b5132 RH |
51 | #stuff for self hosting (can be overridden in config file). |
52 | HOSTING_CRT0 = @HOSTING_CRT0@ | |
53 | HOSTING_LIBS = @HOSTING_LIBS@ | |
54 | HOSTING_EMU = -m $(EMUL) | |
55 | ||
56 | # Setup the testing framework, if you have one | |
c3298874 BE |
57 | EXPECT = expect |
58 | RUNTEST = runtest | |
252b5132 RH |
59 | RUNTESTFLAGS = |
60 | ||
61 | CC_FOR_TARGET = ` \ | |
62 | if [ -f $$r/../gcc/xgcc ] ; then \ | |
63 | if [ -f $$r/../newlib/Makefile ] ; then \ | |
64 | echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \ | |
65 | else \ | |
66 | echo $$r/../gcc/xgcc -B$$r/../gcc/; \ | |
67 | fi; \ | |
68 | else \ | |
69 | if [ "@host@" = "@target@" ] ; then \ | |
70 | echo $(CC); \ | |
71 | else \ | |
72 | echo gcc | sed '$(transform)'; \ | |
73 | fi; \ | |
74 | fi` | |
75 | ||
76 | CXX = gcc | |
77 | CXX_FOR_TARGET = ` \ | |
78 | if [ -f $$r/../gcc/xgcc ] ; then \ | |
79 | if [ -f $$r/../newlib/Makefile ] ; then \ | |
80 | echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \ | |
81 | else \ | |
82 | echo $$r/../gcc/xgcc -B$$r/../gcc/; \ | |
83 | fi; \ | |
84 | else \ | |
85 | if [ "@host@" = "@target@" ] ; then \ | |
86 | echo $(CXX); \ | |
87 | else \ | |
88 | echo gcc | sed '$(transform)'; \ | |
89 | fi; \ | |
90 | fi` | |
91 | ||
92 | noinst_PROGRAMS = ld-new | |
93 | info_TEXINFOS = ld.texinfo | |
94 | noinst_TEXINFOS = ldint.texinfo | |
95 | man_MANS = ld.1 | |
96 | ||
38fc1cb1 | 97 | AM_MAKEINFOFLAGS = -I $(srcdir) -I $(BFDDIR)/doc -I $(top_srcdir)/../libiberty |
6e1b59d2 | 98 | TEXI2DVI = texi2dvi -I $(srcdir) -I $(BFDDIR)/doc |
42ecbf5e | 99 | |
20e95c23 | 100 | INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) @INCINTL@ $(HDEFINES) $(CFLAGS) -DLOCALEDIR="\"$(datadir)/locale\"" |
252b5132 RH |
101 | |
102 | BFDLIB = ../bfd/libbfd.la | |
103 | LIBIBERTY = ../libiberty/libiberty.a | |
104 | ||
105 | ALL_EMULATIONS = \ | |
252b5132 RH |
106 | eaixppc.o \ |
107 | eaixrs6.o \ | |
108 | ealpha.o \ | |
109 | earcelf.o \ | |
4900fc06 | 110 | earm_epoc_pe.o \ |
252b5132 RH |
111 | earmaoutb.o \ |
112 | earmaoutl.o \ | |
113 | earmcoff.o \ | |
4900fc06 | 114 | earmelf.o \ |
d2012d17 | 115 | earmelfb.o \ |
28912fd9 | 116 | earmelf_fbsd.o \ |
4900fc06 | 117 | earmelf_linux.o \ |
6b3221b4 | 118 | earmelf_linux_eabi.o \ |
d2012d17 | 119 | earmelfb_linux.o \ |
a154a8ad | 120 | earmelfb_linux_eabi.o \ |
3695c299 | 121 | earmelf_nbsd.o \ |
658f2588 | 122 | earmelfb_nbsd.o \ |
4e7fd91e | 123 | earmelf_vxworks.o \ |
7e392df6 | 124 | earmnto.o \ |
8959586a | 125 | earmnbsd.o \ |
252b5132 | 126 | earmpe.o \ |
e5a52504 | 127 | earmsymbian.o \ |
fae1e84f | 128 | eavr2.o \ |
75ca919a | 129 | eavr1.o \ |
fae1e84f MM |
130 | eavr3.o \ |
131 | eavr4.o \ | |
132 | eavr5.o \ | |
28c9d252 | 133 | eavr6.o \ |
9d7e2ba5 | 134 | ecoff_i860.o \ |
252b5132 | 135 | ecoff_sparc.o \ |
9d06555c HPN |
136 | ecrisaout.o \ |
137 | ecriself.o \ | |
138 | ecrislinux.o \ | |
252b5132 | 139 | ed10velf.o \ |
252b5132 RH |
140 | ed30v_e.o \ |
141 | ed30v_o.o \ | |
4900fc06 | 142 | ed30velf.o \ |
252b5132 | 143 | edelta68.o \ |
d172d4ba | 144 | eelf32_dlx.o \ |
0ccf812a | 145 | eelf32_i960.o \ |
165589e4 | 146 | eelf32_i860.o \ |
4900fc06 | 147 | eelf32_sparc.o \ |
910600e9 | 148 | eelf32_sparc_vxworks.o \ |
252b5132 | 149 | eelf32b4300.o \ |
95f4309b | 150 | eelf32bfin.o \ |
753a4ce3 | 151 | eelf32bfinfd.o \ |
0949843d | 152 | eelf32cr16c.o \ |
252b5132 | 153 | eelf32bmip.o \ |
dc831978 | 154 | eelf32bmipn32.o \ |
3548145d | 155 | eelf32btsmip.o \ |
1fe1f39c | 156 | eelf32crx.o \ |
7808a785 | 157 | eelf32btsmipn32.o \ |
fdec3cfc | 158 | eelf32ltsmip.o \ |
7808a785 | 159 | eelf32ltsmipn32.o \ |
4900fc06 | 160 | eelf32ebmip.o \ |
0a44bf69 | 161 | eelf32ebmipvxworks.o \ |
4900fc06 | 162 | eelf32elmip.o \ |
0a44bf69 | 163 | eelf32elmipvxworks.o \ |
4900fc06 | 164 | eelf32fr30.o \ |
7d553a40 | 165 | eelf32frv.o \ |
5b93d8bb | 166 | eelf32i370.o \ |
cf88bb9f | 167 | eelf32ip2k.o \ |
e09a7106 SC |
168 | eelf32iq2000.o \ |
169 | eelf32iq10.o \ | |
252b5132 RH |
170 | eelf32l4300.o \ |
171 | eelf32lmip.o \ | |
172 | eelf32lppc.o \ | |
59bc061d | 173 | eelf32lppcnto.o \ |
bdbe5705 | 174 | eelf32lppcsim.o \ |
49f58d10 | 175 | eelf32m32c.o \ |
4900fc06 | 176 | eelf32mcore.o \ |
325fab4e | 177 | eelf32mipswindiss.o \ |
4970f871 | 178 | eelf32mt.o \ |
c7e40348 | 179 | eelf32openrisc.o \ |
252b5132 | 180 | eelf32ppc.o \ |
28912fd9 | 181 | eelf32ppc_fbsd.o \ |
ec2f040d | 182 | eelf32ppclinux.o \ |
59bc061d | 183 | eelf32ppcnto.o \ |
4900fc06 | 184 | eelf32ppcsim.o \ |
94349e12 | 185 | eelf32ppcwindiss.o \ |
9d8504b1 | 186 | eelf32ppcvxworks.o \ |
ab68f3e0 | 187 | eelf32vax.o \ |
d70c5fc7 NC |
188 | eelf32xc16x.o \ |
189 | eelf32xc16xl.o \ | |
190 | eelf32xc16xs.o \ | |
93fbbb04 | 191 | eelf32xstormy16.o \ |
e0001a05 | 192 | eelf32xtensa.o \ |
252b5132 RH |
193 | eelf_i386.o \ |
194 | eelf_i386_be.o \ | |
dca7760f | 195 | eelf_i386_chaos.o \ |
28912fd9 | 196 | eelf_i386_fbsd.o \ |
506eee22 | 197 | eelf_i386_ldso.o \ |
eac338cf | 198 | eelf_i386_vxworks.o \ |
a85d7ed0 | 199 | eelf_s390.o \ |
252b5132 RH |
200 | egld960.o \ |
201 | egld960coff.o \ | |
252b5132 RH |
202 | eh8300.o \ |
203 | eh8300h.o \ | |
204 | eh8300s.o \ | |
8af6dd41 | 205 | eh8300elf.o \ |
8d9cd6b1 NC |
206 | eh8300hn.o \ |
207 | eh8300sn.o \ | |
65982ba6 | 208 | eh8300sx.o \ |
8af6dd41 JR |
209 | eh8300helf.o \ |
210 | eh8300self.o \ | |
8d9cd6b1 NC |
211 | eh8300hnelf.o \ |
212 | eh8300snelf.o \ | |
65982ba6 | 213 | eh8300sxelf.o \ |
f4984206 RS |
214 | eh8300sxn.o \ |
215 | eh8300sxnelf.o \ | |
252b5132 RH |
216 | eh8500.o \ |
217 | eh8500b.o \ | |
218 | eh8500c.o \ | |
219 | eh8500m.o \ | |
220 | eh8500s.o \ | |
221 | ehp300bsd.o \ | |
222 | ehp3hpux.o \ | |
4900fc06 AM |
223 | ehppaelf.o \ |
224 | ehppalinux.o \ | |
006336b8 | 225 | ehppanbsd.o \ |
c29ef4b5 | 226 | ehppaobsd.o \ |
252b5132 RH |
227 | ei386aout.o \ |
228 | ei386beos.o \ | |
229 | ei386bsd.o \ | |
230 | ei386coff.o \ | |
231 | ei386go32.o \ | |
232 | ei386linux.o \ | |
233 | ei386lynx.o \ | |
234 | ei386mach.o \ | |
235 | ei386moss.o \ | |
236 | ei386msdos.o \ | |
237 | ei386nbsd.o \ | |
a0cb91c6 | 238 | ei386nto.o \ |
252b5132 RH |
239 | ei386nw.o \ |
240 | ei386pe.o \ | |
a7e78dae | 241 | ei386pe_posix.o \ |
252b5132 | 242 | elnk960.o \ |
cfa1ac0c | 243 | em32relf.o \ |
6edf0760 NC |
244 | em32rlelf.o \ |
245 | em32relf_linux.o \ | |
246 | em32rlelf_linux.o \ | |
60bcf0fa NC |
247 | em68hc11elf.o \ |
248 | em68hc11elfb.o \ | |
249 | em68hc12elf.o \ | |
250 | em68hc12elfb.o \ | |
252b5132 RH |
251 | em68k4knbsd.o \ |
252 | em68kaout.o \ | |
253 | em68kaux.o \ | |
254 | em68kcoff.o \ | |
255 | em68kelf.o \ | |
0b69cd08 | 256 | em68kelfnbsd.o \ |
252b5132 | 257 | em68klinux.o \ |
252b5132 RH |
258 | em68knbsd.o \ |
259 | em68kpsos.o \ | |
260 | em88kbcs.o \ | |
7499d566 | 261 | emaxqcoff.o \ |
71acc4e8 | 262 | emcorepe.o \ |
252b5132 RH |
263 | emipsbig.o \ |
264 | emipsbsd.o \ | |
265 | emipsidt.o \ | |
266 | emipsidtl.o \ | |
267 | emipslit.o \ | |
268 | emipslnews.o \ | |
344a211f | 269 | emipspe.o \ |
3b260895 NC |
270 | emsp430x110.o \ |
271 | emsp430x112.o \ | |
2469cfa2 NC |
272 | emsp430x1101.o \ |
273 | emsp430x1111.o \ | |
274 | emsp430x1121.o \ | |
b4275f43 NC |
275 | emsp430x1122.o \ |
276 | emsp430x1132.o \ | |
2469cfa2 | 277 | emsp430x122.o \ |
2469cfa2 | 278 | emsp430x123.o \ |
3b260895 | 279 | emsp430x1222.o \ |
2469cfa2 | 280 | emsp430x1232.o \ |
3b260895 NC |
281 | emsp430x133.o \ |
282 | emsp430x135.o \ | |
283 | emsp430x1331.o \ | |
284 | emsp430x1351.o \ | |
285 | emsp430x147.o \ | |
286 | emsp430x148.o \ | |
287 | emsp430x149.o \ | |
288 | emsp430x155.o \ | |
289 | emsp430x156.o \ | |
290 | emsp430x157.o \ | |
291 | emsp430x167.o \ | |
292 | emsp430x168.o \ | |
293 | emsp430x169.o \ | |
c05e9f04 NC |
294 | emsp430x1610.o \ |
295 | emsp430x1611.o \ | |
296 | emsp430x1612.o \ | |
44c86e8c NC |
297 | emsp430x2101.o \ |
298 | emsp430x2111.o \ | |
299 | emsp430x2121.o \ | |
300 | emsp430x2131.o \ | |
2469cfa2 NC |
301 | emsp430x311.o \ |
302 | emsp430x312.o \ | |
303 | emsp430x313.o \ | |
304 | emsp430x314.o \ | |
305 | emsp430x315.o \ | |
306 | emsp430x323.o \ | |
307 | emsp430x325.o \ | |
308 | emsp430x336.o \ | |
309 | emsp430x337.o \ | |
3b260895 NC |
310 | emsp430x412.o \ |
311 | emsp430x413.o \ | |
c05e9f04 NC |
312 | emsp430x415.o \ |
313 | emsp430x417.o \ | |
3b260895 NC |
314 | emsp430xE423.o \ |
315 | emsp430xE425.o \ | |
316 | emsp430xE427.o \ | |
317 | emsp430xW423.o \ | |
318 | emsp430xW425.o \ | |
319 | emsp430xW427.o \ | |
c05e9f04 NC |
320 | emsp430xG437.o \ |
321 | emsp430xG438.o \ | |
322 | emsp430xG439.o \ | |
2469cfa2 NC |
323 | emsp430x435.o \ |
324 | emsp430x436.o \ | |
3b260895 | 325 | emsp430x437.o \ |
2469cfa2 NC |
326 | emsp430x447.o \ |
327 | emsp430x448.o \ | |
328 | emsp430x449.o \ | |
252b5132 RH |
329 | enews.o \ |
330 | ens32knbsd.o \ | |
3b16e843 NC |
331 | eor32.o \ |
332 | eor32elf.o \ | |
252b5132 | 333 | epc532macha.o \ |
e135f41b | 334 | epdp11.o \ |
4900fc06 AM |
335 | epjelf.o \ |
336 | epjlelf.o \ | |
252b5132 RH |
337 | eppcmacos.o \ |
338 | eppcnw.o \ | |
339 | eppcpe.o \ | |
b2d65c0b | 340 | eppclynx.o \ |
252b5132 | 341 | eriscix.o \ |
252b5132 | 342 | esh.o \ |
2d92cb7d AO |
343 | eshelf32.o \ |
344 | eshlelf32.o \ | |
a2b3c630 SC |
345 | eshelf32_linux.o \ |
346 | eshlelf32_linux.o \ | |
5b0e55b6 JT |
347 | eshelf32_nbsd.o \ |
348 | eshlelf32_nbsd.o \ | |
252b5132 | 349 | eshelf.o \ |
4a428502 AO |
350 | eshelf_linux.o \ |
351 | eshlelf_linux.o \ | |
8d05742f JT |
352 | eshelf_nbsd.o \ |
353 | eshlelf_nbsd.o \ | |
ed71e111 NC |
354 | eshelf_nto.o \ |
355 | eshlelf_nto.o \ | |
252b5132 | 356 | eshl.o \ |
4900fc06 | 357 | eshlelf.o \ |
85fbca6a | 358 | eshlsymbian.o \ |
344a211f | 359 | eshpe.o \ |
252b5132 RH |
360 | esparcaout.o \ |
361 | esparclinux.o \ | |
252b5132 RH |
362 | esparcnbsd.o \ |
363 | est2000.o \ | |
364 | esun3.o \ | |
365 | esun4.o \ | |
366 | etic30aout.o \ | |
367 | etic30coff.o \ | |
0da35f8b SS |
368 | etic3xcoff.o \ |
369 | etic3xcoff_onchip.o \ | |
026df7c5 | 370 | etic4xcoff.o \ |
74459f0e | 371 | etic54xcoff.o \ |
252b5132 RH |
372 | etic80coff.o \ |
373 | evanilla.o \ | |
374 | evax.o \ | |
ab68f3e0 | 375 | evaxnbsd.o \ |
252b5132 RH |
376 | evsta.o \ |
377 | ew65.o \ | |
378 | ez8001.o \ | |
49f58d10 | 379 | eelf32frvfd.o \ |
3c9b82ba | 380 | ez80.o \ |
252b5132 RH |
381 | ez8002.o |
382 | ||
383 | ALL_64_EMULATIONS = \ | |
41c49998 | 384 | eelf64_aix.o \ |
800eeca4 | 385 | eelf64_ia64.o \ |
28912fd9 | 386 | eelf64_ia64_fbsd.o \ |
2d92cb7d AO |
387 | eshelf64.o \ |
388 | eshlelf64.o \ | |
5b0e55b6 JT |
389 | eshelf64_nbsd.o \ |
390 | eshlelf64_nbsd.o \ | |
2be3aa03 | 391 | eelf_x86_64.o \ |
28912fd9 | 392 | eelf_x86_64_fbsd.o \ |
a85d7ed0 | 393 | eelf64_s390.o \ |
252b5132 | 394 | eelf64_sparc.o \ |
28912fd9 | 395 | eelf64_sparc_fbsd.o \ |
22c675a7 | 396 | eelf64alpha.o \ |
28912fd9 | 397 | eelf64alpha_fbsd.o \ |
fc18a3f3 | 398 | eelf64alpha_nbsd.o \ |
4900fc06 | 399 | eelf64bmip.o \ |
fdec3cfc L |
400 | eelf64btsmip.o \ |
401 | eelf64ltsmip.o \ | |
3b1b01cf | 402 | eelf64hppa.o \ |
3c3bdf30 NC |
403 | eelf64mmix.o \ |
404 | emmo.o \ | |
a7d792bb L |
405 | eelf64ppc.o \ |
406 | eelf64lppc.o \ | |
9f22353f | 407 | ehppa64linux.o |
252b5132 RH |
408 | |
409 | ALL_EMUL_EXTRA_OFILES = \ | |
4900fc06 AM |
410 | deffilep.o \ |
411 | pe-dll.o | |
252b5132 RH |
412 | |
413 | CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \ | |
414 | ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \ | |
415 | mri.c ldcref.c pe-dll.c | |
416 | ||
417 | HFILES = ld.h ldctor.h ldemul.h ldexp.h ldfile.h \ | |
418 | ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \ | |
ebe1fac1 | 419 | ldwrite.h mri.h deffile.h pe-dll.h elf-hints-local.h |
252b5132 RH |
420 | |
421 | GENERATED_CFILES = ldgram.c ldlex.c deffilep.c | |
422 | GENERATED_HFILES = ldgram.h ldemul-list.h deffilep.h | |
423 | ||
424 | OFILES = ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o \ | |
425 | ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o \ | |
426 | ldfile.o ldcref.o ${EMULATION_OFILES} ${EMUL_EXTRA_OFILES} | |
427 | ||
428 | STAGESTUFF = *.o ldscripts/* e*.c | |
429 | ||
ceae3e33 AM |
430 | # Disable -Werror, if it has been enabled, since old versions of bison/ |
431 | # yacc will produce working code which contain compile time warnings. | |
432 | ldgram.o: | |
9e9b66a9 | 433 | $(COMPILE) -c $< $(NO_WERROR) |
ceae3e33 | 434 | ldlex.o: |
9e9b66a9 | 435 | $(COMPILE) -c $< $(NO_WERROR) |
ceae3e33 | 436 | deffilep.o: |
9e9b66a9 | 437 | $(COMPILE) -c $< $(NO_WERROR) |
ceae3e33 | 438 | |
252b5132 RH |
439 | # At the moment this is just a list of those emulation template files |
440 | # that contain internationalised strings. | |
441 | EMULATION_FILES = emultempl/pe.em emultempl/armcoff.em | |
442 | ||
443 | POTFILES = $(CFILES) $(HFILES) $(EMULATION_FILES) | |
444 | ||
445 | po/POTFILES.in: @MAINT@ Makefile | |
68cdbb4a | 446 | for f in $(POTFILES); do echo $$f; done | LC_COLLATE= sort > tmp \ |
252b5132 RH |
447 | && mv tmp $(srcdir)/po/POTFILES.in |
448 | ||
449 | ldmain.o: ldmain.c config.status | |
9c8ebd6a DJ |
450 | $(COMPILE) -c -DDEFAULT_EMULATION='"$(EMUL)"' \ |
451 | -DSCRIPTDIR='"$(scriptdir)"' -DBINDIR='"$(bindir)"' \ | |
0125cdf2 | 452 | -DTOOLBINDIR='"$(tooldir)/bin"' \ |
9c8ebd6a DJ |
453 | -DTARGET='"@target@"' @TARGET_SYSTEM_ROOT_DEFINE@ \ |
454 | $(srcdir)/ldmain.c | |
252b5132 RH |
455 | |
456 | ldemul-list.h: Makefile | |
457 | (echo "/* This file is automatically generated. DO NOT EDIT! */";\ | |
458 | for f in `echo " " ${EMULATION_OFILES} "" \ | |
459 | | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \ | |
460 | echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \ | |
461 | done;\ | |
462 | echo "";\ | |
463 | echo "#define EMULATION_LIST \\";\ | |
464 | for f in `echo " " ${EMULATION_OFILES} "" \ | |
465 | | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \ | |
466 | echo " &ld_$${f}_emulation, \\"; \ | |
467 | done;\ | |
468 | echo " 0") >ldemul-tmp.h | |
469 | mv ldemul-tmp.h ldemul-list.h | |
470 | ||
597e2591 ILT |
471 | stringify.sed: ${srcdir}/emultempl/$(STRINGIFY) |
472 | cp ${srcdir}/emultempl/$(STRINGIFY) stringify.sed | |
473 | ||
252b5132 RH |
474 | # These all start with e so 'make clean' can find them. |
475 | ||
dfcffada | 476 | GENSCRIPTS = LIB_PATH='${LIB_PATH}' $(SHELL) $(srcdir)/genscripts.sh "${srcdir}" "${libdir}" "${prefix}" "${exec_prefix}" @host@ @target@ @target_alias@ "@EMULATION_LIBPATH@" "@NATIVE_LIB_DIRS@" @use_sysroot@ |
597e2591 | 477 | GEN_DEPENDS = $(srcdir)/genscripts.sh stringify.sed |
aafdb207 | 478 | |
252b5132 RH |
479 | @TDIRS@ |
480 | ||
eb1e0e80 NC |
481 | eaix5ppc.c: $(srcdir)/emulparams/aix5ppc.sh \ |
482 | $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS} | |
483 | ${GENSCRIPTS} aix5ppc "$(tdir_aixppc)" | |
484 | eaix5rs6.c: $(srcdir)/emulparams/aix5rs6.sh \ | |
485 | $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS} | |
486 | ${GENSCRIPTS} aix5rs6 "$(tdir_aixrs6)" | |
252b5132 RH |
487 | eaixppc.c: $(srcdir)/emulparams/aixppc.sh \ |
488 | $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS} | |
489 | ${GENSCRIPTS} aixppc "$(tdir_aixppc)" | |
490 | eaixrs6.c: $(srcdir)/emulparams/aixrs6.sh \ | |
491 | $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS} | |
492 | ${GENSCRIPTS} aixrs6 "$(tdir_aixrs6)" | |
493 | ealpha.c: $(srcdir)/emulparams/alpha.sh \ | |
494 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/alpha.sc ${GEN_DEPENDS} | |
495 | ${GENSCRIPTS} alpha "$(tdir_alpha)" | |
496 | earcelf.c: $(srcdir)/emulparams/arcelf.sh \ | |
497 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
498 | ${GENSCRIPTS} arcelf "$(tdir_arcelf)" | |
499 | earmelf.c: $(srcdir)/emulparams/armelf.sh \ | |
5f992e62 AM |
500 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ |
501 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
252b5132 | 502 | ${GENSCRIPTS} armelf "$(tdir_armelf)" |
d2012d17 DJ |
503 | earmelfb.c: $(srcdir)/emulparams/armelfb.sh $(srcdir)/emulparams/armelf.sh \ |
504 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ | |
505 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
506 | ${GENSCRIPTS} armelfb "$(tdir_armelfb)" | |
28912fd9 DB |
507 | earmelf_fbsd.c: $(srcdir)/emulparams/armelf_fbsd.sh \ |
508 | $(srcdir)/emulparams/armelf.sh \ | |
509 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ | |
510 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
511 | ${GENSCRIPTS} armelf_fbsd "$(tdir_armelf_fbsd)" | |
252b5132 | 512 | earmelf_linux.c: $(srcdir)/emulparams/armelf_linux.sh \ |
5f992e62 AM |
513 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ |
514 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
252b5132 | 515 | ${GENSCRIPTS} armelf_linux "$(tdir_armelf_linux)" |
6b3221b4 MM |
516 | earmelf_linux_eabi.c: $(srcdir)/emulparams/armelf_linux_eabi.sh \ |
517 | $(srcdir)/emulparams/armelf_linux.sh \ | |
518 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ | |
519 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
520 | ${GENSCRIPTS} armelf_linux_eabi "$(tdir_armelf_linux_abi)" | |
d2012d17 DJ |
521 | earmelfb_linux.c: $(srcdir)/emulparams/armelfb_linux.sh \ |
522 | $(srcdir)/emulparams/armelf_linux.sh \ | |
523 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ | |
524 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
525 | ${GENSCRIPTS} armelfb_linux "$(tdir_armelfb_linux)" | |
a154a8ad MM |
526 | earmelfb_linux_eabi.c: $(srcdir)/emulparams/armelfb_linux_eabi.sh \ |
527 | $(srcdir)/emulparams/armelf_linux_eabi.sh \ | |
528 | $(srcdir)/emulparams/armelf_linux.sh \ | |
529 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ | |
530 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
531 | ${GENSCRIPTS} armelfb_linux_eabi "$(tdir_armelfb_linux_abi)" | |
3695c299 AM |
532 | earmelf_nbsd.c: $(srcdir)/emulparams/armelf_nbsd.sh \ |
533 | $(srcdir)/emulparams/armelf.sh \ | |
534 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ | |
535 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
536 | ${GENSCRIPTS} armelf_nbsd "$(tdir_armelf_nbsd)" | |
658f2588 JT |
537 | earmelfb_nbsd.c: $(srcdir)/emulparams/armelfb_nbsd.sh \ |
538 | $(srcdir)/emulparams/armelf_nbsd.sh \ | |
539 | $(srcdir)/emulparams/armelf.sh \ | |
540 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ | |
541 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
542 | ${GENSCRIPTS} armelfb_nbsd "$(tdir_armelfb_nbsd)" | |
4e7fd91e | 543 | earmelf_vxworks.c: $(srcdir)/emulparams/armelf_vxworks.sh \ |
00a97672 RS |
544 | $(srcdir)/emulparams/vxworks.sh $(srcdir)/emulparams/armelf.sh \ |
545 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/vxworks.em \ | |
4e7fd91e PB |
546 | $(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/elf.sc \ |
547 | ${GEN_DEPENDS} | |
548 | ${GENSCRIPTS} armelf_vxworks "$(tdir_armelf)" | |
252b5132 RH |
549 | earmaoutb.c: $(srcdir)/emulparams/armaoutb.sh \ |
550 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS} | |
551 | ${GENSCRIPTS} armaoutb "$(tdir_armaoutb)" | |
552 | earmaoutl.c: $(srcdir)/emulparams/armaoutl.sh \ | |
553 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS} | |
554 | ${GENSCRIPTS} armaoutl "$(tdir_armaoutl)" | |
555 | earmcoff.c: $(srcdir)/emulparams/armcoff.sh \ | |
556 | $(srcdir)/emultempl/armcoff.em $(srcdir)/scripttempl/armcoff.sc ${GEN_DEPENDS} | |
557 | ${GENSCRIPTS} armcoff "$(tdir_armcoff)" | |
8959586a NC |
558 | earmnbsd.c: $(srcdir)/emulparams/armnbsd.sh \ |
559 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
560 | ${GENSCRIPTS} armnbsd "$(tdir_armnbsd)" | |
7e392df6 NC |
561 | earmnto.c: $(srcdir)/emulparams/armnto.sh \ |
562 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/armelf.em \ | |
563 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
564 | ${GENSCRIPTS} armnto "$(tdir_armnto)" | |
be2153ad | 565 | earm_epoc_pe.c: $(srcdir)/emulparams/arm_epoc_pe.sh \ |
e6869249 | 566 | $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/epocpe.sc ${GEN_DEPENDS} |
be2153ad | 567 | ${GENSCRIPTS} arm_epoc_pe "$(tdir_armpe)" |
252b5132 RH |
568 | earmpe.c: $(srcdir)/emulparams/armpe.sh \ |
569 | $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS} | |
570 | ${GENSCRIPTS} armpe "$(tdir_armpe)" | |
e5a52504 MM |
571 | earmsymbian.c: $(srcdir)/emulparams/armsymbian.sh \ |
572 | $(srcdir)/emulparams/armelf.sh $(srcdir)/emultempl/elf32.em \ | |
5f81b918 | 573 | $(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/armbpabi.sc \ |
e5a52504 MM |
574 | ${GEN_DEPENDS} |
575 | ${GENSCRIPTS} armsymbian "$(tdir_armelf)" | |
75ca919a | 576 | eavr2.c: $(srcdir)/emulparams/avr2.sh \ |
fae1e84f MM |
577 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ |
578 | ${GEN_DEPENDS} | |
75ca919a MM |
579 | ${GENSCRIPTS} avr2 "$(tdir_avr2)" |
580 | eavr1.c: $(srcdir)/emulparams/avr1.sh \ | |
fae1e84f MM |
581 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ |
582 | ${GEN_DEPENDS} | |
75ca919a | 583 | ${GENSCRIPTS} avr1 "$(tdir_avr2)" |
fae1e84f MM |
584 | eavr3.c: $(srcdir)/emulparams/avr3.sh \ |
585 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ | |
586 | ${GEN_DEPENDS} | |
75ca919a | 587 | ${GENSCRIPTS} avr3 "$(tdir_avr2)" |
fae1e84f MM |
588 | eavr4.c: $(srcdir)/emulparams/avr4.sh \ |
589 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ | |
590 | ${GEN_DEPENDS} | |
75ca919a | 591 | ${GENSCRIPTS} avr4 "$(tdir_avr2)" |
fae1e84f MM |
592 | eavr5.c: $(srcdir)/emulparams/avr5.sh \ |
593 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ | |
594 | ${GEN_DEPENDS} | |
75ca919a | 595 | ${GENSCRIPTS} avr5 "$(tdir_avr2)" |
28c9d252 NC |
596 | eavr6.c: $(srcdir)/emulparams/avr6.sh \ |
597 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/avr.sc \ | |
598 | ${GEN_DEPENDS} | |
599 | ${GENSCRIPTS} avr6 "$(tdir_avr2)" | |
9d7e2ba5 JE |
600 | ecoff_i860.c: $(srcdir)/emulparams/coff_i860.sh \ |
601 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i860coff.sc ${GEN_DEPENDS} | |
602 | ${GENSCRIPTS} coff_i860 "$(tdir_coff_i860)" | |
252b5132 RH |
603 | ecoff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \ |
604 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS} | |
605 | ${GENSCRIPTS} coff_sparc "$(tdir_coff_sparc)" | |
9d06555c HPN |
606 | ecrisaout.c: $(srcdir)/emulparams/crisaout.sh \ |
607 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/crisaout.sc ${GEN_DEPENDS} | |
608 | ${GENSCRIPTS} crisaout "$(tdir_cris)" | |
609 | ecriself.c: $(srcdir)/emulparams/criself.sh \ | |
6caa99ab | 610 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
9d06555c HPN |
611 | ${GENSCRIPTS} criself "$(tdir_cris)" |
612 | ecrislinux.c: $(srcdir)/emulparams/crislinux.sh \ | |
613 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
614 | ${GENSCRIPTS} crislinux "$(tdir_cris)" | |
252b5132 | 615 | ed10velf.c: $(srcdir)/emulparams/d10velf.sh \ |
6caa99ab | 616 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfd10v.sc ${GEN_DEPENDS} |
252b5132 RH |
617 | ${GENSCRIPTS} d10velf "$(tdir_d10v)" |
618 | ed30velf.c: $(srcdir)/emulparams/d30velf.sh \ | |
619 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS} | |
620 | ${GENSCRIPTS} d30velf "$(tdir_d30v)" | |
621 | ed30v_o.c: $(srcdir)/emulparams/d30v_o.sh \ | |
622 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS} | |
623 | ${GENSCRIPTS} d30v_o "$(tdir_d30v)" | |
624 | ed30v_e.c: $(srcdir)/emulparams/d30v_e.sh \ | |
625 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS} | |
626 | ${GENSCRIPTS} d30v_e "$(tdir_d30v)" | |
627 | edelta68.c: $(srcdir)/emulparams/delta68.sh \ | |
628 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/delta68.sc ${GEN_DEPENDS} | |
629 | ${GENSCRIPTS} delta68 "$(tdir_delta68)" | |
95f4309b | 630 | eelf32bfin.c: $(srcdir)/emulparams/bfin.sh \ |
753a4ce3 | 631 | $(srcdir)/emultempl/elf32.em \ |
95f4309b CM |
632 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
633 | ${GENSCRIPTS} elf32bfin "$(tdir_elf32bfin)" bfin | |
753a4ce3 BS |
634 | eelf32bfinfd.c: $(srcdir)/emulparams/elf32bfinfd.sh $(srcdir)/emulparams/bfin.sh \ |
635 | $(srcdir)/emultempl/elf32.em \ | |
636 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
637 | ${GENSCRIPTS} elf32bfinfd "$(tdir_elf32bfinfd)" elf32bfinfd | |
d172d4ba NC |
638 | eelf32_dlx.c: $(srcdir)/emulparams/elf32_dlx.sh \ |
639 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/dlx.sc ${GEN_DEPENDS} | |
640 | ${GENSCRIPTS} elf32_dlx "$(tdir_elf32_dlx)" | |
d70c5fc7 NC |
641 | eelf32xc16x.c: $(srcdir)/emulparams/elf32xc16x.sh \ |
642 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/needrelax.em \ | |
643 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
644 | ${GENSCRIPTS} elf32xc16x "$(tdir_xc16x)" | |
645 | eelf32xc16xl.c: $(srcdir)/emulparams/elf32xc16xl.sh \ | |
646 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/needrelax.em \ | |
647 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
648 | ${GENSCRIPTS} elf32xc16xl "$(tdir_xc16xl)" | |
649 | eelf32xc16xs.c: $(srcdir)/emulparams/elf32xc16xs.sh \ | |
650 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/needrelax.em \ | |
651 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
652 | ${GENSCRIPTS} elf32xc16xs "$(tdir_xc16xs)" | |
93fbbb04 GK |
653 | eelf32xstormy16.c: $(srcdir)/emulparams/elf32xstormy16.sh \ |
654 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/needrelax.em \ | |
1ee7cf4c | 655 | $(srcdir)/scripttempl/xstormy16.sc ${GEN_DEPENDS} |
93fbbb04 | 656 | ${GENSCRIPTS} elf32xstormy16 "$(tdir_xstormy16)" |
4a096548 AO |
657 | eelf32am33lin.c: $(srcdir)/emulparams/elf32am33lin.sh \ |
658 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
659 | ${GENSCRIPTS} elf32am33lin "$(tdir_mn10300)" | |
ab68f3e0 JT |
660 | eelf32vax.c: $(srcdir)/emulparams/elf32vax.sh \ |
661 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
662 | ${GENSCRIPTS} elf32vax "$(tdir_elf32vax)" | |
e0001a05 | 663 | eelf32xtensa.c: $(srcdir)/emulparams/elf32xtensa.sh \ |
43cd72b9 BW |
664 | $(srcdir)/emulparams/xtensa-config.sh $(srcdir)/emultempl/elf32.em \ |
665 | $(srcdir)/emultempl/xtensaelf.em $(INCDIR)/xtensa-config.h \ | |
666 | $(BFDDIR)/elf-bfd.h $(BFDDIR)/libbfd.h $(INCDIR)/elf/xtensa.h \ | |
e0001a05 NC |
667 | $(srcdir)/scripttempl/elfxtensa.sc ${GEN_DEPENDS} |
668 | ${GENSCRIPTS} elf32xtensa "$(tdir_elf32xtensa)" | |
252b5132 RH |
669 | eelf32fr30.c: $(srcdir)/emulparams/elf32fr30.sh \ |
670 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
671 | ${GENSCRIPTS} elf32fr30 "$(tdir_fr30)" | |
7d553a40 DB |
672 | eelf32frv.c: $(srcdir)/emulparams/elf32frv.sh \ |
673 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
674 | ${GENSCRIPTS} elf32frv "$(tdir_frv)" | |
71acc4e8 NC |
675 | eelf32mcore.c: $(srcdir)/emulparams/elf32mcore.sh \ |
676 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
677 | ${GENSCRIPTS} elf32mcore "$(tdir_mcore)" | |
252b5132 | 678 | em32relf.c: $(srcdir)/emulparams/m32relf.sh \ |
18c7a9a5 | 679 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
252b5132 | 680 | ${GENSCRIPTS} m32relf "$(tdir_m32r)" |
6edf0760 NC |
681 | em32rlelf.c: $(srcdir)/emulparams/m32rlelf.sh \ |
682 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
683 | ${GENSCRIPTS} m32rlelf "$(tdir_m32rlelf)" | |
684 | em32relf_linux.c: $(srcdir)/emulparams/m32relf_linux.sh \ | |
685 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
686 | ${GENSCRIPTS} m32relf_linux "$(tdir_m32relf_linux)" | |
687 | em32rlelf_linux.c: $(srcdir)/emulparams/m32rlelf_linux.sh \ | |
688 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
689 | ${GENSCRIPTS} m32rlelf_linux "$(tdir_m32rlelf_linux)" | |
252b5132 RH |
690 | eelf32_sparc.c: $(srcdir)/emulparams/elf32_sparc.sh \ |
691 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
692 | ${GENSCRIPTS} elf32_sparc "$(tdir_elf32_sparc)" | |
910600e9 RS |
693 | eelf32_sparc_vxworks.c: $(srcdir)/emulparams/elf32_sparc_vxworks.sh \ |
694 | $(srcdir)/emulparams/vxworks.sh $(srcdir)/emulparams/elf32_sparc.sh \ | |
695 | $(srcdir)/emultempl/vxworks.em $(srcdir)/emultempl/elf32.em \ | |
696 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
697 | ${GENSCRIPTS} elf32_sparc_vxworks "$(tdir_elf32_sparc_vxworks)" | |
165589e4 JE |
698 | eelf32_i860.c: $(srcdir)/emulparams/elf32_i860.sh \ |
699 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
700 | ${GENSCRIPTS} elf32_i860 "$(tdir_elf32_i860)" | |
0ccf812a ILT |
701 | eelf32_i960.c: $(srcdir)/emulparams/elf32_i960.sh \ |
702 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
703 | ${GENSCRIPTS} elf32_i960 "$(tdir_elf32_i960)" | |
252b5132 | 704 | eelf32b4300.c: $(srcdir)/emulparams/elf32b4300.sh \ |
23867d67 | 705 | $(srcdir)/emulparams/elf32bmip.sh \ |
252b5132 RH |
706 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
707 | ${GENSCRIPTS} elf32b4300 "$(tdir_elf32b4300)" | |
0949843d NC |
708 | eelf32cr16c.c: $(srcdir)/emulparams/elf32cr16c.sh \ |
709 | $(srcdir)/emultempl/elf32.em \ | |
710 | $(srcdir)/scripttempl/elf32cr16c.sc ${GEN_DEPENDS} | |
711 | ${GENSCRIPTS} elf32cr16c "$(tdir_elf32cr16c)" | |
252b5132 RH |
712 | eelf32bmip.c: $(srcdir)/emulparams/elf32bmip.sh \ |
713 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
714 | ${GENSCRIPTS} elf32bmip "$(tdir_elf32bmip)" | |
715 | eelf32bsmip.c: $(srcdir)/emulparams/elf32bsmip.sh \ | |
52f89c0a | 716 | $(srcdir)/emulparams/elf32bmip.sh $(srcdir)/emultempl/irix.em \ |
252b5132 RH |
717 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
718 | ${GENSCRIPTS} elf32bsmip "$(tdir_elf32bsmip)" | |
3548145d | 719 | eelf32btsmip.c: $(srcdir)/emulparams/elf32btsmip.sh \ |
23867d67 | 720 | $(srcdir)/emulparams/elf32bmip.sh \ |
3548145d UC |
721 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
722 | ${GENSCRIPTS} elf32btsmip "$(tdir_elf32btsmip)" | |
1fe1f39c NC |
723 | eelf32crx.c: $(srcdir)/emulparams/elf32crx.sh \ |
724 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/crxelf.em \ | |
725 | $(srcdir)/scripttempl/elf32crx.sc ${GEN_DEPENDS} | |
726 | ${GENSCRIPTS} elf32crx "$(tdir_elf32crx)" | |
7808a785 | 727 | eelf32btsmipn32.c: $(srcdir)/emulparams/elf32btsmipn32.sh \ |
23867d67 | 728 | $(srcdir)/emulparams/elf32bmip.sh \ |
7808a785 TS |
729 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
730 | ${GENSCRIPTS} elf32btsmipn32 "$(tdir_elf32btsmipn32)" | |
fdec3cfc | 731 | eelf32ltsmip.c: $(srcdir)/emulparams/elf32ltsmip.sh \ |
465bc359 | 732 | $(srcdir)/emulparams/elf32btsmip.sh $(srcdir)/emulparams/elf32bmip.sh \ |
fdec3cfc L |
733 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
734 | ${GENSCRIPTS} elf32ltsmip "$(tdir_elf32ltsmip)" | |
7808a785 TS |
735 | eelf32ltsmipn32.c: $(srcdir)/emulparams/elf32ltsmipn32.sh \ |
736 | $(srcdir)/emulparams/elf32btsmip.sh $(srcdir)/emulparams/elf32bmip.sh \ | |
737 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
738 | ${GENSCRIPTS} elf32ltsmipn32 "$(tdir_elf32ltsmipn32)" | |
252b5132 | 739 | eelf32ebmip.c: $(srcdir)/emulparams/elf32ebmip.sh \ |
23867d67 | 740 | $(srcdir)/emulparams/elf32bmip.sh \ |
252b5132 RH |
741 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
742 | ${GENSCRIPTS} elf32ebmip "$(tdir_elf32ebmip)" | |
0a44bf69 RS |
743 | eelf32ebmipvxworks.c: $(srcdir)/emulparams/elf32ebmipvxworks.sh \ |
744 | $(srcdir)/emulparams/elf32ebmip.sh $(srcdir)/emulparams/vxworks.sh \ | |
745 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/vxworks.em \ | |
746 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
747 | ${GENSCRIPTS} elf32ebmipvxworks "$(tdir_elf32ebmipvxworks)" | |
252b5132 | 748 | eelf32elmip.c: $(srcdir)/emulparams/elf32elmip.sh \ |
465bc359 | 749 | $(srcdir)/emulparams/elf32lmip.sh $(srcdir)/emulparams/elf32bmip.sh \ |
252b5132 RH |
750 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
751 | ${GENSCRIPTS} elf32elmip "$(tdir_elf32elmip)" | |
0a44bf69 RS |
752 | eelf32elmipvxworks.c: $(srcdir)/emulparams/elf32elmipvxworks.sh \ |
753 | $(srcdir)/emulparams/elf32elmip.sh $(srcdir)/emulparams/vxworks.sh \ | |
754 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/vxworks.em \ | |
755 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
756 | ${GENSCRIPTS} elf32elmipvxworks "$(tdir_elf32elmipvxworks)" | |
dc831978 | 757 | eelf32bmipn32.c: $(srcdir)/emulparams/elf32bmipn32.sh \ |
52f89c0a | 758 | $(srcdir)/emultempl/irix.em \ |
dc831978 MM |
759 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
760 | ${GENSCRIPTS} elf32bmipn32 "$(tdir_elf32bmipn32)" | |
252b5132 | 761 | eelf32l4300.c: $(srcdir)/emulparams/elf32l4300.sh \ |
465bc359 | 762 | $(srcdir)/emulparams/elf32b4300.sh $(srcdir)/emulparams/elf32bmip.sh \ |
252b5132 RH |
763 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
764 | ${GENSCRIPTS} elf32l4300 "$(tdir_elf32l4300)" | |
765 | eelf32lmip.c: $(srcdir)/emulparams/elf32lmip.sh \ | |
23867d67 | 766 | $(srcdir)/emulparams/elf32bmip.sh \ |
252b5132 RH |
767 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
768 | ${GENSCRIPTS} elf32lmip "$(tdir_elf32lmip)" | |
325fab4e NC |
769 | eelf32mipswindiss.c: $(srcdir)/emulparams/elf32mipswindiss.sh \ |
770 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
771 | ${GENSCRIPTS} elf32mipswindiss "$(tdir_elf32mipswindiss)" | |
252b5132 | 772 | eelf32lppc.c: $(srcdir)/emulparams/elf32lppc.sh \ |
4a3dc543 | 773 | $(srcdir)/emulparams/elf32ppccommon.sh \ |
f9e6bfa8 | 774 | $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emultempl/ppc32elf.em \ |
bdbe5705 | 775 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
252b5132 | 776 | ${GENSCRIPTS} elf32lppc "$(tdir_elf32lppc)" |
59bc061d | 777 | eelf32lppcnto.c: $(srcdir)/emulparams/elf32lppcnto.sh \ |
4a3dc543 RS |
778 | $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \ |
779 | $(srcdir)/emultempl/ppc32elf.em $(srcdir)/emultempl/elf32.em \ | |
780 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
59bc061d | 781 | ${GENSCRIPTS} elf32lppcnto "$(tdir_elf32lppcnto)" |
bdbe5705 | 782 | eelf32lppcsim.c: $(srcdir)/emulparams/elf32lppcsim.sh \ |
465bc359 | 783 | $(srcdir)/emulparams/elf32lppc.sh $(srcdir)/emulparams/elf32ppc.sh \ |
4a3dc543 | 784 | $(srcdir)/emulparams/elf32ppccommon.sh $(srcdir)/emultempl/ppc32elf.em \ |
bdbe5705 GK |
785 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
786 | ${GENSCRIPTS} elf32lppcsim "$(tdir_elf32lppcsim)" | |
59bc061d | 787 | eelf32ppcnto.c: $(srcdir)/emulparams/elf32ppcnto.sh \ |
4a3dc543 RS |
788 | $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \ |
789 | $(srcdir)/emultempl/ppc32elf.em $(srcdir)/emultempl/elf32.em \ | |
790 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
59bc061d | 791 | ${GENSCRIPTS} elf32ppcnto "$(tdir_elf32ppcnto)" |
4a1359d7 AM |
792 | eelf32ppcwindiss.c: $(srcdir)/emulparams/elf32ppcwindiss.sh \ |
793 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
94349e12 | 794 | ${GENSCRIPTS} elf32ppcwindiss "$(tdir_elf32ppcwindiss)" |
9d8504b1 | 795 | eelf32ppcvxworks.c: $(srcdir)/emulparams/elf32ppcvxworks.sh \ |
4a3dc543 | 796 | $(srcdir)/emulparams/elf32ppccommon.sh $(srcdir)/emulparams/vxworks.sh \ |
4f471f39 RS |
797 | $(srcdir)/emultempl/vxworks.em $(srcdir)/emultempl/elf32.em \ |
798 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
9d8504b1 | 799 | ${GENSCRIPTS} elf32ppcvxworks "$(tdir_elf32ppcvxworks)" |
252b5132 | 800 | eelf32lsmip.c: $(srcdir)/emulparams/elf32lsmip.sh \ |
465bc359 | 801 | $(srcdir)/emulparams/elf32lmip.sh $(srcdir)/emulparams/elf32bmip.sh \ |
252b5132 RH |
802 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
803 | ${GENSCRIPTS} elf32lsmip "$(tdir_elf32lsmip)" | |
c7e40348 NC |
804 | eelf32openrisc.c: $(srcdir)/emulparams/elf32openrisc.sh \ |
805 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
806 | ${GENSCRIPTS} elf32openrisc "$(tdir_openrisc)" | |
4a3dc543 RS |
807 | eelf32ppc.c: $(srcdir)/emulparams/elf32ppc.sh \ |
808 | $(srcdir)/emulparams/elf32ppccommon.sh $(srcdir)/emultempl/ppc32elf.em \ | |
bdbe5705 | 809 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
252b5132 | 810 | ${GENSCRIPTS} elf32ppc "$(tdir_elf32ppc)" |
28912fd9 | 811 | eelf32ppc_fbsd.c: $(srcdir)/emulparams/elf32ppc_fbsd.sh \ |
4a3dc543 RS |
812 | $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \ |
813 | $(srcdir)/emultempl/ppc32elf.em $(srcdir)/emultempl/elf32.em \ | |
814 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
28912fd9 | 815 | ${GENSCRIPTS} elf32ppc_fbsd "$(tdir_elf32ppc_fbsd)" |
bdbe5705 | 816 | eelf32ppcsim.c: $(srcdir)/emulparams/elf32ppcsim.sh \ |
4a3dc543 RS |
817 | $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \ |
818 | $(srcdir)/emultempl/ppc32elf.em $(srcdir)/emultempl/elf32.em \ | |
819 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
bdbe5705 | 820 | ${GENSCRIPTS} elf32ppcsim "$(tdir_elf32ppcsim)" |
ec2f040d | 821 | eelf32ppclinux.c: $(srcdir)/emulparams/elf32ppclinux.sh \ |
4a3dc543 RS |
822 | $(srcdir)/emulparams/elf32ppc.sh $(srcdir)/emulparams/elf32ppccommon.sh \ |
823 | $(srcdir)/emultempl/ppc32elf.em $(srcdir)/emultempl/elf32.em \ | |
824 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
ec2f040d | 825 | ${GENSCRIPTS} elf32ppclinux "$(tdir_elf32ppclinux)" |
1f808cd5 | 826 | eelf64ppc.c: $(srcdir)/emulparams/elf64ppc.sh $(srcdir)/emultempl/ppc64elf.em \ |
5c67d4bb AM |
827 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
828 | ${GENSCRIPTS} elf64ppc "$(tdir_elf64ppc)" | |
829 | eelf64lppc.c: $(srcdir)/emulparams/elf64lppc.sh \ | |
1f808cd5 | 830 | $(srcdir)/emulparams/elf64ppc.sh $(srcdir)/emultempl/ppc64elf.em \ |
5c67d4bb AM |
831 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
832 | ${GENSCRIPTS} elf64lppc "$(tdir_elf64lppc)" | |
5b93d8bb AM |
833 | eelf32i370.c: $(srcdir)/emulparams/elf32i370.sh \ |
834 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfi370.sc ${GEN_DEPENDS} | |
835 | ${GENSCRIPTS} elf32i370 "$(tdir_elf32i370)" | |
cf88bb9f NC |
836 | eelf32ip2k.c: $(srcdir)/emulparams/elf32ip2k.sh \ |
837 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/ip2k.sc ${GEN_DEPENDS} | |
838 | ${GENSCRIPTS} elf32ip2k "$(tdir_ip2k)" | |
e09a7106 SC |
839 | eelf32iq2000.c: $(srcdir)/emulparams/elf32iq2000.sh \ |
840 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/iq2000.sc ${GEN_DEPENDS} | |
841 | ${GENSCRIPTS} elf32iq2000 "$(tdir_iq2000)" | |
842 | eelf32iq10.c: $(srcdir)/emulparams/elf32iq10.sh \ | |
843 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/iq2000.sc ${GEN_DEPENDS} | |
9c8ebd6a | 844 | ${GENSCRIPTS} elf32iq10 "$(tdir_iq10)" |
252b5132 | 845 | eelf64alpha.c: $(srcdir)/emulparams/elf64alpha.sh \ |
7a5df8d0 NC |
846 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/alphaelf.em \ |
847 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
252b5132 | 848 | ${GENSCRIPTS} elf64alpha "$(tdir_elf64alpha)" |
28912fd9 DB |
849 | eelf64alpha_fbsd.c: $(srcdir)/emulparams/elf64alpha_fbsd.sh \ |
850 | $(srcdir)/emulparams/elf64alpha.sh \ | |
7a5df8d0 NC |
851 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/alphaelf.em \ |
852 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
28912fd9 | 853 | ${GENSCRIPTS} elf64alpha_fbsd "$(tdir_elf64alpha_fbsd)" |
fc18a3f3 RH |
854 | eelf64alpha_nbsd.c: $(srcdir)/emulparams/elf64alpha_nbsd.sh \ |
855 | $(srcdir)/emulparams/elf64alpha.sh \ | |
7a5df8d0 NC |
856 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/alphaelf.em \ |
857 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
fc18a3f3 | 858 | ${GENSCRIPTS} elf64alpha_nbsd "$(tdir_elf64alpha_nbsd)" |
730a39a0 | 859 | eelf64hppa.c: $(srcdir)/emulparams/elf64hppa.sh \ |
465bc359 | 860 | $(srcdir)/emulparams/hppa64linux.sh \ |
730a39a0 JL |
861 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
862 | ${GENSCRIPTS} elf64hppa "$(tdir_elf64hppa)" | |
41c49998 TW |
863 | eelf64_aix.c: $(srcdir)/emulparams/elf64_aix.sh \ |
864 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
865 | ${GENSCRIPTS} elf64_aix "$(tdir_elf64_aix)" | |
800eeca4 | 866 | eelf64_ia64.c: $(srcdir)/emulparams/elf64_ia64.sh \ |
3f7deb8a L |
867 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/ia64elf.em \ |
868 | $(srcdir)/emultempl/needrelax.em \ | |
908d20b3 | 869 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
800eeca4 | 870 | ${GENSCRIPTS} elf64_ia64 "$(tdir_elf64_ia64)" |
28912fd9 DB |
871 | eelf64_ia64_fbsd.c: $(srcdir)/emulparams/elf64_ia64_fbsd.sh \ |
872 | $(srcdir)/emulparams/elf64_ia64.sh \ | |
3f7deb8a L |
873 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/ia64elf.em \ |
874 | $(srcdir)/emultempl/needrelax.em \ | |
28912fd9 DB |
875 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
876 | ${GENSCRIPTS} elf64_ia64_fbsd "$(tdir_elf64_ia64_fbsd)" | |
a85d7ed0 NC |
877 | eelf64_s390.c: $(srcdir)/emulparams/elf64_s390.sh \ |
878 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
879 | ${GENSCRIPTS} elf64_s390 "$(tdir_elf64_s390)" | |
252b5132 RH |
880 | eelf64_sparc.c: $(srcdir)/emulparams/elf64_sparc.sh \ |
881 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
882 | ${GENSCRIPTS} elf64_sparc "$(tdir_elf64_sparc)" | |
28912fd9 DB |
883 | eelf64_sparc_fbsd.c: $(srcdir)/emulparams/elf64_sparc_fbsd.sh \ |
884 | $(srcdir)/emulparams/elf64_sparc.sh \ | |
885 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
886 | ${GENSCRIPTS} elf64_sparc_fbsd "$(tdir_elf64_sparc_fbsd)" | |
22c675a7 | 887 | eelf64bmip.c: $(srcdir)/emulparams/elf64bmip.sh \ |
52f89c0a | 888 | $(srcdir)/emulparams/elf32bmipn32.sh $(srcdir)/emultempl/irix.em \ |
22c675a7 MM |
889 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
890 | ${GENSCRIPTS} elf64bmip "$(tdir_elf64bmip)" | |
3c3bdf30 NC |
891 | eelf64mmix.c: $(srcdir)/emulparams/elf64mmix.sh \ |
892 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/mmix-elfnmmo.em \ | |
893 | $(srcdir)/emultempl/mmixelf.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
894 | ${GENSCRIPTS} elf64mmix "$(tdir_elf64mmix)" | |
895 | emmo.c: $(srcdir)/emulparams/mmo.sh $(srcdir)/emultempl/mmix-elfnmmo.em \ | |
896 | $(srcdir)/emultempl/generic.em $(srcdir)/emultempl/mmo.em \ | |
897 | $(srcdir)/scripttempl/mmo.sc ${GEN_DEPENDS} | |
898 | ${GENSCRIPTS} mmo "$(tdir_mmo)" | |
fdec3cfc | 899 | eelf64btsmip.c: $(srcdir)/emulparams/elf64btsmip.sh \ |
465bc359 | 900 | $(srcdir)/emulparams/elf32bmipn32.sh \ |
fdec3cfc L |
901 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
902 | ${GENSCRIPTS} elf64btsmip "$(tdir_elf64btsmip)" | |
903 | eelf64ltsmip.c: $(srcdir)/emulparams/elf64ltsmip.sh \ | |
465bc359 | 904 | $(srcdir)/emulparams/elf64btsmip.sh $(srcdir)/emulparams/elf32bmipn32.sh \ |
fdec3cfc L |
905 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
906 | ${GENSCRIPTS} elf64ltsmip "$(tdir_elf64ltsmip)" | |
252b5132 RH |
907 | eelf_i386.c: $(srcdir)/emulparams/elf_i386.sh \ |
908 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
909 | ${GENSCRIPTS} elf_i386 "$(tdir_elf_i386)" | |
2be3aa03 NC |
910 | eelf_x86_64.c: $(srcdir)/emulparams/elf_x86_64.sh \ |
911 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
912 | ${GENSCRIPTS} elf_x86_64 "$(tdir_elf_x86_64)" | |
28912fd9 DB |
913 | eelf_x86_64_fbsd.c: $(srcdir)/emulparams/elf_x86_64_fbsd.sh \ |
914 | $(srcdir)/emulparams/elf_x86_64.sh \ | |
915 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
916 | ${GENSCRIPTS} elf_x86_64_fbsd "$(tdir_elf_x86_64_fbsd)" | |
252b5132 RH |
917 | eelf_i386_be.c: $(srcdir)/emulparams/elf_i386_be.sh \ |
918 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
919 | ${GENSCRIPTS} elf_i386_be "$(tdir_elf_i386_be)" | |
dca7760f | 920 | eelf_i386_chaos.c: $(srcdir)/emulparams/elf_i386_chaos.sh \ |
b4477fa8 | 921 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf_chaos.sc ${GEN_DEPENDS} |
dca7760f | 922 | ${GENSCRIPTS} elf_i386_chaos "$(tdir_elf_i386_chaos)" |
28912fd9 DB |
923 | eelf_i386_fbsd.c: $(srcdir)/emulparams/elf_i386_fbsd.sh \ |
924 | $(srcdir)/emulparams/elf_i386.sh \ | |
925 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
926 | ${GENSCRIPTS} elf_i386_fbsd "$(tdir_elf_i386_fbsd)" | |
506eee22 NC |
927 | eelf_i386_ldso.c: $(srcdir)/emulparams/elf_i386_ldso.sh \ |
928 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
929 | ${GENSCRIPTS} elf_i386_ldso "$(tdir_elf_i386_ldso)" | |
eac338cf | 930 | eelf_i386_vxworks.c: $(srcdir)/emulparams/elf_i386_vxworks.sh \ |
4f471f39 | 931 | $(srcdir)/emulparams/vxworks.sh $(srcdir)/emultempl/vxworks.em \ |
eac338cf PB |
932 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
933 | ${GENSCRIPTS} elf_i386_vxworks "$(tdir_elf_i386_vxworks)" | |
a85d7ed0 NC |
934 | eelf_s390.c: $(srcdir)/emulparams/elf_s390.sh \ |
935 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
936 | ${GENSCRIPTS} elf_s390 "$(tdir_elf_s390)" | |
252b5132 RH |
937 | egld960.c: $(srcdir)/emulparams/gld960.sh \ |
938 | $(srcdir)/emultempl/gld960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS} | |
939 | ${GENSCRIPTS} gld960 "$(tdir_gld960)" | |
940 | egld960coff.c: $(srcdir)/emulparams/gld960coff.sh \ | |
941 | $(srcdir)/emultempl/gld960c.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS} | |
942 | ${GENSCRIPTS} gld960coff "$(tdir_gld960coff)" | |
252b5132 RH |
943 | eh8300.c: $(srcdir)/emulparams/h8300.sh \ |
944 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS} | |
945 | ${GENSCRIPTS} h8300 "$(tdir_h8300)" | |
946 | eh8300h.c: $(srcdir)/emulparams/h8300h.sh \ | |
947 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300h.sc ${GEN_DEPENDS} | |
948 | ${GENSCRIPTS} h8300h "$(tdir_h8300h)" | |
949 | eh8300s.c: $(srcdir)/emulparams/h8300s.sh \ | |
950 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300s.sc ${GEN_DEPENDS} | |
951 | ${GENSCRIPTS} h8300s "$(tdir_h8300s)" | |
8d9cd6b1 NC |
952 | eh8300hn.c: $(srcdir)/emulparams/h8300hn.sh \ |
953 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300hn.sc ${GEN_DEPENDS} | |
954 | ${GENSCRIPTS} h8300hn "$(tdir_h8300hn)" | |
955 | eh8300sn.c: $(srcdir)/emulparams/h8300sn.sh \ | |
956 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300sn.sc ${GEN_DEPENDS} | |
957 | ${GENSCRIPTS} h8300sn "$(tdir_h8300sn)" | |
65982ba6 MS |
958 | eh8300sx.c: $(srcdir)/emulparams/h8300sx.sh \ |
959 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300sx.sc ${GEN_DEPENDS} | |
960 | ${GENSCRIPTS} h8300sx "$(tdir_h8300sx)" | |
f4984206 RS |
961 | eh8300sxn.c: $(srcdir)/emulparams/h8300sxn.sh \ |
962 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300sxn.sc ${GEN_DEPENDS} | |
963 | ${GENSCRIPTS} h8300sxn "$(tdir_h8300sxn)" | |
8af6dd41 JR |
964 | eh8300elf.c: $(srcdir)/emulparams/h8300elf.sh \ |
965 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
966 | ${GENSCRIPTS} h8300elf "$(tdir_h8300elf)" | |
967 | eh8300helf.c: $(srcdir)/emulparams/h8300helf.sh \ | |
465bc359 | 968 | $(srcdir)/emulparams/h8300elf.sh \ |
8af6dd41 JR |
969 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
970 | ${GENSCRIPTS} h8300helf "$(tdir_h8300helf)" | |
971 | eh8300self.c: $(srcdir)/emulparams/h8300self.sh \ | |
465bc359 | 972 | $(srcdir)/emulparams/h8300elf.sh \ |
8af6dd41 JR |
973 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
974 | ${GENSCRIPTS} h8300self "$(tdir_h8300self)" | |
8d9cd6b1 NC |
975 | eh8300hnelf.c: $(srcdir)/emulparams/h8300hnelf.sh \ |
976 | $(srcdir)/emulparams/h8300elf.sh \ | |
977 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
978 | ${GENSCRIPTS} h8300hnelf "$(tdir_h8300hnelf)" | |
979 | eh8300snelf.c: $(srcdir)/emulparams/h8300snelf.sh \ | |
980 | $(srcdir)/emulparams/h8300elf.sh \ | |
981 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
982 | ${GENSCRIPTS} h8300snelf "$(tdir_h8300snelf)" | |
65982ba6 MS |
983 | eh8300sxelf.c: $(srcdir)/emulparams/h8300sxelf.sh \ |
984 | $(srcdir)/emulparams/h8300elf.sh \ | |
985 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
986 | ${GENSCRIPTS} h8300sxelf "$(tdir_h8300sxelf)" | |
f4984206 RS |
987 | eh8300sxnelf.c: $(srcdir)/emulparams/h8300sxnelf.sh \ |
988 | $(srcdir)/emulparams/h8300elf.sh \ | |
989 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
990 | ${GENSCRIPTS} h8300sxnelf "$(tdir_h8300sxnelf)" | |
252b5132 RH |
991 | eh8500.c: $(srcdir)/emulparams/h8500.sh \ |
992 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500.sc ${GEN_DEPENDS} | |
993 | ${GENSCRIPTS} h8500 "$(tdir_h8500)" | |
994 | eh8500b.c: $(srcdir)/emulparams/h8500b.sh \ | |
995 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500b.sc ${GEN_DEPENDS} | |
996 | ${GENSCRIPTS} h8500b "$(tdir_h8500b)" | |
997 | eh8500c.c: $(srcdir)/emulparams/h8500c.sh \ | |
998 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500c.sc ${GEN_DEPENDS} | |
999 | ${GENSCRIPTS} h8500c "$(tdir_h8500c)" | |
1000 | eh8500m.c: $(srcdir)/emulparams/h8500m.sh \ | |
1001 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500m.sc ${GEN_DEPENDS} | |
1002 | ${GENSCRIPTS} h8500m "$(tdir_h8500m)" | |
1003 | eh8500s.c: $(srcdir)/emulparams/h8500s.sh \ | |
1004 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500s.sc ${GEN_DEPENDS} | |
1005 | ${GENSCRIPTS} h8500s "$(tdir_h8500s)" | |
1006 | ehp300bsd.c: $(srcdir)/emulparams/hp300bsd.sh \ | |
1007 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1008 | ${GENSCRIPTS} hp300bsd "$(tdir_hp300bsd)" | |
1009 | ehp3hpux.c: $(srcdir)/emulparams/hp3hpux.sh \ | |
1010 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1011 | ${GENSCRIPTS} hp3hpux "$(tdir_hp3hpux)" | |
730a39a0 | 1012 | ehppaelf.c: $(srcdir)/emulparams/hppaelf.sh \ |
5f992e62 AM |
1013 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/hppaelf.em \ |
1014 | $(srcdir)/scripttempl/hppaelf.sc ${GEN_DEPENDS} | |
730a39a0 | 1015 | ${GENSCRIPTS} hppaelf "$(tdir_hppaelf)" |
4900fc06 | 1016 | ehppalinux.c: $(srcdir)/emulparams/hppalinux.sh \ |
5f992e62 AM |
1017 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/hppaelf.em \ |
1018 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
4900fc06 | 1019 | ${GENSCRIPTS} hppalinux "$(tdir_hppalinux)" |
006336b8 JT |
1020 | ehppanbsd.c: $(srcdir)/emulparams/hppanbsd.sh \ |
1021 | $(srcdir)/emulparams/hppaelf.sh \ | |
1022 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/hppaelf.em \ | |
1023 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1024 | ${GENSCRIPTS} hppanbsd "$(tdir_hppanbsd)" | |
c29ef4b5 AM |
1025 | ehppaobsd.c: $(srcdir)/emulparams/hppaobsd.sh \ |
1026 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/hppaelf.em \ | |
1027 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1028 | ${GENSCRIPTS} hppaobsd "$(tdir_hppaobsd)" | |
9f22353f AM |
1029 | ehppa64linux.c: $(srcdir)/emulparams/hppa64linux.sh \ |
1030 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1031 | ${GENSCRIPTS} hppa64linux "$(tdir_hppa64linux)" | |
252b5132 RH |
1032 | ei386aout.c: $(srcdir)/emulparams/i386aout.sh \ |
1033 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1034 | ${GENSCRIPTS} i386aout "$(tdir_i386aout)" | |
1035 | ei386beos.c: $(srcdir)/emulparams/i386beos.sh \ | |
1036 | $(srcdir)/emultempl/beos.em $(srcdir)/scripttempl/i386beos.sc ${GEN_DEPENDS} | |
1037 | ${GENSCRIPTS} i386beos "$(tdir_i386beos)" | |
1038 | ei386bsd.c: $(srcdir)/emulparams/i386bsd.sh \ | |
1039 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1040 | ${GENSCRIPTS} i386bsd "$(tdir_i386bsd)" | |
1041 | ei386coff.c: $(srcdir)/emulparams/i386coff.sh \ | |
1042 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386coff.sc ${GEN_DEPENDS} | |
1043 | ${GENSCRIPTS} i386coff "$(tdir_i386coff)" | |
1044 | ei386go32.c: $(srcdir)/emulparams/i386go32.sh \ | |
1045 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386go32.sc ${GEN_DEPENDS} | |
1046 | ${GENSCRIPTS} i386go32 "$(tdir_i386go32)" | |
1047 | ei386linux.c: $(srcdir)/emulparams/i386linux.sh \ | |
1048 | $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1049 | ${GENSCRIPTS} i386linux "$(tdir_i386linux)" | |
1050 | ei386lynx.c: $(srcdir)/emulparams/i386lynx.sh \ | |
b2d65c0b | 1051 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
252b5132 RH |
1052 | ${GENSCRIPTS} i386lynx "$(tdir_i386lynx)" |
1053 | ei386mach.c: $(srcdir)/emulparams/i386mach.sh \ | |
1054 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1055 | ${GENSCRIPTS} i386mach "$(tdir_i386mach)" | |
1056 | ei386moss.c: $(srcdir)/emulparams/i386moss.sh \ | |
6caa99ab | 1057 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
252b5132 RH |
1058 | ${GENSCRIPTS} i386moss "$(tdir_i386moss)" |
1059 | ei386msdos.c: $(srcdir)/emulparams/i386msdos.sh \ | |
1060 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386msdos.sc ${GEN_DEPENDS} | |
1061 | ${GENSCRIPTS} i386msdos "$(tdir_i386msdos)" | |
1062 | ei386nbsd.c: $(srcdir)/emulparams/i386nbsd.sh \ | |
1063 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1064 | ${GENSCRIPTS} i386nbsd "$(tdir_i386nbsd)" | |
a0cb91c6 AM |
1065 | ei386nto.c: $(srcdir)/emulparams/i386nto.sh \ |
1066 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1067 | ${GENSCRIPTS} i386nto "$(tdir_i386nto)" | |
252b5132 RH |
1068 | ei386nw.c: $(srcdir)/emulparams/i386nw.sh \ |
1069 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS} | |
1070 | ${GENSCRIPTS} i386nw "$(tdir_i386nw)" | |
1071 | ei386pe.c: $(srcdir)/emulparams/i386pe.sh \ | |
1072 | $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS} | |
1073 | ${GENSCRIPTS} i386pe "$(tdir_i386pe)" | |
a7e78dae ILT |
1074 | ei386pe_posix.c: $(srcdir)/emulparams/i386pe_posix.sh \ |
1075 | $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS} | |
1076 | ${GENSCRIPTS} i386pe_posix "$(tdir_i386pe_posix)" | |
252b5132 RH |
1077 | elnk960.c: $(srcdir)/emulparams/lnk960.sh \ |
1078 | $(srcdir)/emultempl/lnk960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS} | |
1079 | ${GENSCRIPTS} lnk960 "$(tdir_lnk960)" | |
60bcf0fa | 1080 | em68hc11elf.c: $(srcdir)/emulparams/m68hc11elf.sh \ |
0c7a8e5a AM |
1081 | $(srcdir)/emultempl/m68hc1xelf.em $(srcdir)/emultempl/elf32.em \ |
1082 | $(srcdir)/scripttempl/elfm68hc11.sc ${GEN_DEPENDS} | |
60bcf0fa NC |
1083 | ${GENSCRIPTS} m68hc11elf "$(tdir_m68hc11)" |
1084 | em68hc11elfb.c: $(srcdir)/emulparams/m68hc11elfb.sh \ | |
0c7a8e5a AM |
1085 | $(srcdir)/emultempl/m68hc1xelf.em $(srcdir)/emultempl/elf32.em \ |
1086 | $(srcdir)/scripttempl/elfm68hc11.sc ${GEN_DEPENDS} | |
60bcf0fa NC |
1087 | ${GENSCRIPTS} m68hc11elfb "$(tdir_m68hc11b)" |
1088 | em68hc12elf.c: $(srcdir)/emulparams/m68hc12elf.sh \ | |
0c7a8e5a AM |
1089 | $(srcdir)/emultempl/m68hc1xelf.em $(srcdir)/emultempl/elf32.em \ |
1090 | $(srcdir)/scripttempl/elfm68hc12.sc ${GEN_DEPENDS} | |
60bcf0fa NC |
1091 | ${GENSCRIPTS} m68hc12elf "$(tdir_m68hc12)" |
1092 | em68hc12elfb.c: $(srcdir)/emulparams/m68hc12elfb.sh \ | |
0c7a8e5a AM |
1093 | $(srcdir)/emultempl/m68hc1xelf.em $(srcdir)/emultempl/elf32.em \ |
1094 | $(srcdir)/scripttempl/elfm68hc12.sc ${GEN_DEPENDS} | |
60bcf0fa | 1095 | ${GENSCRIPTS} m68hc12elfb "$(tdir_m68hc12b)" |
252b5132 RH |
1096 | em68k4knbsd.c: $(srcdir)/emulparams/m68k4knbsd.sh \ |
1097 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1098 | ${GENSCRIPTS} m68k4knbsd "$(tdir_m68k4knbsd)" | |
1099 | em68kaout.c: $(srcdir)/emulparams/m68kaout.sh \ | |
1100 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1101 | ${GENSCRIPTS} m68kaout "$(tdir_m68kaout)" | |
1102 | em68kaux.c: $(srcdir)/emulparams/m68kaux.sh \ | |
1103 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kaux.sc ${GEN_DEPENDS} | |
1104 | ${GENSCRIPTS} m68kaux "$(tdir_m68kaux)" | |
1105 | em68kcoff.c: $(srcdir)/emulparams/m68kcoff.sh \ | |
20bccb34 | 1106 | $(srcdir)/emultempl/m68kcoff.em $(srcdir)/scripttempl/m68kcoff.sc ${GEN_DEPENDS} |
252b5132 RH |
1107 | ${GENSCRIPTS} m68kcoff "$(tdir_m68kcoff)" |
1108 | em68kelf.c: $(srcdir)/emulparams/m68kelf.sh \ | |
0752970e NC |
1109 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/m68kelf.em \ |
1110 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
252b5132 | 1111 | ${GENSCRIPTS} m68kelf "$(tdir_m68kelf)" |
0b69cd08 MG |
1112 | em68kelfnbsd.c: $(srcdir)/emulparams/m68kelfnbsd.sh \ |
1113 | $(srcdir)/emulparams/m68kelf.sh \ | |
1114 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/m68kelf.em \ | |
1115 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1116 | ${GENSCRIPTS} m68kelfnbsd "$(tdir_m68kelfnbsd)" | |
252b5132 RH |
1117 | em68klinux.c: $(srcdir)/emulparams/m68klinux.sh \ |
1118 | $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1119 | ${GENSCRIPTS} m68klinux "$(tdir_m68klinux)" | |
252b5132 RH |
1120 | em68knbsd.c: $(srcdir)/emulparams/m68knbsd.sh \ |
1121 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1122 | ${GENSCRIPTS} m68knbsd "$(tdir_m68knbsd)" | |
1123 | em68kpsos.c: $(srcdir)/emulparams/m68kpsos.sh \ | |
1124 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/psos.sc ${GEN_DEPENDS} | |
1125 | ${GENSCRIPTS} m68kpsos "$(tdir_m68kpsos)" | |
1126 | em88kbcs.c: $(srcdir)/emulparams/m88kbcs.sh \ | |
1127 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m88kbcs.sc ${GEN_DEPENDS} | |
1128 | ${GENSCRIPTS} m88kbcs "$(tdir_m88kbcs)" | |
7499d566 NC |
1129 | emaxqcoff.c: $(srcdir)/emulparams/maxqcoff.sh \ |
1130 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/maxqcoff.sc ${GEN_DEPENDS} | |
1131 | ${GENSCRIPTS} maxqcoff "$(tdir_maxqcoff)" | |
71acc4e8 NC |
1132 | emcorepe.c: $(srcdir)/emulparams/mcorepe.sh \ |
1133 | $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS} | |
1134 | ${GENSCRIPTS} mcorepe "$(tdir_mcorepe)" | |
252b5132 RH |
1135 | emipsbig.c: $(srcdir)/emulparams/mipsbig.sh \ |
1136 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS} | |
1137 | ${GENSCRIPTS} mipsbig | |
1138 | emipsbsd.c: $(srcdir)/emulparams/mipsbsd.sh \ | |
1139 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mipsbsd.sc ${GEN_DEPENDS} | |
1140 | ${GENSCRIPTS} mipsbsd | |
1141 | emipsidt.c: $(srcdir)/emulparams/mipsidt.sh \ | |
0f82ff91 AM |
1142 | $(srcdir)/emultempl/mipsecoff.em $(srcdir)/emultempl/generic.em \ |
1143 | $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS} | |
252b5132 RH |
1144 | ${GENSCRIPTS} mipsidt "$(tdir_mipsidt)" |
1145 | emipsidtl.c: $(srcdir)/emulparams/mipsidtl.sh \ | |
0f82ff91 AM |
1146 | $(srcdir)/emultempl/mipsecoff.em $(srcdir)/emultempl/generic.em \ |
1147 | $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS} | |
252b5132 RH |
1148 | ${GENSCRIPTS} mipsidtl "$(tdir_mipsidtl)" |
1149 | emipslit.c: $(srcdir)/emulparams/mipslit.sh \ | |
1150 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS} | |
1151 | ${GENSCRIPTS} mipslit "$(tdir_mipslit)" | |
1152 | emipslnews.c: $(srcdir)/emulparams/mipslnews.sh \ | |
1153 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS} | |
1154 | ${GENSCRIPTS} mipslnews | |
344a211f NC |
1155 | emipspe.c: $(srcdir)/emulparams/mipspe.sh \ |
1156 | $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS} | |
1157 | ${GENSCRIPTS} mipspe "$(tdir_mips)" | |
252b5132 | 1158 | emn10300.c: $(srcdir)/emulparams/mn10300.sh \ |
465bc359 | 1159 | $(srcdir)/emulparams/mn10200.sh \ |
252b5132 RH |
1160 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
1161 | ${GENSCRIPTS} mn10300 "$(tdir_mn10300)" | |
1162 | emn10200.c: $(srcdir)/emulparams/mn10200.sh \ | |
1163 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1164 | ${GENSCRIPTS} mn10200 "$(tdir_mn10200)" | |
aafdb207 | 1165 | emsp430x110.c: $(srcdir)/emulparams/msp430all.sh \ |
3b260895 | 1166 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1167 | ${GEN_DEPENDS} |
1168 | ${GENSCRIPTS} msp430x110 "$(tdir_msp430x110)" msp430all | |
aafdb207 | 1169 | emsp430x112.c: $(srcdir)/emulparams/msp430all.sh \ |
3b260895 | 1170 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1171 | ${GEN_DEPENDS} |
1172 | ${GENSCRIPTS} msp430x112 "$(tdir_msp430x112)" msp430all | |
aafdb207 | 1173 | emsp430x1101.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1174 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1175 | ${GEN_DEPENDS} |
1176 | ${GENSCRIPTS} msp430x1101 "$(tdir_msp430x1101)" msp430all | |
aafdb207 | 1177 | emsp430x1111.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1178 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1179 | ${GEN_DEPENDS} |
1180 | ${GENSCRIPTS} msp430x1111 "$(tdir_msp430x1111)" msp430all | |
aafdb207 | 1181 | emsp430x1121.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1182 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1183 | ${GEN_DEPENDS} |
1184 | ${GENSCRIPTS} msp430x1121 "$(tdir_msp430x1121)" msp430all | |
aafdb207 | 1185 | emsp430x1122.c: $(srcdir)/emulparams/msp430all.sh \ |
b4275f43 | 1186 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1187 | ${GEN_DEPENDS} |
1188 | ${GENSCRIPTS} msp430x1122 "$(tdir_msp430x1122)" msp430all | |
aafdb207 | 1189 | emsp430x1132.c: $(srcdir)/emulparams/msp430all.sh \ |
b4275f43 | 1190 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1191 | ${GEN_DEPENDS} |
1192 | ${GENSCRIPTS} msp430x1132 "$(tdir_msp430x1132)" msp430all | |
aafdb207 | 1193 | emsp430x122.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1194 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1195 | ${GEN_DEPENDS} |
1196 | ${GENSCRIPTS} msp430x122 "$(tdir_msp430x122)" msp430all | |
aafdb207 | 1197 | emsp430x123.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1198 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1199 | ${GEN_DEPENDS} |
1200 | ${GENSCRIPTS} msp430x123 "$(tdir_msp430x123)" msp430all | |
aafdb207 | 1201 | emsp430x1222.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1202 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1203 | ${GEN_DEPENDS} |
1204 | ${GENSCRIPTS} msp430x1222 "$(tdir_msp430x1222)" msp430all | |
aafdb207 | 1205 | emsp430x1232.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1206 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1207 | ${GEN_DEPENDS} |
1208 | ${GENSCRIPTS} msp430x1232 "$(tdir_msp430x1232)" msp430all | |
aafdb207 | 1209 | emsp430x133.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1210 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1211 | ${GEN_DEPENDS} |
1212 | ${GENSCRIPTS} msp430x133 "$(tdir_msp430x133)" msp430all | |
aafdb207 | 1213 | emsp430x135.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1214 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1215 | ${GEN_DEPENDS} |
1216 | ${GENSCRIPTS} msp430x135 "$(tdir_msp430x135)" msp430all | |
aafdb207 | 1217 | emsp430x1331.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1218 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1219 | ${GEN_DEPENDS} |
1220 | ${GENSCRIPTS} msp430x1331 "$(tdir_msp430x1331)" msp430all | |
aafdb207 | 1221 | emsp430x1351.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1222 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1223 | ${GEN_DEPENDS} |
1224 | ${GENSCRIPTS} msp430x1351 "$(tdir_msp430x1351)" msp430all | |
aafdb207 | 1225 | emsp430x147.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1226 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1227 | ${GEN_DEPENDS} |
1228 | ${GENSCRIPTS} msp430x147 "$(tdir_msp430x147)" msp430all | |
aafdb207 | 1229 | emsp430x148.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1230 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1231 | ${GEN_DEPENDS} |
1232 | ${GENSCRIPTS} msp430x148 "$(tdir_msp430x148)" msp430all | |
aafdb207 | 1233 | emsp430x149.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1234 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1235 | ${GEN_DEPENDS} |
1236 | ${GENSCRIPTS} msp430x149 "$(tdir_msp430x149)" msp430all | |
aafdb207 | 1237 | emsp430x155.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1238 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1239 | ${GEN_DEPENDS} |
1240 | ${GENSCRIPTS} msp430x155 "$(tdir_msp430x155)" msp430all | |
aafdb207 | 1241 | emsp430x156.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1242 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1243 | ${GEN_DEPENDS} |
1244 | ${GENSCRIPTS} msp430x156 "$(tdir_msp430x156)" msp430all | |
aafdb207 | 1245 | emsp430x157.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1246 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1247 | ${GEN_DEPENDS} |
1248 | ${GENSCRIPTS} msp430x157 "$(tdir_msp430x157)" msp430all | |
aafdb207 | 1249 | emsp430x167.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1250 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1251 | ${GEN_DEPENDS} |
1252 | ${GENSCRIPTS} msp430x167 "$(tdir_msp430x167)" msp430all | |
aafdb207 | 1253 | emsp430x168.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1254 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1255 | ${GEN_DEPENDS} |
1256 | ${GENSCRIPTS} msp430x168 "$(tdir_msp430x168)" msp430all | |
aafdb207 | 1257 | emsp430x169.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1258 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1259 | ${GEN_DEPENDS} |
1260 | ${GENSCRIPTS} msp430x169 "$(tdir_msp430x169)" msp430all | |
c05e9f04 NC |
1261 | emsp430x1610.c: $(srcdir)/emulparams/msp430all.sh \ |
1262 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1263 | ${GEN_DEPENDS} | |
1264 | ${GENSCRIPTS} msp430x1610 "$(tdir_msp430x1610)" msp430all | |
1265 | emsp430x1611.c: $(srcdir)/emulparams/msp430all.sh \ | |
1266 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1267 | ${GEN_DEPENDS} | |
1268 | ${GENSCRIPTS} msp430x1611 "$(tdir_msp430x1611)" msp430all | |
1269 | emsp430x1612.c: $(srcdir)/emulparams/msp430all.sh \ | |
1270 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1271 | ${GEN_DEPENDS} | |
1272 | ${GENSCRIPTS} msp430x1612 "$(tdir_msp430x1612)" msp430all | |
44c86e8c NC |
1273 | emsp430x2101.c: $(srcdir)/emulparams/msp430all.sh \ |
1274 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1275 | ${GEN_DEPENDS} | |
1276 | ${GENSCRIPTS} msp430x2101 "$(tdir_msp430x2101)" msp430all | |
1277 | emsp430x2111.c: $(srcdir)/emulparams/msp430all.sh \ | |
1278 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1279 | ${GEN_DEPENDS} | |
1280 | ${GENSCRIPTS} msp430x2111 "$(tdir_msp430x2111)" msp430all | |
1281 | emsp430x2121.c: $(srcdir)/emulparams/msp430all.sh \ | |
1282 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1283 | ${GEN_DEPENDS} | |
1284 | ${GENSCRIPTS} msp430x2121 "$(tdir_msp430x2121)" msp430all | |
1285 | emsp430x2131.c: $(srcdir)/emulparams/msp430all.sh \ | |
1286 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1287 | ${GEN_DEPENDS} | |
1288 | ${GENSCRIPTS} msp430x2131 "$(tdir_msp430x2131)" msp430all | |
aafdb207 | 1289 | emsp430x311.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1290 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1291 | ${GEN_DEPENDS} |
1292 | ${GENSCRIPTS} msp430x311 "$(tdir_msp430x311)" msp430all | |
aafdb207 | 1293 | emsp430x312.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1294 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1295 | ${GEN_DEPENDS} |
1296 | ${GENSCRIPTS} msp430x312 "$(tdir_msp430x312)" msp430all | |
aafdb207 | 1297 | emsp430x313.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1298 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1299 | ${GEN_DEPENDS} |
1300 | ${GENSCRIPTS} msp430x313 "$(tdir_msp430x313)" msp430all | |
aafdb207 | 1301 | emsp430x314.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1302 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1303 | ${GEN_DEPENDS} |
1304 | ${GENSCRIPTS} msp430x314 "$(tdir_msp430x314)" msp430all | |
aafdb207 | 1305 | emsp430x315.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1306 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1307 | ${GEN_DEPENDS} |
1308 | ${GENSCRIPTS} msp430x315 "$(tdir_msp430x315)" msp430all | |
aafdb207 | 1309 | emsp430x323.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1310 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1311 | ${GEN_DEPENDS} |
1312 | ${GENSCRIPTS} msp430x323 "$(tdir_msp430x323)" msp430all | |
aafdb207 | 1313 | emsp430x325.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1314 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1315 | ${GEN_DEPENDS} |
1316 | ${GENSCRIPTS} msp430x325 "$(tdir_msp430x325)" msp430all | |
aafdb207 | 1317 | emsp430x336.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1318 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1319 | ${GEN_DEPENDS} |
1320 | ${GENSCRIPTS} msp430x336 "$(tdir_msp430x336)" msp430all | |
aafdb207 | 1321 | emsp430x337.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1322 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430_3.sc \ |
8fbdf3ab AM |
1323 | ${GEN_DEPENDS} |
1324 | ${GENSCRIPTS} msp430x337 "$(tdir_msp430x337)" msp430all | |
aafdb207 | 1325 | emsp430x412.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1326 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1327 | ${GEN_DEPENDS} |
1328 | ${GENSCRIPTS} msp430x412 "$(tdir_msp430x412)" msp430all | |
aafdb207 | 1329 | emsp430x413.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1330 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1331 | ${GEN_DEPENDS} |
1332 | ${GENSCRIPTS} msp430x413 "$(tdir_msp430x413)" msp430all | |
c05e9f04 NC |
1333 | emsp430x415.c: $(srcdir)/emulparams/msp430all.sh \ |
1334 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1335 | ${GEN_DEPENDS} | |
1336 | ${GENSCRIPTS} msp430x415 "$(tdir_msp430x415)" msp430all | |
1337 | emsp430x417.c: $(srcdir)/emulparams/msp430all.sh \ | |
1338 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1339 | ${GEN_DEPENDS} | |
1340 | ${GENSCRIPTS} msp430x417 "$(tdir_msp430x417)" msp430all | |
aafdb207 | 1341 | emsp430xE423.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1342 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1343 | ${GEN_DEPENDS} |
1344 | ${GENSCRIPTS} msp430xE423 "$(tdir_msp430xE423)" msp430all | |
aafdb207 | 1345 | emsp430xE425.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1346 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1347 | ${GEN_DEPENDS} |
1348 | ${GENSCRIPTS} msp430xE425 "$(tdir_msp430xE425)" msp430all | |
aafdb207 | 1349 | emsp430xE427.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1350 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1351 | ${GEN_DEPENDS} |
1352 | ${GENSCRIPTS} msp430xE427 "$(tdir_msp430xE427)" msp430all | |
aafdb207 | 1353 | emsp430xW423.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1354 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1355 | ${GEN_DEPENDS} |
1356 | ${GENSCRIPTS} msp430xW423 "$(tdir_msp430xW423)" msp430all | |
aafdb207 | 1357 | emsp430xW425.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1358 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1359 | ${GEN_DEPENDS} |
1360 | ${GENSCRIPTS} msp430xW425 "$(tdir_msp430xW425)" msp430all | |
aafdb207 | 1361 | emsp430xW427.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1362 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1363 | ${GEN_DEPENDS} |
1364 | ${GENSCRIPTS} msp430xW427 "$(tdir_msp430xW427)" msp430all | |
c05e9f04 NC |
1365 | emsp430xG437.c: $(srcdir)/emulparams/msp430all.sh \ |
1366 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1367 | ${GEN_DEPENDS} | |
1368 | ${GENSCRIPTS} msp430xG437 "$(tdir_msp430xG437)" msp430all | |
1369 | emsp430xG438.c: $(srcdir)/emulparams/msp430all.sh \ | |
1370 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1371 | ${GEN_DEPENDS} | |
1372 | ${GENSCRIPTS} msp430xG438 "$(tdir_msp430xG438)" msp430all | |
1373 | emsp430xG439.c: $(srcdir)/emulparams/msp430all.sh \ | |
1374 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ | |
1375 | ${GEN_DEPENDS} | |
1376 | ${GENSCRIPTS} msp430xG439 "$(tdir_msp430xG439)" msp430all | |
aafdb207 | 1377 | emsp430x435.c: $(srcdir)/emulparams/msp430all.sh \ |
2469cfa2 | 1378 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1379 | ${GEN_DEPENDS} |
1380 | ${GENSCRIPTS} msp430x435 "$(tdir_msp430x435)" msp430all | |
aafdb207 | 1381 | emsp430x436.c: $(srcdir)/emulparams/msp430all.sh \ |
3b260895 | 1382 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1383 | ${GEN_DEPENDS} |
1384 | ${GENSCRIPTS} msp430x436 "$(tdir_msp430x436)" msp430all | |
aafdb207 | 1385 | emsp430x437.c: $(srcdir)/emulparams/msp430all.sh \ |
3b260895 | 1386 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1387 | ${GEN_DEPENDS} |
1388 | ${GENSCRIPTS} msp430x437 "$(tdir_msp430x437)" msp430all | |
aafdb207 | 1389 | emsp430x447.c: $(srcdir)/emulparams/msp430all.sh \ |
3b260895 | 1390 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1391 | ${GEN_DEPENDS} |
1392 | ${GENSCRIPTS} msp430x447 "$(tdir_msp430x447)" msp430all | |
aafdb207 | 1393 | emsp430x448.c: $(srcdir)/emulparams/msp430all.sh \ |
3b260895 | 1394 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1395 | ${GEN_DEPENDS} |
1396 | ${GENSCRIPTS} msp430x448 "$(tdir_msp430x448)" msp430all | |
aafdb207 | 1397 | emsp430x449.c: $(srcdir)/emulparams/msp430all.sh \ |
3b260895 | 1398 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf32msp430.sc \ |
8fbdf3ab AM |
1399 | ${GEN_DEPENDS} |
1400 | ${GENSCRIPTS} msp430x449 "$(tdir_msp430x449)" msp430all | |
252b5132 RH |
1401 | enews.c: $(srcdir)/emulparams/news.sh \ |
1402 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1403 | ${GENSCRIPTS} news "$(tdir_news)" | |
1404 | ens32knbsd.c: $(srcdir)/emulparams/ns32knbsd.sh \ | |
f2241121 AM |
1405 | $(srcdir)/emultempl/generic.em $(srcdir)/emultempl/netbsd.em \ |
1406 | $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
252b5132 | 1407 | ${GENSCRIPTS} ns32knbsd "$(tdir_ns32knbsd)" |
3b16e843 NC |
1408 | eor32.c: $(srcdir)/emulparams/or32.sh \ |
1409 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/or32.sc ${GEN_DEPENDS} | |
1410 | ${GENSCRIPTS} or32 "$(tdir_or32)" | |
1411 | eor32elf.c: $(srcdir)/emulparams/or32elf.sh \ | |
1412 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1413 | ${GENSCRIPTS} or32elf "$(tdir_or32elf)" | |
252b5132 RH |
1414 | epc532macha.c: $(srcdir)/emulparams/pc532macha.sh \ |
1415 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1416 | ${GENSCRIPTS} pc532macha "$(tdir_pc532macha)" | |
e135f41b NC |
1417 | epdp11.c: $(srcdir)/emulparams/pdp11.sh \ |
1418 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1419 | ${GENSCRIPTS} pdp11 "$(tdir_pdp11)" | |
c6c8c6dc ILT |
1420 | epjelf.c: $(srcdir)/emulparams/pjelf.sh \ |
1421 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1422 | ${GENSCRIPTS} pjelf "$(tdir_pjelf)" | |
1423 | epjlelf.c: $(srcdir)/emulparams/pjlelf.sh \ | |
1424 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1425 | ${GENSCRIPTS} pjlelf "$(tdir_pjlelf)" | |
252b5132 RH |
1426 | eppcmacos.c: $(srcdir)/emulparams/ppcmacos.sh \ |
1427 | $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS} | |
1428 | ${GENSCRIPTS} ppcmacos "$(tdir_ppcmacos)" | |
1429 | eppcnw.c: $(srcdir)/emulparams/ppcnw.sh \ | |
1430 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS} | |
1431 | ${GENSCRIPTS} ppcnw "$(tdir_ppcnw)" | |
1432 | eppcpe.c: $(srcdir)/emulparams/ppcpe.sh \ | |
1433 | $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/ppcpe.sc ${GEN_DEPENDS} | |
1434 | ${GENSCRIPTS} ppcpe "$(tdir_ppcpe)" | |
b2d65c0b NC |
1435 | eppclynx.c: $(srcdir)/emulparams/ppclynx.sh \ |
1436 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1437 | ${GENSCRIPTS} ppclynx "$(tdir_ppclynx)" | |
252b5132 RH |
1438 | eriscix.c: $(srcdir)/emulparams/riscix.sh \ |
1439 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1440 | ${GENSCRIPTS} riscix "$(tdir_riscix)" | |
252b5132 RH |
1441 | esh.c: $(srcdir)/emulparams/sh.sh \ |
1442 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS} | |
1443 | ${GENSCRIPTS} sh "$(tdir_sh)" | |
1444 | eshelf.c: $(srcdir)/emulparams/shelf.sh \ | |
1445 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1446 | ${GENSCRIPTS} shelf "$(tdir_shelf)" | |
2d92cb7d AO |
1447 | eshelf32.c: $(srcdir)/emulparams/shelf32.sh \ |
1448 | $(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \ | |
1449 | $(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \ | |
1450 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1451 | ${GENSCRIPTS} shelf32 "$(tdir_shelf32)" | |
a2b3c630 SC |
1452 | eshelf32_linux.c: $(srcdir)/emulparams/shelf32_linux.sh \ |
1453 | $(srcdir)/emulparams/shelf32.sh \ | |
1454 | $(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \ | |
1455 | $(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \ | |
1456 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1457 | ${GENSCRIPTS} shelf32_linux "$(tdir_shelf32_linux)" | |
5b0e55b6 JT |
1458 | eshelf32_nbsd.c: $(srcdir)/emulparams/shelf32_nbsd.sh \ |
1459 | $(srcdir)/emulparams/shelf32.sh \ | |
1460 | $(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \ | |
1461 | $(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \ | |
1462 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1463 | ${GENSCRIPTS} shelf32_nbsd "$(tdir_shelf32_nbsd)" | |
2d92cb7d AO |
1464 | eshelf64.c: $(srcdir)/emulparams/shelf64.sh $(srcdir)/emulparams/shelf32.sh \ |
1465 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1466 | ${GENSCRIPTS} shelf64 "$(tdir_shelf64)" | |
5b0e55b6 JT |
1467 | eshelf64_nbsd.c: $(srcdir)/emulparams/shelf64_nbsd.sh \ |
1468 | $(srcdir)/emulparams/shelf32_nbsd.sh $(srcdir)/emulparams/shelf32.sh \ | |
1469 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1470 | ${GENSCRIPTS} shelf64_nbsd "$(tdir_shelf64_nbsd)" | |
4a428502 | 1471 | eshelf_linux.c: $(srcdir)/emulparams/shelf_linux.sh \ |
465bc359 | 1472 | $(srcdir)/emulparams/shlelf_linux.sh \ |
4a428502 AO |
1473 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
1474 | ${GENSCRIPTS} shelf_linux "$(tdir_shelf_linux)" | |
1475 | eshlelf_linux.c: $(srcdir)/emulparams/shlelf_linux.sh \ | |
1476 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1477 | ${GENSCRIPTS} shlelf_linux "$(tdir_shlelf_linux)" | |
8d05742f JT |
1478 | eshelf_nbsd.c: $(srcdir)/emulparams/shelf_nbsd.sh \ |
1479 | $(srcdir)/emulparams/shelf.sh \ | |
1480 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1481 | ${GENSCRIPTS} shelf_nbsd "$(tdir_shelf_nbsd)" | |
ed71e111 NC |
1482 | eshelf_nto.c: $(srcdir)/emulparams/shelf_nto.sh \ |
1483 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1484 | ${GENSCRIPTS} shelf_nto "$(tdir_shelf_nto)" | |
8d05742f JT |
1485 | eshlelf_nbsd.c: $(srcdir)/emulparams/shlelf_nbsd.sh \ |
1486 | $(srcdir)/emulparams/shelf_nbsd.sh \ | |
1487 | $(srcdir)/emulparams/shelf.sh \ | |
1488 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1489 | ${GENSCRIPTS} shlelf_nbsd "$(tdir_shlelf_nbsd)" | |
ed71e111 NC |
1490 | eshlelf_nto.c: $(srcdir)/emulparams/shlelf_nto.sh \ |
1491 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1492 | ${GENSCRIPTS} shlelf_nto "$(tdir_shlelf_nto)" | |
252b5132 | 1493 | eshlelf.c: $(srcdir)/emulparams/shlelf.sh \ |
465bc359 | 1494 | $(srcdir)/emulparams/shelf.sh \ |
252b5132 RH |
1495 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
1496 | ${GENSCRIPTS} shlelf "$(tdir_shlelf)" | |
85fbca6a NC |
1497 | eshlsymbian.c: $(srcdir)/emulparams/shlsymbian.sh \ |
1498 | $(srcdir)/emulparams/shelf.sh \ | |
1499 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf32sh-symbian.sc ${GEN_DEPENDS} | |
1500 | ${GENSCRIPTS} shlsymbian "$(tdir_shlelf)" | |
2d92cb7d AO |
1501 | eshlelf32.c: $(srcdir)/emulparams/shlelf32.sh \ |
1502 | $(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h $(srcdir)/emulparams/shelf32.sh \ | |
1503 | $(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \ | |
1504 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1505 | ${GENSCRIPTS} shlelf32 "$(tdir_shlelf32)" | |
a2b3c630 SC |
1506 | eshlelf32_linux.c: $(srcdir)/emulparams/shlelf32_linux.sh \ |
1507 | $(srcdir)/emulparams/shelf32_linux.sh $(srcdir)/emulparams/shelf32.sh \ | |
1508 | $(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \ | |
1509 | $(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \ | |
1510 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1511 | ${GENSCRIPTS} shlelf32_linux "$(tdir_shlelf32_linux)" | |
5b0e55b6 JT |
1512 | eshlelf32_nbsd.c: $(srcdir)/emulparams/shlelf32_nbsd.sh \ |
1513 | $(srcdir)/emulparams/shelf32_nbsd.sh $(srcdir)/emulparams/shelf32.sh \ | |
1514 | $(BFDDIR)/libbfd.h $(INCDIR)/libiberty.h \ | |
1515 | $(srcdir)/emultempl/sh64elf.em $(INCDIR)/elf/sh.h $(BFDDIR)/elf-bfd.h \ | |
1516 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1517 | ${GENSCRIPTS} shlelf32_nbsd "$(tdir_shlelf32_nbsd)" | |
2d92cb7d AO |
1518 | eshlelf64.c: $(srcdir)/emulparams/shlelf64.sh \ |
1519 | $(srcdir)/emulparams/shelf64.sh $(srcdir)/emulparams/shelf32.sh \ | |
1520 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1521 | ${GENSCRIPTS} shlelf64 "$(tdir_shlelf64)" | |
5b0e55b6 JT |
1522 | eshlelf64_nbsd.c: $(srcdir)/emulparams/shlelf64_nbsd.sh \ |
1523 | $(srcdir)/emulparams/shelf64_nbsd.sh \ | |
1524 | $(srcdir)/emulparams/shelf32_nbsd.sh $(srcdir)/emulparams/shelf32.sh \ | |
1525 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1526 | ${GENSCRIPTS} shlelf64_nbsd "$(tdir_shlelf64_nbsd)" | |
252b5132 | 1527 | eshl.c: $(srcdir)/emulparams/shl.sh \ |
465bc359 | 1528 | $(srcdir)/emulparams/sh.sh \ |
252b5132 RH |
1529 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS} |
1530 | ${GENSCRIPTS} shl "$(tdir_shl)" | |
344a211f NC |
1531 | eshpe.c: $(srcdir)/emulparams/shpe.sh \ |
1532 | $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS} | |
1533 | ${GENSCRIPTS} shpe "$(tdir_shl)" | |
252b5132 RH |
1534 | esparcaout.c: $(srcdir)/emulparams/sparcaout.sh \ |
1535 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1536 | ${GENSCRIPTS} sparcaout "$(tdir_sparcaout)" | |
1537 | esparclinux.c: $(srcdir)/emulparams/sparclinux.sh \ | |
1538 | $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1539 | ${GENSCRIPTS} sparclinux "$(tdir_sparclinux)" | |
252b5132 RH |
1540 | esparcnbsd.c: $(srcdir)/emulparams/sparcnbsd.sh \ |
1541 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1542 | ${GENSCRIPTS} sparcnbsd "$(tdir_sparcnbsd)" | |
1543 | est2000.c: $(srcdir)/emulparams/st2000.sh \ | |
1544 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS} | |
1545 | ${GENSCRIPTS} st2000 "$(tdir_st2000)" | |
1546 | esun3.c: $(srcdir)/emulparams/sun3.sh \ | |
1547 | $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1548 | ${GENSCRIPTS} sun3 "$(tdir_sun3)" | |
1549 | esun4.c: $(srcdir)/emulparams/sun4.sh \ | |
1550 | $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1551 | ${GENSCRIPTS} sun4 "$(tdir_sun4)" | |
1552 | etic30aout.c: $(srcdir)/emulparams/tic30aout.sh \ | |
1553 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30aout.sc ${GEN_DEPENDS} | |
1554 | ${GENSCRIPTS} tic30aout "$(tdir_tic30aout)" | |
1555 | etic30coff.c: $(srcdir)/emulparams/tic30coff.sh \ | |
1556 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30coff.sc ${GEN_DEPENDS} | |
1557 | ${GENSCRIPTS} tic30coff "$(tdir_tic30coff)" | |
0da35f8b SS |
1558 | etic3xcoff.c: $(srcdir)/emulparams/tic3xcoff.sh \ |
1559 | $(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS} | |
1560 | ${GENSCRIPTS} tic3xcoff "$(tdir_tic4xcoff)" | |
1561 | etic3xcoff_onchip.c: $(srcdir)/emulparams/tic3xcoff_onchip.sh \ | |
1562 | $(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS} | |
019ac0e3 | 1563 | ${GENSCRIPTS} tic3xcoff_onchip "$(tdir_tic4xcoff)" |
026df7c5 NC |
1564 | etic4xcoff.c: $(srcdir)/emulparams/tic4xcoff.sh \ |
1565 | $(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic4xcoff.sc ${GEN_DEPENDS} | |
1566 | ${GENSCRIPTS} tic4xcoff "$(tdir_tic4xcoff)" | |
74459f0e TW |
1567 | etic54xcoff.c: $(srcdir)/emulparams/tic54xcoff.sh \ |
1568 | $(srcdir)/emultempl/ticoff.em $(srcdir)/scripttempl/tic54xcoff.sc ${GEN_DEPENDS} | |
1569 | ${GENSCRIPTS} tic54xcoff "$(tdir_tic54xcoff)" | |
252b5132 RH |
1570 | etic80coff.c: $(srcdir)/emulparams/tic80coff.sh \ |
1571 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic80coff.sc ${GEN_DEPENDS} | |
1572 | ${GENSCRIPTS} tic80coff "$(tdir_tic80coff)" | |
1573 | evanilla.c: $(srcdir)/emulparams/vanilla.sh \ | |
1574 | $(srcdir)/emultempl/vanilla.em $(srcdir)/scripttempl/vanilla.sc ${GEN_DEPENDS} | |
1575 | ${GENSCRIPTS} vanilla "$(tdir_vanilla)" | |
1576 | evax.c: $(srcdir)/emulparams/vax.sh \ | |
1577 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1578 | ${GENSCRIPTS} vax "$(tdir_vax)" | |
ab68f3e0 JT |
1579 | evaxnbsd.c: $(srcdir)/emulparams/vaxnbsd.sh \ |
1580 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1581 | ${GENSCRIPTS} vaxnbsd "$(tdir_vaxnbsd)" | |
252b5132 RH |
1582 | evsta.c: $(srcdir)/emulparams/vsta.sh \ |
1583 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS} | |
1584 | ${GENSCRIPTS} vsta "$(tdir_vsta)" | |
1585 | ev850.c: $(srcdir)/emulparams/v850.sh \ | |
1586 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/v850.sc ${GEN_DEPENDS} | |
1587 | ${GENSCRIPTS} v850 "$(tdir_v850)" | |
1588 | ew65.c: $(srcdir)/emulparams/w65.sh \ | |
1589 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/w65.sc ${GEN_DEPENDS} | |
1590 | ${GENSCRIPTS} w65 "$(tdir_w65)" | |
3c9b82ba NC |
1591 | ez80.c: $(srcdir)/emulparams/z80.sh \ |
1592 | $(srcdir)/emultempl/generic.em $(srcdir)/emultempl/z80.em \ | |
1593 | $(srcdir)/scripttempl/z80.sc ${GEN_DEPENDS} | |
1594 | ${GENSCRIPTS} z80 "$(tdir_z80)" | |
252b5132 RH |
1595 | ez8001.c: $(srcdir)/emulparams/z8001.sh \ |
1596 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS} | |
1597 | ${GENSCRIPTS} z8001 "$(tdir_z8001)" | |
1598 | ez8002.c: $(srcdir)/emulparams/z8002.sh \ | |
1599 | $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS} | |
1600 | ${GENSCRIPTS} z8002 "$(tdir_z8002)" | |
005e1118 AO |
1601 | eelf32frvfd.c: $(srcdir)/emulparams/elf32frvfd.sh \ |
1602 | $(srcdir)/emulparams/elf32frv.sh \ | |
1603 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} | |
1604 | ${GENSCRIPTS} elf32frvfd "$(tdir_frv)" | |
49f58d10 | 1605 | eelf32m32c.c: $(srcdir)/emulparams/elf32m32c.sh \ |
fa498e09 | 1606 | $(srcdir)/emultempl/elf32.em $(srcdir)/emultempl/needrelax.em \ |
49f58d10 JB |
1607 | $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
1608 | ${GENSCRIPTS} elf32m32c "$(tdir_m32c)" | |
4970f871 | 1609 | eelf32mt.c: $(srcdir)/emulparams/elf32mt.sh \ |
9e1f170f | 1610 | $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS} |
4970f871 | 1611 | ${GENSCRIPTS} elf32mt "$(tdir_mt)" |
252b5132 | 1612 | |
67798033 L |
1613 | # We need this for automake to use YLWRAP. |
1614 | EXTRA_ld_new_SOURCES = deffilep.y | |
1615 | ||
252b5132 RH |
1616 | ld_new_SOURCES = ldgram.y ldlex.l lexsup.c ldlang.c mri.c ldctor.c ldmain.c \ |
1617 | ldwrite.c ldexp.c ldemul.c ldver.c ldmisc.c ldfile.c ldcref.c | |
20e95c23 DJ |
1618 | ld_new_DEPENDENCIES = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBIBERTY) $(LIBINTL_DEP) |
1619 | ld_new_LDADD = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBIBERTY) $(LIBINTL) | |
252b5132 RH |
1620 | |
1621 | # The generated emulation files mostly have the same dependencies. | |
1622 | $(EMULATION_OFILES): ../bfd/bfd.h sysdep.h config.h $(INCDIR)/bfdlink.h \ | |
1623 | ld.h ldmain.h ldemul.h ldfile.h ldmisc.h ldexp.h ldlang.h \ | |
1624 | ldctor.h ldexp.h ldlang.h ldgram.h | |
1625 | ||
1626 | # This is the real libbfd.a created by libtool. | |
1627 | TESTBFDLIB = @TESTBFDLIB@ | |
1628 | ||
1629 | check-DEJAGNU: site.exp | |
1630 | srcroot=`cd $(srcdir) && pwd`; export srcroot; \ | |
1631 | r=`pwd`; export r; \ | |
9282ff41 | 1632 | LC_COLLATE=; LC_ALL=; LANG=; export LC_COLLATE LC_ALL LANG; \ |
252b5132 | 1633 | EXPECT=$(EXPECT); export EXPECT; \ |
252b5132 RH |
1634 | runtest=$(RUNTEST); \ |
1635 | if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \ | |
1636 | $$runtest --tool $(DEJATOOL) --srcdir $${srcroot}/testsuite \ | |
1637 | CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)" \ | |
1638 | CXX="$(CXX_FOR_TARGET)" CXXFLAGS="$(CXXFLAGS)" \ | |
1639 | CC_FOR_HOST="$(CC)" CFLAGS_FOR_HOST="$(CFLAGS)" \ | |
1640 | OFILES="$(OFILES)" BFDLIB="$(TESTBFDLIB)" \ | |
20e95c23 | 1641 | LIBIBERTY="$(LIBIBERTY) $(LIBINTL)" LIBS="$(LIBS)" \ |
252b5132 RH |
1642 | $(RUNTESTFLAGS); \ |
1643 | else echo "WARNING: could not find \`runtest'" 1>&2; :;\ | |
1644 | fi | |
1645 | ||
1646 | # Rules for testing by relinking ld itself. | |
1647 | # A similar test is in the testsuite. This target is for ease of use | |
1648 | # when porting ld. | |
1649 | ||
1650 | ld-partial.o: ld-new$(EXEEXT) | |
1651 | ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld-partial.o -r $(OFILES) | |
1652 | ld1$(EXEEXT): ld-partial.o | |
af28fce3 | 1653 | ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld1$(EXEEXT) $(HOSTING_CRT0) ld-partial.o $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) $(LIBS) |
252b5132 RH |
1654 | |
1655 | ld1-full$(EXEEXT): ld-new | |
af28fce3 | 1656 | ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld1-full$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) $(LIBS) |
252b5132 RH |
1657 | |
1658 | ld2$(EXEEXT): ld1$(EXEEXT) | |
af28fce3 | 1659 | ./ld1$(EXEEXT) $(HOSTING_EMU) -o ld2$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) $(LIBS) |
252b5132 RH |
1660 | |
1661 | ld3$(EXEEXT): ld2$(EXEEXT) | |
af28fce3 | 1662 | ./ld2$(EXEEXT) $(HOSTING_EMU) -o ld3$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS) $(LIBS) |
252b5132 RH |
1663 | |
1664 | bootstrap: ld3$(EXEEXT) | |
1665 | cmp ld2$(EXEEXT) ld3$(EXEEXT) | |
1666 | ||
1667 | .PHONY: bootstrap | |
1668 | ||
1669 | # A test program for C++ constructors and destructors. | |
1670 | # This test is now in the testsuite. | |
1671 | # | |
1672 | #cdtest: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new | |
1673 | # ./ld.new $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \ | |
1674 | # cdtest-main.o cdtest-bar.o cdtest-foo.o $(HOSTING_LIBS) | |
1675 | # | |
1676 | #cdtest.out: cdtest | |
1677 | # ./cdtest > cdtest.tmp | |
1678 | # mv cdtest.tmp cdtest.out | |
1679 | # | |
1680 | #cdtest-ur.o: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new | |
1681 | # ./ld.new $(HOSTING_EMU) -o cdtest-ur.o -Ur cdtest-main.o \ | |
1682 | # cdtest-bar.o cdtest-foo.o | |
1683 | # | |
1684 | #cdtest-ur: cdtest-ur.o | |
1685 | # ./ld.new $(HOSTING_EMU) -o cdtest-ur $(HOSTING_CRT0) cdtest-ur.o \ | |
1686 | # $(HOSTING_LIBS) | |
1687 | # | |
1688 | #cdtest-ur.out: cdtest-ur | |
1689 | # ./cdtest-ur > cdtest-ur.tmp | |
1690 | # mv cdtest-ur.tmp cdtest-ur.out | |
1691 | # | |
1692 | #check-cdtest: cdtest.out cdtest-ur.out $(srcdir)/cdtest.exp | |
1693 | # diff $(srcdir)/cdtest.exp cdtest.out | |
1694 | # diff $(srcdir)/cdtest.exp cdtest-ur.out | |
1695 | # | |
1696 | #.PHONY: check-cdtest | |
1697 | ||
1698 | # END OF CHECK TARGETS | |
1699 | ||
1700 | # DOCUMENTATION TARGETS | |
1701 | # Manual configuration file; not usually attached to normal configuration, | |
1702 | # because almost all configs use "gen" version of manual. | |
1703 | # Set DOCVER above to change. | |
1704 | configdoc.texi: ${DOCVER}-doc.texi | |
dff70155 | 1705 | cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi |
b251bf6f | 1706 | chmod u+w ./configdoc.texi |
252b5132 | 1707 | |
42ecbf5e | 1708 | ldver.texi: $(srcdir)/../bfd/configure |
252b5132 | 1709 | rm -f $@ |
970c3dbc DJ |
1710 | eval `grep '^ *VERSION=' $(srcdir)/../bfd/configure`; \ |
1711 | echo "@set VERSION $$VERSION" > $@ | |
252b5132 | 1712 | |
f7d9e5c3 | 1713 | $(srcdir)/ld.info ld.dvi ld.html: $(srcdir)/ld.texinfo configdoc.texi ldver.texi |
252b5132 | 1714 | |
0285c67d NC |
1715 | # Build the man page from the texinfo file |
1716 | # The sed command removes the no-adjust Nroff command so that | |
1717 | # the man output looks standard. | |
8b803601 | 1718 | ld.1: $(srcdir)/ld.texinfo configdoc.texi ldver.texi |
c45021f2 | 1719 | touch $@ |
0285c67d NC |
1720 | -$(TEXI2POD) $(MANCONF) < $(srcdir)/ld.texinfo > ld.pod |
1721 | -($(POD2MAN) ld.pod | \ | |
c45021f2 NC |
1722 | sed -e '/^.if n .na/d' > [email protected]$$$$ && \ |
1723 | mv -f [email protected]$$$$ $@) || \ | |
1724 | (rm -f [email protected]$$$$ && exit 1) | |
1725 | rm -f ld.pod | |
0285c67d | 1726 | |
42ecbf5e | 1727 | MAINTAINERCLEANFILES = ldver.texi configdoc.texi |
252b5132 | 1728 | |
42ecbf5e DJ |
1729 | # We want to reconfigure if configure.host or configure.tgt changes. We |
1730 | # extract version from bfd/configure.in, so we must depend on that also. | |
1731 | CONFIG_STATUS_DEPENDENCIES = $(srcdir)/configure.host $(srcdir)/configure.tgt \ | |
1732 | $(srcdir)/../bfd/configure.in | |
252b5132 RH |
1733 | |
1734 | MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \ | |
1735 | ldemul-list.h crtbegin.o crtend.o ld.log ld.sum | |
1736 | mostlyclean-local: | |
1737 | -rm -rf tmpdir | |
0bdaf48b | 1738 | CLEANFILES = dep.sed DEP DEPA DEP1 DEP2 |
252b5132 | 1739 | |
108a6f8e CD |
1740 | .PHONY: install-html install-html-am install-html-recursive |
1741 | ||
1742 | html__strip_dir = `echo $$p | sed -e 's|^.*/||'`; | |
1743 | ||
1744 | install-html: install-html-recursive install-html-am | |
1745 | ||
1746 | install-html-am: $(HTMLS) | |
1747 | @$(NORMAL_INSTALL) | |
1748 | test -z "$(htmldir)" || $(mkdir_p) "$(DESTDIR)$(htmldir)" | |
1749 | @list='$(HTMLS)'; for p in $$list; do \ | |
1750 | if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \ | |
1751 | f=$(html__strip_dir) \ | |
1752 | if test -d "$$d$$p"; then \ | |
1753 | echo " $(mkdir_p) '$(DESTDIR)$(htmldir)/$$f'"; \ | |
1754 | $(mkdir_p) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \ | |
1755 | echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \ | |
1756 | $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \ | |
1757 | else \ | |
1758 | echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \ | |
1759 | $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \ | |
1760 | fi; \ | |
1761 | done | |
1762 | ||
1763 | install-html-recursive: | |
1764 | @failcom='exit 1'; \ | |
1765 | for f in x $$MAKEFLAGS; do \ | |
1766 | case $$f in \ | |
1767 | *=* | --[!k]*);; \ | |
1768 | *k*) failcom='fail=yes';; \ | |
1769 | esac; \ | |
1770 | done; \ | |
1771 | dot_seen=no; \ | |
1772 | target=`echo $@ | sed s/-recursive//`; \ | |
1773 | list='$(SUBDIRS)'; for subdir in $$list; do \ | |
1774 | echo "Making $$target in $$subdir"; \ | |
1775 | if test "$$subdir" = "."; then \ | |
1776 | dot_seen=yes; \ | |
1777 | local_target="$$target-am"; \ | |
1778 | else \ | |
1779 | local_target="$$target"; \ | |
1780 | fi; \ | |
1781 | (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ | |
1782 | || eval $$failcom; \ | |
1783 | done; \ | |
1784 | if test "$$dot_seen" = "no"; then \ | |
1785 | $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ | |
1786 | fi; test -z "$$fail" | |
1787 | ||
252b5132 RH |
1788 | .PHONY: install-exec-local install-data-local |
1789 | ||
1790 | install-exec-local: ld-new$(EXEEXT) | |
d3d8a9ee | 1791 | $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(tooldir)/bin |
252b5132 RH |
1792 | @list='$(noinst_PROGRAMS)'; for p in $$list; do \ |
1793 | if test -f $$p; then \ | |
1794 | echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \ | |
d3d8a9ee | 1795 | $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(DESTDIR)$(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \ |
252b5132 RH |
1796 | else :; fi; \ |
1797 | done | |
1798 | n=`echo ld | sed '$(transform)'`; \ | |
1799 | if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/ld$(EXEEXT)" ]; then \ | |
d3d8a9ee NC |
1800 | rm -f $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \ |
1801 | ln $(DESTDIR)$(bindir)/$$n$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \ | |
1802 | || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(DESTDIR)$(tooldir)/bin/ld$(EXEEXT); \ | |
252b5132 RH |
1803 | fi |
1804 | ||
1805 | install-data-local: | |
d3d8a9ee | 1806 | $(mkinstalldirs) $(DESTDIR)$(scriptdir)/ldscripts |
252b5132 | 1807 | for f in ldscripts/*; do \ |
d3d8a9ee | 1808 | $(INSTALL_DATA) $$f $(DESTDIR)$(scriptdir)/$$f ; \ |
252b5132 RH |
1809 | done |
1810 | ||
cd8e197b HPN |
1811 | # We want install to imply install-info as per GNU standards, despite the |
1812 | # cygnus option. | |
42ecbf5e | 1813 | install-data-local: install-info |
cd8e197b | 1814 | |
252b5132 RH |
1815 | # Stuff that should be included in a distribution. The diststuff |
1816 | # target is run by the taz target in ../Makefile.in. | |
c45021f2 NC |
1817 | EXTRA_DIST = ldgram.c ldgram.h ldlex.c $(man_MANS) |
1818 | diststuff: info $(EXTRA_DIST) | |
e3e71e27 | 1819 | all: info ld.1 |
252b5132 | 1820 | |
8b803601 L |
1821 | # Both info (ld.info) and ld.1 depend on configdoc.texi and ldver.texi. |
1822 | # But info isn't a direct target. Make info-recursive to depend on | |
1823 | # ld.1 to support parallel build. | |
1824 | info-recursive: ld.1 | |
1825 | ||
dca7760f | 1826 | DISTCLEANFILES = tdirs site.exp site.bak stringify.sed |
252b5132 RH |
1827 | distclean-local: |
1828 | rm -rf ldscripts | |
1829 | ||
1830 | # Targets to rebuild dependencies in this Makefile. | |
f4162f5c ILT |
1831 | # Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES). |
1832 | DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h | |
1833 | rm -f DEP1 | |
41b49281 | 1834 | $(MAKE) MKDEP="$(MKDEP)" DEP1 |
0bdaf48b AM |
1835 | sed -f dep.sed < DEP1 > DEPA |
1836 | echo '# IF YOU PUT ANYTHING HERE IT WILL GO AWAY' >> DEPA | |
1837 | if grep ' /' DEPA > /dev/null 2> /dev/null; then \ | |
1581f8c9 AM |
1838 | echo 'make DEP failed!'; exit 1; \ |
1839 | else \ | |
0bdaf48b | 1840 | mv -f DEPA $@; \ |
1581f8c9 | 1841 | fi |
252b5132 | 1842 | |
f4162f5c | 1843 | DEP1: $(CFILES) $(GENERATED_CFILES) |
f4162f5c | 1844 | echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2 |
41b49281 AM |
1845 | echo '# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.' >> DEP2 |
1846 | $(MKDEP) $(INCLUDES) $(CFLAGS) $? >> DEP2 | |
1847 | mv -f DEP2 $@ | |
252b5132 RH |
1848 | |
1849 | dep.sed: dep-in.sed config.status | |
1850 | sed <$(srcdir)/dep-in.sed >dep.sed \ | |
1851 | -e 's!@INCDIR@!$(INCDIR)!' \ | |
61bef6f1 AM |
1852 | -e 's!@BFDDIR@!$(BFDDIR)!' \ |
1853 | -e 's!@SRCDIR@!$(srcdir)!' \ | |
1854 | -e 's!@TOPDIR@!'`echo $(srcdir) | sed -e s,/ld$$,,`'!' | |
252b5132 | 1855 | |
f4162f5c | 1856 | dep: DEP |
252b5132 | 1857 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile |
f4162f5c | 1858 | cat DEP >> tmp-Makefile |
252b5132 RH |
1859 | $(srcdir)/../move-if-change tmp-Makefile Makefile |
1860 | ||
f4162f5c | 1861 | dep-in: DEP |
252b5132 | 1862 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in |
f4162f5c | 1863 | cat DEP >> tmp-Makefile.in |
252b5132 RH |
1864 | $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in |
1865 | ||
f4162f5c | 1866 | dep-am: DEP |
252b5132 | 1867 | sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am |
f4162f5c | 1868 | cat DEP >> tmp-Makefile.am |
252b5132 RH |
1869 | $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am |
1870 | ||
1871 | .PHONY: dep dep-in dep-am | |
1872 | ||
1873 | # What appears below is generated by a hacked mkdep using gcc -MM. | |
1874 | ||
1875 | # DO NOT DELETE THIS LINE -- mkdep uses it. | |
1876 | # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY. | |
01580992 | 1877 | ldctor.o: ldctor.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1878 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
d32820f2 | 1879 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h ld.h $(INCDIR)/bin-bugs.h \ |
9e5169a8 L |
1880 | ldexp.h ldlang.h ldmisc.h ldgram.h ldmain.h ldctor.h |
1881 | ldemul.o: ldemul.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \ | |
ceae3e33 | 1882 | $(INCDIR)/symcat.h sysdep.h $(INCDIR)/fopen-same.h \ |
0f82ff91 | 1883 | $(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h ldmisc.h \ |
9e5169a8 | 1884 | ldexp.h ldlang.h ldfile.h ldemul.h ldmain.h ldemul-list.h |
01580992 | 1885 | ldexp.o: ldexp.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1886 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
d32820f2 | 1887 | $(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h ldmain.h \ |
9e5169a8 | 1888 | ldmisc.h ldexp.h ldgram.h ldlang.h $(INCDIR)/libiberty.h \ |
1763d3d8 | 1889 | $(INCDIR)/safe-ctype.h |
01580992 | 1890 | ldfile.o: ldfile.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1891 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
d32820f2 | 1892 | $(INCDIR)/bfdlink.h $(INCDIR)/safe-ctype.h ld.h $(INCDIR)/bin-bugs.h \ |
9e5169a8 | 1893 | ldmisc.h ldexp.h ldlang.h ldfile.h ldmain.h ldgram.h \ |
1763d3d8 | 1894 | ldlex.h ldemul.h $(INCDIR)/libiberty.h $(INCDIR)/filenames.h |
01580992 | 1895 | ldlang.o: ldlang.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1896 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
1763d3d8 AM |
1897 | $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(INCDIR)/obstack.h \ |
1898 | $(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h ldmain.h \ | |
1899 | ldexp.h ldlang.h ldgram.h ldlex.h ldmisc.h ldctor.h \ | |
1900 | ldfile.h ldemul.h $(INCDIR)/fnmatch.h $(INCDIR)/demangle.h \ | |
1901 | $(INCDIR)/hashtab.h | |
01580992 | 1902 | ldmain.o: ldmain.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1903 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
1763d3d8 AM |
1904 | $(INCDIR)/safe-ctype.h $(INCDIR)/libiberty.h $(INCDIR)/progress.h \ |
1905 | $(INCDIR)/bfdlink.h $(INCDIR)/filenames.h ld.h $(INCDIR)/bin-bugs.h \ | |
1906 | ldmain.h ldmisc.h ldwrite.h ldexp.h ldlang.h ldgram.h \ | |
1907 | ldlex.h ldfile.h ldemul.h ldctor.h | |
01580992 | 1908 | ldmisc.o: ldmisc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1909 | $(INCDIR)/symcat.h $(INCDIR)/bfdlink.h sysdep.h config.h \ |
1763d3d8 AM |
1910 | $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h $(INCDIR)/demangle.h \ |
1911 | ld.h $(INCDIR)/bin-bugs.h ldmisc.h ldexp.h ldlang.h \ | |
1912 | ldgram.h ldlex.h ldmain.h ldfile.h $(BFDDIR)/elf-bfd.h \ | |
1913 | $(INCDIR)/elf/common.h $(INCDIR)/elf/internal.h $(INCDIR)/elf/external.h | |
01580992 | 1914 | ldver.o: ldver.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1915 | $(INCDIR)/symcat.h ../bfd/bfdver.h sysdep.h config.h \ |
c6db2f05 AM |
1916 | $(INCDIR)/fopen-same.h ld.h $(INCDIR)/bin-bugs.h ldver.h \ |
1917 | ldexp.h ldlang.h ldfile.h ldemul.h ldmain.h | |
01580992 | 1918 | ldwrite.o: ldwrite.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1919 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
1763d3d8 AM |
1920 | $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \ |
1921 | ld.h $(INCDIR)/bin-bugs.h ldexp.h ldlang.h ldwrite.h \ | |
1922 | ldmisc.h ldgram.h ldmain.h | |
9e5169a8 | 1923 | lexsup.o: lexsup.c config.h ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
ceae3e33 | 1924 | $(INCDIR)/symcat.h sysdep.h $(INCDIR)/fopen-same.h \ |
1763d3d8 AM |
1925 | $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h \ |
1926 | ld.h $(INCDIR)/bin-bugs.h ldmain.h ldmisc.h ldexp.h \ | |
1927 | ldlang.h ldgram.h ldlex.h ldfile.h ldver.h ldemul.h \ | |
1928 | $(INCDIR)/demangle.h | |
d32820f2 | 1929 | mri.o: mri.c ../bfd/bfd.h $(INCDIR)/ansidecl.h $(INCDIR)/symcat.h \ |
9e5169a8 | 1930 | sysdep.h config.h $(INCDIR)/fopen-same.h ld.h $(INCDIR)/bin-bugs.h \ |
1763d3d8 | 1931 | ldexp.h ldlang.h ldmisc.h mri.h ldgram.h $(INCDIR)/libiberty.h |
01580992 | 1932 | ldcref.o: ldcref.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1933 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
1763d3d8 AM |
1934 | $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h ld.h $(INCDIR)/bin-bugs.h \ |
1935 | ldmain.h ldmisc.h ldexp.h ldlang.h | |
01580992 | 1936 | pe-dll.o: pe-dll.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1937 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
1763d3d8 AM |
1938 | $(INCDIR)/bfdlink.h $(INCDIR)/libiberty.h $(INCDIR)/safe-ctype.h \ |
1939 | ld.h $(INCDIR)/bin-bugs.h ldexp.h ldlang.h ldwrite.h \ | |
1940 | ldmisc.h ldgram.h ldmain.h ldfile.h ldemul.h $(INCDIR)/coff/internal.h \ | |
1941 | $(BFDDIR)/libcoff.h deffile.h pe-dll.h | |
01580992 | 1942 | ldgram.o: ldgram.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1943 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
d32820f2 AM |
1944 | $(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h ldexp.h \ |
1945 | ldver.h ldlang.h ldfile.h ldemul.h ldmisc.h ldmain.h \ | |
1946 | mri.h ldctor.h ldlex.h | |
1579bae1 | 1947 | ldlex.o: ldlex.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \ |
9e5169a8 | 1948 | $(INCDIR)/symcat.h sysdep.h config.h $(INCDIR)/fopen-same.h \ |
ce4f7385 | 1949 | $(INCDIR)/safe-ctype.h $(INCDIR)/bfdlink.h ld.h $(INCDIR)/bin-bugs.h \ |
9e5169a8 | 1950 | ldmisc.h ldexp.h ldlang.h ldgram.h ldfile.h ldlex.h \ |
1763d3d8 | 1951 | ldmain.h $(INCDIR)/libiberty.h |
01580992 | 1952 | deffilep.o: deffilep.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \ |
1763d3d8 AM |
1953 | $(INCDIR)/safe-ctype.h ../bfd/bfd.h $(INCDIR)/symcat.h \ |
1954 | sysdep.h config.h $(INCDIR)/fopen-same.h ld.h $(INCDIR)/bin-bugs.h \ | |
1955 | ldmisc.h deffile.h | |
252b5132 | 1956 | # IF YOU PUT ANYTHING HERE IT WILL GO AWAY |