Fix copyright - Cygnus is a Red Hat company.
[deliverable/binutils-gdb.git] / ld / Makefile.in
CommitLineData
3336653a 1# Makefile.in generated automatically by automake 1.4 from Makefile.am
252b5132
RH
2
3# Copyright (C) 1994, 1995-8, 1999 Free Software Foundation, Inc.
4# This Makefile.in is free software; the Free Software Foundation
5# gives unlimited permission to copy and/or distribute it,
6# with or without modifications, as long as this notice is preserved.
7
8# This program is distributed in the hope that it will be useful,
9# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
10# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
11# PARTICULAR PURPOSE.
12
13
14SHELL = @SHELL@
15
16srcdir = @srcdir@
17top_srcdir = @top_srcdir@
18VPATH = @srcdir@
19prefix = @prefix@
20exec_prefix = @exec_prefix@
21
22bindir = @bindir@
23sbindir = @sbindir@
24libexecdir = @libexecdir@
25datadir = @datadir@
26sysconfdir = @sysconfdir@
27sharedstatedir = @sharedstatedir@
28localstatedir = @localstatedir@
29libdir = @libdir@
30infodir = @infodir@
31mandir = @mandir@
32includedir = @includedir@
33oldincludedir = /usr/include
34
35DESTDIR =
36
37pkgdatadir = $(datadir)/@PACKAGE@
38pkglibdir = $(libdir)/@PACKAGE@
39pkgincludedir = $(includedir)/@PACKAGE@
40
41top_builddir = .
42
43ACLOCAL = @ACLOCAL@
44AUTOCONF = @AUTOCONF@
45AUTOMAKE = @AUTOMAKE@
46AUTOHEADER = @AUTOHEADER@
47
48INSTALL = @INSTALL@
3336653a 49INSTALL_PROGRAM = @INSTALL_PROGRAM@ $(AM_INSTALL_PROGRAM_FLAGS)
252b5132
RH
50INSTALL_DATA = @INSTALL_DATA@
51INSTALL_SCRIPT = @INSTALL_SCRIPT@
52transform = @program_transform_name@
53
54NORMAL_INSTALL = :
55PRE_INSTALL = :
56POST_INSTALL = :
57NORMAL_UNINSTALL = :
58PRE_UNINSTALL = :
59POST_UNINSTALL = :
60build_alias = @build_alias@
61build_triplet = @build@
62host_alias = @host_alias@
63host_triplet = @host@
64target_alias = @target_alias@
65target_triplet = @target@
66AS = @AS@
67CATALOGS = @CATALOGS@
68CATOBJEXT = @CATOBJEXT@
69CC = @CC@
70CC_FOR_BUILD = @CC_FOR_BUILD@
71DATADIRNAME = @DATADIRNAME@
72DLLTOOL = @DLLTOOL@
3336653a 73EMULATION_LIBPATH = @EMULATION_LIBPATH@
252b5132
RH
74EXEEXT = @EXEEXT@
75EXEEXT_FOR_BUILD = @EXEEXT_FOR_BUILD@
76GMOFILES = @GMOFILES@
77GMSGFMT = @GMSGFMT@
78GT_NO = @GT_NO@
79GT_YES = @GT_YES@
80HDEFINES = @HDEFINES@
81INCLUDE_LOCALE_H = @INCLUDE_LOCALE_H@
82INSTOBJEXT = @INSTOBJEXT@
83INTLDEPS = @INTLDEPS@
84INTLOBJS = @INTLOBJS@
85LD = @LD@
86LIBTOOL = @LIBTOOL@
87LN_S = @LN_S@
88MAINT = @MAINT@
89MAKEINFO = @MAKEINFO@
90MKINSTALLDIRS = @MKINSTALLDIRS@
91MSGFMT = @MSGFMT@
92NATIVE_LIB_DIRS = @NATIVE_LIB_DIRS@
93NM = @NM@
94PACKAGE = @PACKAGE@
95POFILES = @POFILES@
96POSUB = @POSUB@
97RANLIB = @RANLIB@
597e2591 98STRINGIFY = @STRINGIFY@
252b5132
RH
99USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
100USE_NLS = @USE_NLS@
f7cc0a4d 101USE_SYMBOL_UNDERSCORE = @USE_SYMBOL_UNDERSCORE@
252b5132
RH
102VERSION = @VERSION@
103l = @l@
104
105INTLLIBS = @INTLLIBS@
106
107AUTOMAKE_OPTIONS = cygnus dejagnu
108
109SUBDIRS = po
110
111tooldir = $(exec_prefix)/$(target_alias)
112
a7e78dae 113YACC = `if [ -f ../bison/bison ]; then echo ../bison/bison -y -L$(srcdir)/../bison/; else echo @YACC@; fi`
252b5132 114YFLAGS = -d
a7e78dae 115LEX = `if [ -f ../flex/flex ]; then echo ../flex/flex; else echo @LEX@; fi`
252b5132
RH
116
117# We put the scripts in the directory $(scriptdir)/ldscripts.
118# We can't put the scripts in $(datadir) because the SEARCH_DIR
119# directives need to be different for native and cross linkers.
120scriptdir = $(tooldir)/lib
121
122EMUL = @EMUL@
123EMULATION_OFILES = @EMULATION_OFILES@
124EMUL_EXTRA_OFILES = @EMUL_EXTRA_OFILES@
125
126# Search path to override the default search path for -lfoo libraries.
127# If LIB_PATH is empty, the ones in the script (if any) are left alone.
128# (The default is usually /lib:/usr/lib:/usr/local/lib, unless building
129# a cross-linker, in which case the default is empty. See genscripts.sh.)
130# Otherwise, they are replaced with the ones given in LIB_PATH,
131# which may have the form: LIB_PATH=/lib:/usr/local/lib
132LIB_PATH =
133
134BASEDIR = $(srcdir)/..
135BFDDIR = $(BASEDIR)/bfd
136INCDIR = $(BASEDIR)/include
f4162f5c 137MKDEP = mkdep
252b5132
RH
138
139# What version of the manual to build
140DOCVER = gen
141
142#stuff for self hosting (can be overridden in config file).
143HOSTING_CRT0 = @HOSTING_CRT0@
144HOSTING_LIBS = @HOSTING_LIBS@
145HOSTING_EMU = -m $(EMUL)
146
147# Setup the testing framework, if you have one
3336653a
RH
148EXPECT = `if [ -f $$r/../expect/expect ] ; \
149 then echo $$r/../expect/expect ; \
150 else echo expect ; fi`
252b5132
RH
151
152
3336653a
RH
153RUNTEST = `if [ -f $${srcroot}/../dejagnu/runtest ] ; \
154 then echo $${srcroot}/../dejagnu/runtest ; \
155 else echo runtest ; fi`
252b5132
RH
156
157
158RUNTESTFLAGS =
159
3336653a
RH
160CC_FOR_TARGET = ` \
161 if [ -f $$r/../gcc/xgcc ] ; then \
162 if [ -f $$r/../newlib/Makefile ] ; then \
163 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
164 else \
165 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
166 fi; \
167 else \
168 if [ "@host@" = "@target@" ] ; then \
169 echo $(CC); \
170 else \
171 echo gcc | sed '$(transform)'; \
172 fi; \
173 fi`
252b5132
RH
174
175
176CXX = gcc
3336653a
RH
177CXX_FOR_TARGET = ` \
178 if [ -f $$r/../gcc/xgcc ] ; then \
179 if [ -f $$r/../newlib/Makefile ] ; then \
180 echo $$r/../gcc/xgcc -B$$r/../gcc/ -idirafter $$r/../newlib/targ-include -idirafter $${srcroot}/../newlib/libc/include -nostdinc; \
181 else \
182 echo $$r/../gcc/xgcc -B$$r/../gcc/; \
183 fi; \
184 else \
185 if [ "@host@" = "@target@" ] ; then \
186 echo $(CXX); \
187 else \
188 echo gcc | sed '$(transform)'; \
189 fi; \
190 fi`
252b5132
RH
191
192
193noinst_PROGRAMS = ld-new
194info_TEXINFOS = ld.texinfo
195noinst_TEXINFOS = ldint.texinfo
196man_MANS = ld.1
197
198INCLUDES = -D_GNU_SOURCE -I. -I$(srcdir) -I../bfd -I$(BFDDIR) -I$(INCDIR) -I$(top_srcdir)/../intl -I../intl $(HDEFINES) $(CFLAGS) -DLOCALEDIR="\"$(prefix)/share/locale\""
199
200BFDLIB = ../bfd/libbfd.la
201LIBIBERTY = ../libiberty/libiberty.a
202
3336653a
RH
203ALL_EMULATIONS = \
204 ea29k.o \
205 eaixppc.o \
206 eaixrs6.o \
207 ealpha.o \
208 earcelf.o \
209 earmelf.o \
210 earmelf_oabi.o \
211 earmelf_linux.o \
212 earmelf_linux26.o \
213 earmaoutb.o \
214 earmaoutl.o \
215 earmcoff.o \
8959586a 216 earmnbsd.o \
3336653a 217 earmpe.o \
cf865442 218 earm_epoc_pe.o \
3336653a
RH
219 ecoff_sparc.o \
220 ed10velf.o \
221 ed30velf.o \
222 ed30v_e.o \
223 ed30v_o.o \
224 edelta68.o \
225 eebmon29k.o \
226 eelf32_sparc.o \
227 eelf32_i960.o \
228 eelf32b4300.o \
229 eelf32bmip.o \
230 eelf32ebmip.o \
231 eelf32elmip.o \
85f70471 232 eelf32bmipn32.o \
3336653a
RH
233 eelf32l4300.o \
234 eelf32lmip.o \
235 eelf32lppc.o \
236 eelf32ppc.o \
237 eelf32ppclinux.o \
238 eelf_i386.o \
239 eelf_i386_be.o \
240 egld960.o \
241 egld960coff.o \
242 eelf32fr30.o \
243 eelf32mcore.o \
3336653a
RH
244 eh8300.o \
245 eh8300h.o \
246 eh8300s.o \
247 eh8500.o \
248 eh8500b.o \
249 eh8500c.o \
250 eh8500m.o \
251 eh8500s.o \
252 ehp300bsd.o \
253 ehp3hpux.o \
254 ehppaelf.o \
255 ei386aout.o \
256 ei386beos.o \
257 ei386bsd.o \
258 ei386coff.o \
259 ei386go32.o \
260 ei386linux.o \
261 ei386lynx.o \
262 ei386mach.o \
263 ei386moss.o \
264 ei386msdos.o \
265 ei386nbsd.o \
266 ei386nw.o \
267 ei386pe.o \
a7e78dae 268 ei386pe_posix.o \
3336653a
RH
269 elnk960.o \
270 em68k4knbsd.o \
271 em68kaout.o \
272 em68kaux.o \
273 em68kcoff.o \
274 em68kelf.o \
275 em68klinux.o \
276 em68klynx.o \
277 em68knbsd.o \
278 em68kpsos.o \
279 em88kbcs.o \
280 emcorepe.o \
281 emipsbig.o \
282 emipsbsd.o \
283 emipsidt.o \
284 emipsidtl.o \
285 emipslit.o \
286 emipslnews.o \
287 enews.o \
c6c8c6dc
ILT
288 epjelf.o \
289 epjlelf.o \
3336653a
RH
290 ens32knbsd.o \
291 epc532macha.o \
292 eppcmacos.o \
293 eppcnw.o \
294 eppcpe.o \
295 eriscix.o \
296 esa29200.o \
297 esh.o \
298 eshelf.o \
299 eshlelf.o \
300 eshl.o \
301 esparcaout.o \
302 esparclinux.o \
303 esparclynx.o \
304 esparcnbsd.o \
305 est2000.o \
306 esun3.o \
307 esun4.o \
308 etic30aout.o \
309 etic30coff.o \
310 etic80coff.o \
311 evanilla.o \
312 evax.o \
313 evsta.o \
314 ew65.o \
315 ez8001.o \
316 ez8002.o
317
318
319ALL_64_EMULATIONS = \
320 eelf64_sparc.o \
22c675a7 321 eelf64alpha.o \
f6e143a1
JL
322 eelf64bmip.o \
323 eelf64hppa.o
3336653a
RH
324
325
326ALL_EMUL_EXTRA_OFILES = \
327 pe-dll.o \
328 deffilep.o
329
330
331CFILES = ldctor.c ldemul.c ldexp.c ldfile.c ldlang.c \
332 ldmain.c ldmisc.c ldver.c ldwrite.c lexsup.c \
333 mri.c ldcref.c pe-dll.c
334
335
336HFILES = ld.h ldctor.h ldemul.h ldexp.h ldfile.h \
337 ldlang.h ldlex.h ldmain.h ldmisc.h ldver.h \
1069dd8d 338 ldwrite.h mri.h deffile.h pe-dll.h
252b5132
RH
339
340
341GENERATED_CFILES = ldgram.c ldlex.c deffilep.c
342GENERATED_HFILES = ldgram.h ldemul-list.h deffilep.h
343
3336653a
RH
344OFILES = ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o ldmain.o \
345 ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o \
346 ldfile.o ldcref.o ${EMULATION_OFILES} ${EMUL_EXTRA_OFILES}
252b5132
RH
347
348
349STAGESTUFF = *.o ldscripts/* e*.c
350
351# At the moment this is just a list of those emulation template files
352# that contain internationalised strings.
353EMULATION_FILES = emultempl/pe.em emultempl/armcoff.em
354
355POTFILES = $(CFILES) $(HFILES) $(EMULATION_FILES)
356
357# These all start with e so 'make clean' can find them.
358
3336653a 359GENSCRIPTS = $(SHELL) $(srcdir)/genscripts.sh ${srcdir} ${libdir} @host@ @target@ @target_alias@ "@EMULATION_LIBPATH@" "@NATIVE_LIB_DIRS@"
597e2591 360GEN_DEPENDS = $(srcdir)/genscripts.sh stringify.sed
252b5132 361
3336653a
RH
362ld_new_SOURCES = ldgram.y ldlex.l lexsup.c ldlang.c mri.c ldctor.c ldmain.c \
363 ldwrite.c ldexp.c ldemul.c ldver.c ldmisc.c ldfile.c ldcref.c
252b5132
RH
364
365ld_new_DEPENDENCIES = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBIBERTY) $(INTLDEPS)
366ld_new_LDADD = $(EMULATION_OFILES) $(EMUL_EXTRA_OFILES) $(BFDLIB) $(LIBIBERTY) $(INTLLIBS)
367
368# This is the real libbfd.a created by libtool.
369TESTBFDLIB = @TESTBFDLIB@
370
371MAINTAINERCLEANFILES = ldver.texi
372
3336653a
RH
373MOSTLYCLEANFILES = $(STAGESTUFF) ld1$(EXEEXT) ld2$(EXEEXT) ld3$(EXEEXT) \
374 ldemul-list.h crtbegin.o crtend.o ld.log ld.sum
252b5132 375
f4162f5c 376CLEANFILES = dep.sed DEP DEP1
252b5132
RH
377
378# Stuff that should be included in a distribution. The diststuff
379# target is run by the taz target in ../Makefile.in.
380LDDISTSTUFF = ldgram.c ldgram.h ldlex.c
381
382DISTCLEANFILES = tdirs site.exp site.bak
383ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
384mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
385CONFIG_HEADER = config.h
386CONFIG_CLEAN_FILES =
387noinst_PROGRAMS = ld-new$(EXEEXT)
388PROGRAMS = $(noinst_PROGRAMS)
389
390
391DEFS = @DEFS@ -I. -I$(srcdir) -I.
392CPPFLAGS = @CPPFLAGS@
393LDFLAGS = @LDFLAGS@
394LIBS = @LIBS@
395ld_new_OBJECTS = ldgram.o ldlex.o lexsup.o ldlang.o mri.o ldctor.o \
396ldmain.o ldwrite.o ldexp.o ldemul.o ldver.o ldmisc.o ldfile.o ldcref.o
397ld_new_LDFLAGS =
398LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
399LEXLIB = @LEXLIB@
400CFLAGS = @CFLAGS@
401COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
402LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
403CCLD = $(CC)
404LINK = $(LIBTOOL) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
405TEXI2DVI = `if test -f $(top_srcdir)/../texinfo/util/texi2dvi; then echo $(top_srcdir)/../texinfo/util/texi2dvi; else echo texi2dvi; fi`
406TEXINFO_TEX = $(top_srcdir)/../texinfo/texinfo.tex
407INFO_DEPS = ld.info
408DVIS = ld.dvi
409TEXINFOS = ld.texinfo
410man1dir = $(mandir)/man1
411MANS = $(man_MANS)
412
413NROFF = nroff
414DIST_COMMON = README ./stamp-h.in ChangeLog Makefile.am Makefile.in \
415NEWS TODO acinclude.m4 aclocal.m4 config.in configure configure.in \
416ldgram.c ldlex.c
417
418
419DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
420
0ccf812a 421TAR = gtar
252b5132
RH
422GZIP_ENV = --best
423SOURCES = $(ld_new_SOURCES)
424OBJECTS = $(ld_new_OBJECTS)
425
426all: all-redirect
427.SUFFIXES:
428.SUFFIXES: .S .c .dvi .info .l .lo .o .ps .s .texi .texinfo .txi .y
429$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4)
430 cd $(top_srcdir) && $(AUTOMAKE) --cygnus Makefile
431
432Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
433 cd $(top_builddir) \
434 && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
435
436$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in acinclude.m4
437 cd $(srcdir) && $(ACLOCAL)
438$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4) $(CONFIGURE_DEPENDENCIES)
439 cd $(srcdir) && $(AUTOCONF)
440
441config.h: stamp-h
442 @if test ! -f $@; then \
443 rm -f stamp-h; \
444 $(MAKE) stamp-h; \
445 else :; fi
446stamp-h: $(srcdir)/config.in $(top_builddir)/config.status
447 cd $(top_builddir) \
448 && CONFIG_FILES= CONFIG_HEADERS=config.h:config.in \
449 $(SHELL) ./config.status
450 @echo timestamp > stamp-h 2> /dev/null
451$(srcdir)/config.in: @MAINTAINER_MODE_TRUE@$(srcdir)/stamp-h.in
452 @if test ! -f $@; then \
453 rm -f $(srcdir)/stamp-h.in; \
454 $(MAKE) $(srcdir)/stamp-h.in; \
455 else :; fi
456$(srcdir)/stamp-h.in: $(top_srcdir)/configure.in $(ACLOCAL_M4)
457 cd $(top_srcdir) && $(AUTOHEADER)
458 @echo timestamp > $(srcdir)/stamp-h.in 2> /dev/null
459
460mostlyclean-hdr:
461
462clean-hdr:
463
464distclean-hdr:
465 -rm -f config.h
466
467maintainer-clean-hdr:
468
469mostlyclean-noinstPROGRAMS:
470
471clean-noinstPROGRAMS:
472 -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
473
474distclean-noinstPROGRAMS:
475
476maintainer-clean-noinstPROGRAMS:
477
478.c.o:
479 $(COMPILE) -c $<
480
481.s.o:
482 $(COMPILE) -c $<
483
484.S.o:
485 $(COMPILE) -c $<
486
487mostlyclean-compile:
488 -rm -f *.o core *.core
489
490clean-compile:
491
492distclean-compile:
493 -rm -f *.tab.c
494
495maintainer-clean-compile:
496
497.c.lo:
498 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
499
500.s.lo:
501 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
502
503.S.lo:
504 $(LIBTOOL) --mode=compile $(COMPILE) -c $<
505
506mostlyclean-libtool:
507 -rm -f *.lo
508
509clean-libtool:
510 -rm -rf .libs _libs
511
512distclean-libtool:
513
514maintainer-clean-libtool:
515
516ld-new$(EXEEXT): $(ld_new_OBJECTS) $(ld_new_DEPENDENCIES)
517 @rm -f ld-new$(EXEEXT)
518 $(LINK) $(ld_new_LDFLAGS) $(ld_new_OBJECTS) $(ld_new_LDADD) $(LIBS)
519.l.c:
520 $(LEX) $(AM_LFLAGS) $(LFLAGS) $< && mv $(LEX_OUTPUT_ROOT).c $@
521.y.c:
522 $(YACC) $(AM_YFLAGS) $(YFLAGS) $< && mv y.tab.c $*.c
523 if test -f y.tab.h; then \
524 if cmp -s y.tab.h $*.h; then rm -f y.tab.h; else mv y.tab.h $*.h; fi; \
525 else :; fi
526ldgram.h: ldgram.c
527
528
529ld.info: ld.texinfo
530ld.dvi: ld.texinfo
531
532
533DVIPS = dvips
534
535.texi.info:
536 @rm -f $@ $@-[0-9] $@-[0-9][0-9]
537 $(MAKEINFO) -I $(srcdir) $<
538
539.texi.dvi:
540 TEXINPUTS=$(top_srcdir)/../texinfo/texinfo.tex:$$TEXINPUTS \
541 MAKEINFO='$(MAKEINFO) -I $(srcdir)' $(TEXI2DVI) $<
542
543.texi:
544 @rm -f $@ $@-[0-9] $@-[0-9][0-9]
545 $(MAKEINFO) -I $(srcdir) $<
546
547.texinfo.info:
548 @rm -f $@ $@-[0-9] $@-[0-9][0-9]
549 $(MAKEINFO) -I $(srcdir) $<
550
551.texinfo:
552 @rm -f $@ $@-[0-9] $@-[0-9][0-9]
553 $(MAKEINFO) -I $(srcdir) $<
554
555.texinfo.dvi:
556 TEXINPUTS=$(top_srcdir)/../texinfo/texinfo.tex:$$TEXINPUTS \
557 MAKEINFO='$(MAKEINFO) -I $(srcdir)' $(TEXI2DVI) $<
558
559.txi.info:
560 @rm -f $@ $@-[0-9] $@-[0-9][0-9]
561 $(MAKEINFO) -I $(srcdir) $<
562
563.txi.dvi:
564 TEXINPUTS=$(top_srcdir)/../texinfo/texinfo.tex:$$TEXINPUTS \
565 MAKEINFO='$(MAKEINFO) -I $(srcdir)' $(TEXI2DVI) $<
566
567.txi:
568 @rm -f $@ $@-[0-9] $@-[0-9][0-9]
569 $(MAKEINFO) -I $(srcdir) $<
570.dvi.ps:
571 $(DVIPS) $< -o $@
572
573install-info-am: $(INFO_DEPS)
574 @$(NORMAL_INSTALL)
575 $(mkinstalldirs) $(DESTDIR)$(infodir)
576 @list='$(INFO_DEPS)'; \
577 for file in $$list; do \
578 if test -f $$file; then d=.; else d=$(srcdir); fi; \
579 for ifile in `cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
580 if test -f $$d/$$ifile; then \
581 echo " $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile"; \
582 $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile; \
583 else : ; fi; \
584 done; \
585 done
586 @$(POST_INSTALL)
587 @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
588 list='$(INFO_DEPS)'; \
589 for file in $$list; do \
590 echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file";\
591 install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file || :;\
592 done; \
593 else : ; fi
594
595uninstall-info:
596 $(PRE_UNINSTALL)
597 @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
598 ii=yes; \
599 else ii=; fi; \
600 list='$(INFO_DEPS)'; \
601 for file in $$list; do \
602 test -z "$ii" \
603 || install-info --info-dir=$(DESTDIR)$(infodir) --remove $$file; \
604 done
605 @$(NORMAL_UNINSTALL)
606 list='$(INFO_DEPS)'; \
607 for file in $$list; do \
608 (cd $(DESTDIR)$(infodir) && rm -f $$file $$file-[0-9] $$file-[0-9][0-9]); \
609 done
610
611dist-info: $(INFO_DEPS)
612 list='$(INFO_DEPS)'; \
613 for base in $$list; do \
614 if test -f $$base; then d=.; else d=$(srcdir); fi; \
615 for file in `cd $$d && eval echo $$base*`; do \
616 test -f $(distdir)/$$file \
617 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
618 || cp -p $$d/$$file $(distdir)/$$file; \
619 done; \
620 done
621
622mostlyclean-aminfo:
623 -rm -f ld.aux ld.cp ld.cps ld.dvi ld.fn ld.fns ld.ky ld.kys ld.ps \
624 ld.log ld.pg ld.toc ld.tp ld.tps ld.vr ld.vrs ld.op ld.tr \
625 ld.cv ld.cn
626
627clean-aminfo:
628
629distclean-aminfo:
630
631maintainer-clean-aminfo:
632 for i in $(INFO_DEPS); do \
633 rm -f $$i; \
634 if test "`echo $$i-[0-9]*`" != "$$i-[0-9]*"; then \
635 rm -f $$i-[0-9]*; \
636 fi; \
637 done
638clean-info: mostlyclean-aminfo
639
640install-man1:
641 $(mkinstalldirs) $(DESTDIR)$(man1dir)
642 @list='$(man1_MANS)'; \
643 l2='$(man_MANS)'; for i in $$l2; do \
644 case "$$i" in \
645 *.1*) list="$$list $$i" ;; \
646 esac; \
647 done; \
648 for i in $$list; do \
649 if test -f $(srcdir)/$$i; then file=$(srcdir)/$$i; \
650 else file=$$i; fi; \
651 ext=`echo $$i | sed -e 's/^.*\\.//'`; \
652 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
653 inst=`echo $$inst | sed '$(transform)'`.$$ext; \
654 echo " $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst"; \
655 $(INSTALL_DATA) $$file $(DESTDIR)$(man1dir)/$$inst; \
656 done
657
658uninstall-man1:
659 @list='$(man1_MANS)'; \
660 l2='$(man_MANS)'; for i in $$l2; do \
661 case "$$i" in \
662 *.1*) list="$$list $$i" ;; \
663 esac; \
664 done; \
665 for i in $$list; do \
666 ext=`echo $$i | sed -e 's/^.*\\.//'`; \
667 inst=`echo $$i | sed -e 's/\\.[0-9a-z]*$$//'`; \
668 inst=`echo $$inst | sed '$(transform)'`.$$ext; \
669 echo " rm -f $(DESTDIR)$(man1dir)/$$inst"; \
670 rm -f $(DESTDIR)$(man1dir)/$$inst; \
671 done
672install-man: $(MANS)
673 @$(NORMAL_INSTALL)
674 $(MAKE) $(AM_MAKEFLAGS) install-man1
675uninstall-man:
676 @$(NORMAL_UNINSTALL)
677 $(MAKE) $(AM_MAKEFLAGS) uninstall-man1
678
679# This directory's subdirectories are mostly independent; you can cd
680# into them and run `make' without going through this Makefile.
681# To change the values of `make' variables: instead of editing Makefiles,
682# (1) if the variable is set in `config.status', edit `config.status'
683# (which will cause the Makefiles to be regenerated when you run `make');
684# (2) otherwise, pass the desired values on the `make' command line.
685
686@SET_MAKE@
687
688all-recursive install-data-recursive install-exec-recursive \
689installdirs-recursive install-recursive uninstall-recursive install-info-recursive \
690check-recursive installcheck-recursive info-recursive dvi-recursive:
691 @set fnord $(MAKEFLAGS); amf=$$2; \
692 dot_seen=no; \
693 target=`echo $@ | sed s/-recursive//`; \
694 list='$(SUBDIRS)'; for subdir in $$list; do \
695 echo "Making $$target in $$subdir"; \
696 if test "$$subdir" = "."; then \
697 dot_seen=yes; \
698 local_target="$$target-am"; \
699 else \
700 local_target="$$target"; \
701 fi; \
702 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
703 || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
704 done; \
705 if test "$$dot_seen" = "no"; then \
706 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
707 fi; test -z "$$fail"
708
709mostlyclean-recursive clean-recursive distclean-recursive \
710maintainer-clean-recursive:
711 @set fnord $(MAKEFLAGS); amf=$$2; \
712 dot_seen=no; \
713 rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \
714 rev="$$subdir $$rev"; \
715 test "$$subdir" = "." && dot_seen=yes; \
716 done; \
717 test "$$dot_seen" = "no" && rev=". $$rev"; \
718 target=`echo $@ | sed s/-recursive//`; \
719 for subdir in $$rev; do \
720 echo "Making $$target in $$subdir"; \
721 if test "$$subdir" = "."; then \
722 local_target="$$target-am"; \
723 else \
724 local_target="$$target"; \
725 fi; \
726 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
727 || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
728 done && test -z "$$fail"
729tags-recursive:
730 list='$(SUBDIRS)'; for subdir in $$list; do \
731 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
732 done
733
734tags: TAGS
735
736ID: $(HEADERS) $(SOURCES) $(LISP)
737 list='$(SOURCES) $(HEADERS)'; \
738 unique=`for i in $$list; do echo $$i; done | \
739 awk ' { files[$$0] = 1; } \
740 END { for (i in files) print i; }'`; \
741 here=`pwd` && cd $(srcdir) \
742 && mkid -f$$here/ID $$unique $(LISP)
743
744TAGS: tags-recursive $(HEADERS) $(SOURCES) config.in $(TAGS_DEPENDENCIES) $(LISP)
745 tags=; \
746 here=`pwd`; \
747 list='$(SUBDIRS)'; for subdir in $$list; do \
748 if test "$$subdir" = .; then :; else \
749 test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \
750 fi; \
751 done; \
752 list='$(SOURCES) $(HEADERS)'; \
753 unique=`for i in $$list; do echo $$i; done | \
754 awk ' { files[$$0] = 1; } \
755 END { for (i in files) print i; }'`; \
756 test -z "$(ETAGS_ARGS)config.in$$unique$(LISP)$$tags" \
757 || (cd $(srcdir) && etags $(ETAGS_ARGS) $$tags config.in $$unique $(LISP) -o $$here/TAGS)
758
759mostlyclean-tags:
760
761clean-tags:
762
763distclean-tags:
764 -rm -f TAGS ID
765
766maintainer-clean-tags:
767
768distdir = $(PACKAGE)-$(VERSION)
769top_distdir = $(distdir)
770
771# This target untars the dist file and tries a VPATH configuration. Then
772# it guarantees that the distribution is self-contained by making another
773# tarfile.
774distcheck: dist
775 -rm -rf $(distdir)
776 GZIP=$(GZIP_ENV) $(TAR) zxf $(distdir).tar.gz
777 mkdir $(distdir)/=build
778 mkdir $(distdir)/=inst
779 dc_install_base=`cd $(distdir)/=inst && pwd`; \
780 cd $(distdir)/=build \
781 && ../configure --srcdir=.. --prefix=$$dc_install_base \
782 && $(MAKE) $(AM_MAKEFLAGS) \
783 && $(MAKE) $(AM_MAKEFLAGS) dvi \
784 && $(MAKE) $(AM_MAKEFLAGS) check \
785 && $(MAKE) $(AM_MAKEFLAGS) install \
786 && $(MAKE) $(AM_MAKEFLAGS) installcheck \
787 && $(MAKE) $(AM_MAKEFLAGS) dist
788 -rm -rf $(distdir)
789 @banner="$(distdir).tar.gz is ready for distribution"; \
790 dashes=`echo "$$banner" | sed s/./=/g`; \
791 echo "$$dashes"; \
792 echo "$$banner"; \
793 echo "$$dashes"
794dist: distdir
795 -chmod -R a+r $(distdir)
796 GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
797 -rm -rf $(distdir)
798dist-all: distdir
799 -chmod -R a+r $(distdir)
800 GZIP=$(GZIP_ENV) $(TAR) chozf $(distdir).tar.gz $(distdir)
801 -rm -rf $(distdir)
802distdir: $(DISTFILES)
803 -rm -rf $(distdir)
804 mkdir $(distdir)
805 -chmod 777 $(distdir)
806 @for file in $(DISTFILES); do \
807 if test -f $$file; then d=.; else d=$(srcdir); fi; \
808 if test -d $$d/$$file; then \
10e80b41 809 cp -pr $$d/$$file $(distdir)/$$file; \
252b5132
RH
810 else \
811 test -f $(distdir)/$$file \
812 || ln $$d/$$file $(distdir)/$$file 2> /dev/null \
813 || cp -p $$d/$$file $(distdir)/$$file || :; \
814 fi; \
815 done
816 for subdir in $(SUBDIRS); do \
817 if test "$$subdir" = .; then :; else \
818 test -d $(distdir)/$$subdir \
819 || mkdir $(distdir)/$$subdir \
820 || exit 1; \
821 chmod 777 $(distdir)/$$subdir; \
822 (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir=../$(distdir) distdir=../$(distdir)/$$subdir distdir) \
823 || exit 1; \
824 fi; \
825 done
826 $(MAKE) $(AM_MAKEFLAGS) top_distdir="$(top_distdir)" distdir="$(distdir)" dist-info
827
828DEJATOOL = $(PACKAGE)
829
830RUNTESTDEFAULTFLAGS = --tool $(DEJATOOL) --srcdir $$srcdir
831site.exp: Makefile
832 @echo 'Making a new site.exp file...'
833 @test ! -f site.bak || rm -f site.bak
834 @echo '## these variables are automatically generated by make ##' > $@-t
835 @echo '# Do not edit here. If you wish to override these values' >> $@-t
836 @echo '# edit the last section' >> $@-t
837 @echo 'set tool $(DEJATOOL)' >> $@-t
838 @echo 'set srcdir $(srcdir)' >> $@-t
839 @echo 'set objdir' `pwd` >> $@-t
840 @echo 'set host_alias $(host_alias)' >> $@-t
841 @echo 'set host_triplet $(host_triplet)' >> $@-t
842 @echo 'set target_alias $(target_alias)' >> $@-t
843 @echo 'set target_triplet $(target_triplet)' >> $@-t
844 @echo 'set build_alias $(build_alias)' >> $@-t
845 @echo 'set build_triplet $(build_triplet)' >> $@-t
846 @echo '## All variables above are generated by configure. Do Not Edit ##' >> $@-t
847 @test ! -f site.exp || sed '1,/^## All variables above are.*##/ d' site.exp >> $@-t
848 @test ! -f site.exp || mv site.exp site.bak
849 @mv $@-t site.exp
850info-am: $(INFO_DEPS)
851info: info-recursive
852dvi-am: $(DVIS)
853dvi: dvi-recursive
854check-am:
855 $(MAKE) $(AM_MAKEFLAGS) check-DEJAGNU
856check: check-recursive
857installcheck-am:
858installcheck: installcheck-recursive
859install-info-am:
860install-info: install-info-recursive
861all-recursive-am: config.h
862 $(MAKE) $(AM_MAKEFLAGS) all-recursive
863
864install-exec-am: install-exec-local
865install-exec: install-exec-recursive
866
867install-data-am: install-man install-data-local
868install-data: install-data-recursive
869
870install-am: all-am
871 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
872install: install-recursive
873uninstall-am: uninstall-man
874uninstall: uninstall-recursive
875all-am: Makefile $(PROGRAMS) $(MANS) config.h
876all-redirect: all-recursive-am
877install-strip:
3336653a 878 $(MAKE) $(AM_MAKEFLAGS) AM_INSTALL_PROGRAM_FLAGS=-s install
252b5132
RH
879installdirs: installdirs-recursive
880installdirs-am:
881 $(mkinstalldirs) $(DESTDIR)$(mandir)/man1
882
883
884mostlyclean-generic:
885 -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
886
887clean-generic:
888 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
889
890distclean-generic:
891 -rm -f Makefile $(CONFIG_CLEAN_FILES)
892 -rm -f config.cache config.log stamp-h stamp-h[0-9]*
893 -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
894
895maintainer-clean-generic:
896 -test -z "ldlexlldgramhldgramc$(MAINTAINERCLEANFILES)" || rm -f ldlexl ldgramh ldgramc $(MAINTAINERCLEANFILES)
897mostlyclean-am: mostlyclean-hdr mostlyclean-noinstPROGRAMS \
898 mostlyclean-compile mostlyclean-libtool \
899 mostlyclean-aminfo mostlyclean-tags mostlyclean-generic \
900 mostlyclean-local
901
902mostlyclean: mostlyclean-recursive
903
904clean-am: clean-hdr clean-noinstPROGRAMS clean-compile clean-libtool \
905 clean-aminfo clean-tags clean-generic mostlyclean-am
906
907clean: clean-recursive
908
909distclean-am: distclean-hdr distclean-noinstPROGRAMS distclean-compile \
910 distclean-libtool distclean-aminfo distclean-tags \
911 distclean-generic clean-am distclean-local
912 -rm -f libtool
913
914distclean: distclean-recursive
915 -rm -f config.status
916
917maintainer-clean-am: maintainer-clean-hdr \
918 maintainer-clean-noinstPROGRAMS \
919 maintainer-clean-compile maintainer-clean-libtool \
920 maintainer-clean-aminfo maintainer-clean-tags \
921 maintainer-clean-generic distclean-am
922 @echo "This command is intended for maintainers to use;"
923 @echo "it deletes files that may require special tools to rebuild."
924
925maintainer-clean: maintainer-clean-recursive
926 -rm -f config.status
927
928.PHONY: mostlyclean-hdr distclean-hdr clean-hdr maintainer-clean-hdr \
929mostlyclean-noinstPROGRAMS distclean-noinstPROGRAMS \
930clean-noinstPROGRAMS maintainer-clean-noinstPROGRAMS \
931mostlyclean-compile distclean-compile clean-compile \
932maintainer-clean-compile mostlyclean-libtool distclean-libtool \
933clean-libtool maintainer-clean-libtool install-info-am uninstall-info \
934mostlyclean-aminfo distclean-aminfo clean-aminfo \
935maintainer-clean-aminfo install-man1 uninstall-man1 install-man \
936uninstall-man install-data-recursive uninstall-data-recursive \
937install-exec-recursive uninstall-exec-recursive installdirs-recursive \
938uninstalldirs-recursive all-recursive check-recursive \
939installcheck-recursive info-recursive dvi-recursive \
940mostlyclean-recursive distclean-recursive clean-recursive \
941maintainer-clean-recursive tags tags-recursive mostlyclean-tags \
942distclean-tags clean-tags maintainer-clean-tags distdir check-DEJAGNU \
943info-am info dvi-am dvi check check-am installcheck-am installcheck \
944install-info-am install-info all-recursive-am install-exec-local \
945install-exec-am install-exec install-data-local install-data-am \
946install-data install-am install uninstall-am uninstall all-redirect \
947all-am all installdirs-am installdirs mostlyclean-generic \
948distclean-generic clean-generic maintainer-clean-generic clean \
949mostlyclean distclean maintainer-clean
950
951
952po/POTFILES.in: @MAINT@ Makefile
953 for file in $(POTFILES); do echo $$file; done | sort > tmp \
954 && mv tmp $(srcdir)/po/POTFILES.in
955
956ldmain.o: ldmain.c config.status
957 $(COMPILE) -c -DDEFAULT_EMULATION='"$(EMUL)"' -DSCRIPTDIR='"$(scriptdir)"' -DTARGET='"@target@"' $(srcdir)/ldmain.c
958
959ldemul-list.h: Makefile
960 (echo "/* This file is automatically generated. DO NOT EDIT! */";\
961 for f in `echo " " ${EMULATION_OFILES} "" \
962 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
963 echo "extern ld_emulation_xfer_type ld_$${f}_emulation;"; \
964 done;\
965 echo "";\
966 echo "#define EMULATION_LIST \\";\
967 for f in `echo " " ${EMULATION_OFILES} "" \
968 | sed -e 's/ e/ ld/g' -e 's/ ld/ /g' -e 's/[.]o//g'`; do \
969 echo " &ld_$${f}_emulation, \\"; \
970 done;\
971 echo " 0") >ldemul-tmp.h
972 mv ldemul-tmp.h ldemul-list.h
597e2591
ILT
973
974stringify.sed: ${srcdir}/emultempl/$(STRINGIFY)
975 cp ${srcdir}/emultempl/$(STRINGIFY) stringify.sed
252b5132
RH
976@TDIRS@
977
978ea29k.c: $(srcdir)/emulparams/a29k.sh \
979 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/a29k.sc ${GEN_DEPENDS}
980 ${GENSCRIPTS} a29k "$(tdir_a29k)"
981eaixppc.c: $(srcdir)/emulparams/aixppc.sh \
982 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
983 ${GENSCRIPTS} aixppc "$(tdir_aixppc)"
984eaixrs6.c: $(srcdir)/emulparams/aixrs6.sh \
985 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
986 ${GENSCRIPTS} aixrs6 "$(tdir_aixrs6)"
987ealpha.c: $(srcdir)/emulparams/alpha.sh \
988 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/alpha.sc ${GEN_DEPENDS}
989 ${GENSCRIPTS} alpha "$(tdir_alpha)"
990earcelf.c: $(srcdir)/emulparams/arcelf.sh \
991 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
992 ${GENSCRIPTS} arcelf "$(tdir_arcelf)"
993earmelf.c: $(srcdir)/emulparams/armelf.sh \
994 $(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
995 ${GENSCRIPTS} armelf "$(tdir_armelf)"
996earmelf_oabi.c: $(srcdir)/emulparams/armelf_oabi.sh \
997 $(srcdir)/emultempl/armelf_oabi.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
998 ${GENSCRIPTS} armelf_oabi "$(tdir_armelf)"
999earmelf_linux.c: $(srcdir)/emulparams/armelf_linux.sh \
1000 $(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1001 ${GENSCRIPTS} armelf_linux "$(tdir_armelf_linux)"
1002earmelf_linux26.c: $(srcdir)/emulparams/armelf_linux26.sh \
1003 $(srcdir)/emultempl/armelf.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1004 ${GENSCRIPTS} armelf_linux26 "$(tdir_armelf_linux26)"
1005earmaoutb.c: $(srcdir)/emulparams/armaoutb.sh \
1006 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
1007 ${GENSCRIPTS} armaoutb "$(tdir_armaoutb)"
1008earmaoutl.c: $(srcdir)/emulparams/armaoutl.sh \
1009 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/armaout.sc ${GEN_DEPENDS}
1010 ${GENSCRIPTS} armaoutl "$(tdir_armaoutl)"
1011earmcoff.c: $(srcdir)/emulparams/armcoff.sh \
1012 $(srcdir)/emultempl/armcoff.em $(srcdir)/scripttempl/armcoff.sc ${GEN_DEPENDS}
1013 ${GENSCRIPTS} armcoff "$(tdir_armcoff)"
8959586a
NC
1014earmnbsd.c: $(srcdir)/emulparams/armnbsd.sh \
1015 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1016 ${GENSCRIPTS} armnbsd "$(tdir_armnbsd)"
cf865442 1017earm_epoc_pe.c: $(srcdir)/emulparams/arm_epoc_pe.sh \
e6869249 1018 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/epocpe.sc ${GEN_DEPENDS}
cf865442 1019 ${GENSCRIPTS} arm_epoc_pe "$(tdir_armpe)"
252b5132
RH
1020earmpe.c: $(srcdir)/emulparams/armpe.sh \
1021 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
1022 ${GENSCRIPTS} armpe "$(tdir_armpe)"
1023ecoff_sparc.c: $(srcdir)/emulparams/coff_sparc.sh \
1024 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparccoff.sc ${GEN_DEPENDS}
1025 ${GENSCRIPTS} coff_sparc "$(tdir_coff_sparc)"
1026ed10velf.c: $(srcdir)/emulparams/d10velf.sh \
1027 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd10v.sc ${GEN_DEPENDS}
1028 ${GENSCRIPTS} d10velf "$(tdir_d10v)"
1029ed30velf.c: $(srcdir)/emulparams/d30velf.sh \
1030 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
1031 ${GENSCRIPTS} d30velf "$(tdir_d30v)"
1032ed30v_o.c: $(srcdir)/emulparams/d30v_o.sh \
1033 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
1034 ${GENSCRIPTS} d30v_o "$(tdir_d30v)"
1035ed30v_e.c: $(srcdir)/emulparams/d30v_e.sh \
1036 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elfd30v.sc ${GEN_DEPENDS}
1037 ${GENSCRIPTS} d30v_e "$(tdir_d30v)"
1038edelta68.c: $(srcdir)/emulparams/delta68.sh \
1039 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/delta68.sc ${GEN_DEPENDS}
1040 ${GENSCRIPTS} delta68 "$(tdir_delta68)"
1041eebmon29k.c: $(srcdir)/emulparams/ebmon29k.sh \
1042 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/ebmon29k.sc ${GEN_DEPENDS}
1043 ${GENSCRIPTS} ebmon29k "$(tdir_ebmon29k)"
1044eelf32fr30.c: $(srcdir)/emulparams/elf32fr30.sh \
1045 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1046 ${GENSCRIPTS} elf32fr30 "$(tdir_fr30)"
71acc4e8
NC
1047eelf32mcore.c: $(srcdir)/emulparams/elf32mcore.sh \
1048 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1049 ${GENSCRIPTS} elf32mcore "$(tdir_mcore)"
252b5132
RH
1050em32relf.c: $(srcdir)/emulparams/m32relf.sh \
1051 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1052 ${GENSCRIPTS} m32relf "$(tdir_m32r)"
1053eelf32_sparc.c: $(srcdir)/emulparams/elf32_sparc.sh \
1054 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1055 ${GENSCRIPTS} elf32_sparc "$(tdir_elf32_sparc)"
0ccf812a
ILT
1056eelf32_i960.c: $(srcdir)/emulparams/elf32_i960.sh \
1057 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1058 ${GENSCRIPTS} elf32_i960 "$(tdir_elf32_i960)"
252b5132
RH
1059eelf32b4300.c: $(srcdir)/emulparams/elf32b4300.sh \
1060 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1061 ${GENSCRIPTS} elf32b4300 "$(tdir_elf32b4300)"
1062eelf32bmip.c: $(srcdir)/emulparams/elf32bmip.sh \
1063 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1064 ${GENSCRIPTS} elf32bmip "$(tdir_elf32bmip)"
1065eelf32bsmip.c: $(srcdir)/emulparams/elf32bsmip.sh \
1066 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1067 ${GENSCRIPTS} elf32bsmip "$(tdir_elf32bsmip)"
1068eelf32ebmip.c: $(srcdir)/emulparams/elf32ebmip.sh \
1069 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1070 ${GENSCRIPTS} elf32ebmip "$(tdir_elf32ebmip)"
1071eelf32elmip.c: $(srcdir)/emulparams/elf32elmip.sh \
1072 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1073 ${GENSCRIPTS} elf32elmip "$(tdir_elf32elmip)"
85f70471
ILT
1074eelf32bmipn32.c: $(srcdir)/emulparams/elf32bmipn32.sh \
1075 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1076 ${GENSCRIPTS} elf32bmipn32 "$(tdir_elf32bmipn32)"
252b5132
RH
1077eelf32l4300.c: $(srcdir)/emulparams/elf32l4300.sh \
1078 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1079 ${GENSCRIPTS} elf32l4300 "$(tdir_elf32l4300)"
1080eelf32lmip.c: $(srcdir)/emulparams/elf32lmip.sh \
1081 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1082 ${GENSCRIPTS} elf32lmip "$(tdir_elf32lmip)"
1083eelf32lppc.c: $(srcdir)/emulparams/elf32lppc.sh \
1084 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
1085 ${GENSCRIPTS} elf32lppc "$(tdir_elf32lppc)"
1086eelf32lsmip.c: $(srcdir)/emulparams/elf32lsmip.sh \
1087 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1088 ${GENSCRIPTS} elf32lsmip "$(tdir_elf32lsmip)"
1089eelf32ppc.c: $(srcdir)/emulparams/elf32ppc.sh \
1090 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
1091 ${GENSCRIPTS} elf32ppc "$(tdir_elf32ppc)"
ec2f040d
RH
1092eelf32ppclinux.c: $(srcdir)/emulparams/elf32ppclinux.sh \
1093 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elfppc.sc ${GEN_DEPENDS}
1094 ${GENSCRIPTS} elf32ppclinux "$(tdir_elf32ppclinux)"
252b5132
RH
1095eelf64alpha.c: $(srcdir)/emulparams/elf64alpha.sh \
1096 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1097 ${GENSCRIPTS} elf64alpha "$(tdir_elf64alpha)"
f6e143a1
JL
1098eelf64hppa.c: $(srcdir)/emulparams/elf64hppa.sh \
1099 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1100 ${GENSCRIPTS} elf64hppa "$(tdir_elf64hppa)"
252b5132
RH
1101eelf64_sparc.c: $(srcdir)/emulparams/elf64_sparc.sh \
1102 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1103 ${GENSCRIPTS} elf64_sparc "$(tdir_elf64_sparc)"
22c675a7
MM
1104eelf64bmip.c: $(srcdir)/emulparams/elf64bmip.sh \
1105 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1106 ${GENSCRIPTS} elf64bmip "$(tdir_elf64bmip)"
252b5132
RH
1107eelf_i386.c: $(srcdir)/emulparams/elf_i386.sh \
1108 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1109 ${GENSCRIPTS} elf_i386 "$(tdir_elf_i386)"
1110eelf_i386_be.c: $(srcdir)/emulparams/elf_i386_be.sh \
1111 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1112 ${GENSCRIPTS} elf_i386_be "$(tdir_elf_i386_be)"
1113egld960.c: $(srcdir)/emulparams/gld960.sh \
1114 $(srcdir)/emultempl/gld960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
1115 ${GENSCRIPTS} gld960 "$(tdir_gld960)"
1116egld960coff.c: $(srcdir)/emulparams/gld960coff.sh \
1117 $(srcdir)/emultempl/gld960c.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
1118 ${GENSCRIPTS} gld960coff "$(tdir_gld960coff)"
252b5132
RH
1119eh8300.c: $(srcdir)/emulparams/h8300.sh \
1120 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300.sc ${GEN_DEPENDS}
1121 ${GENSCRIPTS} h8300 "$(tdir_h8300)"
1122eh8300h.c: $(srcdir)/emulparams/h8300h.sh \
1123 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300h.sc ${GEN_DEPENDS}
1124 ${GENSCRIPTS} h8300h "$(tdir_h8300h)"
1125eh8300s.c: $(srcdir)/emulparams/h8300s.sh \
1126 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8300s.sc ${GEN_DEPENDS}
1127 ${GENSCRIPTS} h8300s "$(tdir_h8300s)"
1128eh8500.c: $(srcdir)/emulparams/h8500.sh \
1129 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500.sc ${GEN_DEPENDS}
1130 ${GENSCRIPTS} h8500 "$(tdir_h8500)"
1131eh8500b.c: $(srcdir)/emulparams/h8500b.sh \
1132 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500b.sc ${GEN_DEPENDS}
1133 ${GENSCRIPTS} h8500b "$(tdir_h8500b)"
1134eh8500c.c: $(srcdir)/emulparams/h8500c.sh \
1135 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500c.sc ${GEN_DEPENDS}
1136 ${GENSCRIPTS} h8500c "$(tdir_h8500c)"
1137eh8500m.c: $(srcdir)/emulparams/h8500m.sh \
1138 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500m.sc ${GEN_DEPENDS}
1139 ${GENSCRIPTS} h8500m "$(tdir_h8500m)"
1140eh8500s.c: $(srcdir)/emulparams/h8500s.sh \
1141 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/h8500s.sc ${GEN_DEPENDS}
1142 ${GENSCRIPTS} h8500s "$(tdir_h8500s)"
1143ehp300bsd.c: $(srcdir)/emulparams/hp300bsd.sh \
1144 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1145 ${GENSCRIPTS} hp300bsd "$(tdir_hp300bsd)"
1146ehp3hpux.c: $(srcdir)/emulparams/hp3hpux.sh \
1147 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1148 ${GENSCRIPTS} hp3hpux "$(tdir_hp3hpux)"
1149ehppaelf.c: $(srcdir)/emulparams/hppaelf.sh \
1150 $(srcdir)/emultempl/hppaelf.em $(srcdir)/scripttempl/hppaelf.sc ${GEN_DEPENDS}
1151 ${GENSCRIPTS} hppaelf "$(tdir_hppaelf)"
1152ei386aout.c: $(srcdir)/emulparams/i386aout.sh \
1153 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1154 ${GENSCRIPTS} i386aout "$(tdir_i386aout)"
1155ei386beos.c: $(srcdir)/emulparams/i386beos.sh \
1156 $(srcdir)/emultempl/beos.em $(srcdir)/scripttempl/i386beos.sc ${GEN_DEPENDS}
1157 ${GENSCRIPTS} i386beos "$(tdir_i386beos)"
1158ei386bsd.c: $(srcdir)/emulparams/i386bsd.sh \
1159 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1160 ${GENSCRIPTS} i386bsd "$(tdir_i386bsd)"
1161ei386coff.c: $(srcdir)/emulparams/i386coff.sh \
1162 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386coff.sc ${GEN_DEPENDS}
1163 ${GENSCRIPTS} i386coff "$(tdir_i386coff)"
1164ei386go32.c: $(srcdir)/emulparams/i386go32.sh \
1165 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386go32.sc ${GEN_DEPENDS}
1166 ${GENSCRIPTS} i386go32 "$(tdir_i386go32)"
1167ei386linux.c: $(srcdir)/emulparams/i386linux.sh \
1168 $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1169 ${GENSCRIPTS} i386linux "$(tdir_i386linux)"
1170ei386lynx.c: $(srcdir)/emulparams/i386lynx.sh \
1171 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386lynx.sc ${GEN_DEPENDS}
1172 ${GENSCRIPTS} i386lynx "$(tdir_i386lynx)"
1173ei386mach.c: $(srcdir)/emulparams/i386mach.sh \
1174 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1175 ${GENSCRIPTS} i386mach "$(tdir_i386mach)"
1176ei386moss.c: $(srcdir)/emulparams/i386moss.sh \
1177 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1178 ${GENSCRIPTS} i386moss "$(tdir_i386moss)"
1179ei386msdos.c: $(srcdir)/emulparams/i386msdos.sh \
1180 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/i386msdos.sc ${GEN_DEPENDS}
1181 ${GENSCRIPTS} i386msdos "$(tdir_i386msdos)"
1182ei386nbsd.c: $(srcdir)/emulparams/i386nbsd.sh \
1183 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1184 ${GENSCRIPTS} i386nbsd "$(tdir_i386nbsd)"
1185ei386nw.c: $(srcdir)/emulparams/i386nw.sh \
1186 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
1187 ${GENSCRIPTS} i386nw "$(tdir_i386nw)"
1188ei386pe.c: $(srcdir)/emulparams/i386pe.sh \
1189 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
1190 ${GENSCRIPTS} i386pe "$(tdir_i386pe)"
a7e78dae
ILT
1191ei386pe_posix.c: $(srcdir)/emulparams/i386pe_posix.sh \
1192 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
1193 ${GENSCRIPTS} i386pe_posix "$(tdir_i386pe_posix)"
252b5132
RH
1194elnk960.c: $(srcdir)/emulparams/lnk960.sh \
1195 $(srcdir)/emultempl/lnk960.em $(srcdir)/scripttempl/i960.sc ${GEN_DEPENDS}
1196 ${GENSCRIPTS} lnk960 "$(tdir_lnk960)"
1197em68k4knbsd.c: $(srcdir)/emulparams/m68k4knbsd.sh \
1198 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1199 ${GENSCRIPTS} m68k4knbsd "$(tdir_m68k4knbsd)"
1200em68kaout.c: $(srcdir)/emulparams/m68kaout.sh \
1201 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1202 ${GENSCRIPTS} m68kaout "$(tdir_m68kaout)"
1203em68kaux.c: $(srcdir)/emulparams/m68kaux.sh \
1204 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kaux.sc ${GEN_DEPENDS}
1205 ${GENSCRIPTS} m68kaux "$(tdir_m68kaux)"
1206em68kcoff.c: $(srcdir)/emulparams/m68kcoff.sh \
1207 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68kcoff.sc ${GEN_DEPENDS}
1208 ${GENSCRIPTS} m68kcoff "$(tdir_m68kcoff)"
1209em68kelf.c: $(srcdir)/emulparams/m68kelf.sh \
1210 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1211 ${GENSCRIPTS} m68kelf "$(tdir_m68kelf)"
1212em68klinux.c: $(srcdir)/emulparams/m68klinux.sh \
1213 $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1214 ${GENSCRIPTS} m68klinux "$(tdir_m68klinux)"
1215em68klynx.c: $(srcdir)/emulparams/m68klynx.sh \
1216 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m68klynx.sc ${GEN_DEPENDS}
1217 ${GENSCRIPTS} m68klynx "$(tdir_m68klynx)"
1218em68knbsd.c: $(srcdir)/emulparams/m68knbsd.sh \
1219 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1220 ${GENSCRIPTS} m68knbsd "$(tdir_m68knbsd)"
1221em68kpsos.c: $(srcdir)/emulparams/m68kpsos.sh \
1222 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/psos.sc ${GEN_DEPENDS}
1223 ${GENSCRIPTS} m68kpsos "$(tdir_m68kpsos)"
1224em88kbcs.c: $(srcdir)/emulparams/m88kbcs.sh \
1225 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/m88kbcs.sc ${GEN_DEPENDS}
1226 ${GENSCRIPTS} m88kbcs "$(tdir_m88kbcs)"
71acc4e8
NC
1227emcorepe.c: $(srcdir)/emulparams/mcorepe.sh \
1228 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/pe.sc ${GEN_DEPENDS}
1229 ${GENSCRIPTS} mcorepe "$(tdir_mcorepe)"
252b5132
RH
1230emipsbig.c: $(srcdir)/emulparams/mipsbig.sh \
1231 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
1232 ${GENSCRIPTS} mipsbig
1233emipsbsd.c: $(srcdir)/emulparams/mipsbsd.sh \
1234 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mipsbsd.sc ${GEN_DEPENDS}
1235 ${GENSCRIPTS} mipsbsd
1236emipsidt.c: $(srcdir)/emulparams/mipsidt.sh \
1237 $(srcdir)/emultempl/mipsecoff.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
1238 ${GENSCRIPTS} mipsidt "$(tdir_mipsidt)"
1239emipsidtl.c: $(srcdir)/emulparams/mipsidtl.sh \
1240 $(srcdir)/emultempl/mipsecoff.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
1241 ${GENSCRIPTS} mipsidtl "$(tdir_mipsidtl)"
1242emipslit.c: $(srcdir)/emulparams/mipslit.sh \
1243 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
1244 ${GENSCRIPTS} mipslit "$(tdir_mipslit)"
1245emipslnews.c: $(srcdir)/emulparams/mipslnews.sh \
1246 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/mips.sc ${GEN_DEPENDS}
1247 ${GENSCRIPTS} mipslnews
1248emn10300.c: $(srcdir)/emulparams/mn10300.sh \
1249 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1250 ${GENSCRIPTS} mn10300 "$(tdir_mn10300)"
1251emn10200.c: $(srcdir)/emulparams/mn10200.sh \
1252 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1253 ${GENSCRIPTS} mn10200 "$(tdir_mn10200)"
1254enews.c: $(srcdir)/emulparams/news.sh \
1255 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1256 ${GENSCRIPTS} news "$(tdir_news)"
1257ens32knbsd.c: $(srcdir)/emulparams/ns32knbsd.sh \
1258 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1259 ${GENSCRIPTS} ns32knbsd "$(tdir_ns32knbsd)"
1260epc532macha.c: $(srcdir)/emulparams/pc532macha.sh \
1261 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1262 ${GENSCRIPTS} pc532macha "$(tdir_pc532macha)"
c6c8c6dc
ILT
1263epjelf.c: $(srcdir)/emulparams/pjelf.sh \
1264 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1265 ${GENSCRIPTS} pjelf "$(tdir_pjelf)"
1266epjlelf.c: $(srcdir)/emulparams/pjlelf.sh \
1267 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1268 ${GENSCRIPTS} pjlelf "$(tdir_pjlelf)"
252b5132
RH
1269eppcmacos.c: $(srcdir)/emulparams/ppcmacos.sh \
1270 $(srcdir)/emultempl/aix.em $(srcdir)/scripttempl/aix.sc ${GEN_DEPENDS}
1271 ${GENSCRIPTS} ppcmacos "$(tdir_ppcmacos)"
1272eppcnw.c: $(srcdir)/emulparams/ppcnw.sh \
1273 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/nw.sc ${GEN_DEPENDS}
1274 ${GENSCRIPTS} ppcnw "$(tdir_ppcnw)"
1275eppcpe.c: $(srcdir)/emulparams/ppcpe.sh \
1276 $(srcdir)/emultempl/pe.em $(srcdir)/scripttempl/ppcpe.sc ${GEN_DEPENDS}
1277 ${GENSCRIPTS} ppcpe "$(tdir_ppcpe)"
1278eriscix.c: $(srcdir)/emulparams/riscix.sh \
1279 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1280 ${GENSCRIPTS} riscix "$(tdir_riscix)"
1281esa29200.c: $(srcdir)/emulparams/sa29200.sh \
1282 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sa29200.sc ${GEN_DEPENDS}
1283 ${GENSCRIPTS} sa29200 "$(tdir_sa29200)"
1284esh.c: $(srcdir)/emulparams/sh.sh \
1285 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
1286 ${GENSCRIPTS} sh "$(tdir_sh)"
1287eshelf.c: $(srcdir)/emulparams/shelf.sh \
1288 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1289 ${GENSCRIPTS} shelf "$(tdir_shelf)"
1290eshlelf.c: $(srcdir)/emulparams/shlelf.sh \
1291 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/elf.sc ${GEN_DEPENDS}
1292 ${GENSCRIPTS} shlelf "$(tdir_shlelf)"
1293eshl.c: $(srcdir)/emulparams/shl.sh \
1294 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sh.sc ${GEN_DEPENDS}
1295 ${GENSCRIPTS} shl "$(tdir_shl)"
1296esparcaout.c: $(srcdir)/emulparams/sparcaout.sh \
1297 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1298 ${GENSCRIPTS} sparcaout "$(tdir_sparcaout)"
1299esparclinux.c: $(srcdir)/emulparams/sparclinux.sh \
1300 $(srcdir)/emultempl/linux.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1301 ${GENSCRIPTS} sparclinux "$(tdir_sparclinux)"
1302esparclynx.c: $(srcdir)/emulparams/sparclynx.sh \
1303 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/sparclynx.sc ${GEN_DEPENDS}
1304 ${GENSCRIPTS} sparclynx "$(tdir_sparclynx)"
1305esparcnbsd.c: $(srcdir)/emulparams/sparcnbsd.sh \
1306 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1307 ${GENSCRIPTS} sparcnbsd "$(tdir_sparcnbsd)"
1308est2000.c: $(srcdir)/emulparams/st2000.sh \
1309 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/st2000.sc ${GEN_DEPENDS}
1310 ${GENSCRIPTS} st2000 "$(tdir_st2000)"
1311esun3.c: $(srcdir)/emulparams/sun3.sh \
1312 $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1313 ${GENSCRIPTS} sun3 "$(tdir_sun3)"
1314esun4.c: $(srcdir)/emulparams/sun4.sh \
1315 $(srcdir)/emultempl/sunos.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1316 ${GENSCRIPTS} sun4 "$(tdir_sun4)"
1317etic30aout.c: $(srcdir)/emulparams/tic30aout.sh \
1318 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30aout.sc ${GEN_DEPENDS}
1319 ${GENSCRIPTS} tic30aout "$(tdir_tic30aout)"
1320etic30coff.c: $(srcdir)/emulparams/tic30coff.sh \
1321 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic30coff.sc ${GEN_DEPENDS}
1322 ${GENSCRIPTS} tic30coff "$(tdir_tic30coff)"
1323etic80coff.c: $(srcdir)/emulparams/tic80coff.sh \
1324 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/tic80coff.sc ${GEN_DEPENDS}
1325 ${GENSCRIPTS} tic80coff "$(tdir_tic80coff)"
1326evanilla.c: $(srcdir)/emulparams/vanilla.sh \
1327 $(srcdir)/emultempl/vanilla.em $(srcdir)/scripttempl/vanilla.sc ${GEN_DEPENDS}
1328 ${GENSCRIPTS} vanilla "$(tdir_vanilla)"
1329evax.c: $(srcdir)/emulparams/vax.sh \
1330 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1331 ${GENSCRIPTS} vax "$(tdir_vax)"
1332evsta.c: $(srcdir)/emulparams/vsta.sh \
1333 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/aout.sc ${GEN_DEPENDS}
1334 ${GENSCRIPTS} vsta "$(tdir_vsta)"
1335ev850.c: $(srcdir)/emulparams/v850.sh \
1336 $(srcdir)/emultempl/elf32.em $(srcdir)/scripttempl/v850.sc ${GEN_DEPENDS}
1337 ${GENSCRIPTS} v850 "$(tdir_v850)"
1338ew65.c: $(srcdir)/emulparams/w65.sh \
1339 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/w65.sc ${GEN_DEPENDS}
1340 ${GENSCRIPTS} w65 "$(tdir_w65)"
1341ez8001.c: $(srcdir)/emulparams/z8001.sh \
1342 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
1343 ${GENSCRIPTS} z8001 "$(tdir_z8001)"
1344ez8002.c: $(srcdir)/emulparams/z8002.sh \
1345 $(srcdir)/emultempl/generic.em $(srcdir)/scripttempl/z8000.sc ${GEN_DEPENDS}
1346 ${GENSCRIPTS} z8002 "$(tdir_z8002)"
1347
1348# The generated emulation files mostly have the same dependencies.
1349$(EMULATION_OFILES): ../bfd/bfd.h sysdep.h config.h $(INCDIR)/bfdlink.h \
1350 ld.h ldmain.h ldemul.h ldfile.h ldmisc.h ldexp.h ldlang.h \
1351 ldctor.h ldexp.h ldlang.h ldgram.h
1352
1353check-DEJAGNU: site.exp
1354 srcroot=`cd $(srcdir) && pwd`; export srcroot; \
1355 r=`pwd`; export r; \
1356 EXPECT=$(EXPECT); export EXPECT; \
1357 if [ -f $(top_builddir)/../expect/expect ]; then \
1358 TCL_LIBRARY=`cd $(top_srcdir)/../tcl/library && pwd`; \
1359 export TCL_LIBRARY; \
1360 fi; \
1361 runtest=$(RUNTEST); \
1362 if $(SHELL) -c "$$runtest --version" > /dev/null 2>&1; then \
1363 $$runtest --tool $(DEJATOOL) --srcdir $${srcroot}/testsuite \
1364 CC="$(CC_FOR_TARGET)" CFLAGS="$(CFLAGS)" \
1365 CXX="$(CXX_FOR_TARGET)" CXXFLAGS="$(CXXFLAGS)" \
1366 CC_FOR_HOST="$(CC)" CFLAGS_FOR_HOST="$(CFLAGS)" \
1367 OFILES="$(OFILES)" BFDLIB="$(TESTBFDLIB)" \
1368 LIBIBERTY="$(LIBIBERTY) $(INTLLIBS)" \
1369 $(RUNTESTFLAGS); \
1370 else echo "WARNING: could not find \`runtest'" 1>&2; :;\
1371 fi
1372
1373# Rules for testing by relinking ld itself.
1374# A similar test is in the testsuite. This target is for ease of use
1375# when porting ld.
1376
1377ld-partial.o: ld-new$(EXEEXT)
1378 ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld-partial.o -r $(OFILES)
1379ld1$(EXEEXT): ld-partial.o
1380 ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld1$(EXEEXT) $(HOSTING_CRT0) ld-partial.o $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
1381
1382ld1-full$(EXEEXT): ld-new
1383 ./ld-new$(EXEEXT) $(HOSTING_EMU) -o ld1-full$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
1384
1385ld2$(EXEEXT): ld1$(EXEEXT)
1386 ./ld1$(EXEEXT) $(HOSTING_EMU) -o ld2$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
1387
1388ld3$(EXEEXT): ld2$(EXEEXT)
1389 ./ld2$(EXEEXT) $(HOSTING_EMU) -o ld3$(EXEEXT) $(HOSTING_CRT0) $(OFILES) $(TESTBFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
1390
1391bootstrap: ld3$(EXEEXT)
1392 cmp ld2$(EXEEXT) ld3$(EXEEXT)
1393
1394.PHONY: bootstrap
1395
1396# A test program for C++ constructors and destructors.
1397# This test is now in the testsuite.
1398#
1399#cdtest: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
1400# ./ld.new $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \
1401# cdtest-main.o cdtest-bar.o cdtest-foo.o $(HOSTING_LIBS)
1402#
1403#cdtest.out: cdtest
1404# ./cdtest > cdtest.tmp
1405# mv cdtest.tmp cdtest.out
1406#
1407#cdtest-ur.o: cdtest-main.o cdtest-bar.o cdtest-foo.o ld.new
1408# ./ld.new $(HOSTING_EMU) -o cdtest-ur.o -Ur cdtest-main.o \
1409# cdtest-bar.o cdtest-foo.o
1410#
1411#cdtest-ur: cdtest-ur.o
1412# ./ld.new $(HOSTING_EMU) -o cdtest-ur $(HOSTING_CRT0) cdtest-ur.o \
1413# $(HOSTING_LIBS)
1414#
1415#cdtest-ur.out: cdtest-ur
1416# ./cdtest-ur > cdtest-ur.tmp
1417# mv cdtest-ur.tmp cdtest-ur.out
1418#
1419#check-cdtest: cdtest.out cdtest-ur.out $(srcdir)/cdtest.exp
1420# diff $(srcdir)/cdtest.exp cdtest.out
1421# diff $(srcdir)/cdtest.exp cdtest-ur.out
1422#
1423#.PHONY: check-cdtest
1424
1425# END OF CHECK TARGETS
1426
1427# DOCUMENTATION TARGETS
1428# Manual configuration file; not usually attached to normal configuration,
1429# because almost all configs use "gen" version of manual.
1430# Set DOCVER above to change.
1431configdoc.texi: ${DOCVER}-doc.texi
1432 ln -s ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi >/dev/null 2>&1 \
1433 || ln ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi >/dev/null 2>&1 \
1434 || cp ${srcdir}/${DOCVER}-doc.texi ./configdoc.texi
1435
1436ldver.texi: Makefile
1437 rm -f $@
1438 echo '@set VERSION $(VERSION)' > $@
1439
1440ld.info: $(srcdir)/ld.texinfo configdoc.texi ldver.texi
1441 @rm -f $@ $@-[0-9] $@-[0-9][0-9]
1442 $(MAKEINFO) -I $(srcdir) -I $(BFDDIR)/doc $(srcdir)/ld.texinfo
1443
1444ld.dvi: $(srcdir)/ld.texinfo configdoc.texi ldver.texi
1445 TEXINPUTS=$(top_srcdir)/../texinfo:$$TEXINPUTS \
1446 MAKEINFO="$(MAKEINFO) -I $(srcdir) -I $(BFDDIR)/doc" $(TEXI2DVI) $(srcdir)/ld.texinfo
1447
1448# We want to reconfigure if configure.host or configure.tgt changes.
1449config.status: $(srcdir)/configure $(srcdir)/configure.host $(srcdir)/configure.tgt
1450 $(SHELL) ./config.status --recheck
1451mostlyclean-local:
1452 -rm -rf tmpdir
1453
1454.PHONY: install-exec-local install-data-local
1455
1456install-exec-local: ld-new$(EXEEXT)
1457 $(mkinstalldirs) $(bindir) $(tooldir)/bin
1458 @list='$(noinst_PROGRAMS)'; for p in $$list; do \
1459 if test -f $$p; then \
1460 echo " $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`"; \
1461 $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) $$p $(bindir)/`echo $$p|sed -e 's/$(EXEEXT)$$//' -e 's/-new//'|sed '$(transform)'|sed 's/$$/$(EXEEXT)/'`; \
1462 else :; fi; \
1463 done
1464 n=`echo ld | sed '$(transform)'`; \
1465 if [ "$(bindir)/$$n$(EXEEXT)" != "$(tooldir)/bin/ld$(EXEEXT)" ]; then \
1466 rm -f $(tooldir)/bin/ld$(EXEEXT); \
1467 ln $(bindir)/$$n$(EXEEXT) $(tooldir)/bin/ld$(EXEEXT) >/dev/null 2>/dev/null \
1468 || $(LIBTOOL) --mode=install $(INSTALL_PROGRAM) ld-new$(EXEEXT) $(tooldir)/bin/ld$(EXEEXT); \
1469 fi
1470
1471install-data-local:
1472 $(mkinstalldirs) $(scriptdir)/ldscripts
1473 for f in ldscripts/*; do \
1474 $(INSTALL_DATA) $$f $(scriptdir)/$$f ; \
1475 done
1476diststuff: $(LDDISTSTUFF) info
1477distclean-local:
1478 rm -rf ldscripts
1479
1480# Targets to rebuild dependencies in this Makefile.
f4162f5c
ILT
1481# Have to get rid of DEP1 here so that "$?" later includes all of $(CFILES).
1482DEP: dep.sed $(CFILES) $(HFILES) $(GENERATED_CFILES) $(GENERATED_HFILES) config.h
1483 rm -f DEP1
1484 $(MAKE) MKDEP=$(MKDEP) DEP1
1485 sed -f dep.sed <DEP1 >DEP
252b5132
RH
1486
1487# This rule really wants a mkdep that runs "gcc -MM".
f4162f5c
ILT
1488DEP1: $(CFILES) $(GENERATED_CFILES)
1489 rm -f DEP2
1490 echo '# DO NOT DELETE THIS LINE -- mkdep uses it.' > DEP2
1491 $(MKDEP) -f DEP2 $(INCLUDES) $?
1492 $(srcdir)/../move-if-change DEP2 DEP1
252b5132
RH
1493
1494dep.sed: dep-in.sed config.status
1495 sed <$(srcdir)/dep-in.sed >dep.sed \
1496 -e 's!@INCDIR@!$(INCDIR)!' \
1497 -e 's!@SRCDIR@!$(srcdir)!'
1498
f4162f5c 1499dep: DEP
252b5132 1500 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < Makefile > tmp-Makefile
f4162f5c 1501 cat DEP >> tmp-Makefile
252b5132
RH
1502 $(srcdir)/../move-if-change tmp-Makefile Makefile
1503
f4162f5c 1504dep-in: DEP
252b5132 1505 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.in > tmp-Makefile.in
f4162f5c 1506 cat DEP >> tmp-Makefile.in
252b5132
RH
1507 $(srcdir)/../move-if-change tmp-Makefile.in $(srcdir)/Makefile.in
1508
f4162f5c 1509dep-am: DEP
252b5132 1510 sed -e '/^..DO NOT DELETE THIS LINE/,$$d' < $(srcdir)/Makefile.am > tmp-Makefile.am
f4162f5c 1511 cat DEP >> tmp-Makefile.am
252b5132
RH
1512 $(srcdir)/../move-if-change tmp-Makefile.am $(srcdir)/Makefile.am
1513
1514.PHONY: dep dep-in dep-am
1515
1516# What appears below is generated by a hacked mkdep using gcc -MM.
1517
1518# DO NOT DELETE THIS LINE -- mkdep uses it.
1519# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
1520
1521ldctor.o: ldctor.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1522 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
1523 ld.h ldexp.h ldlang.h ldmisc.h ldgram.h ldmain.h ldctor.h
1524ldemul.o: ldemul.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1525 sysdep.h config.h $(INCDIR)/fopen-same.h ld.h ldemul.h \
1526 ldmisc.h ldexp.h ldlang.h ldfile.h ldmain.h ldemul-list.h
1527ldexp.o: ldexp.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1528 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
1529 ld.h ldmain.h ldmisc.h ldexp.h ldgram.h ldlang.h
1530ldfile.o: ldfile.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1531 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
1532 ld.h ldmisc.h ldexp.h ldlang.h ldfile.h ldmain.h ldgram.h \
1533 ldlex.h ldemul.h
1534ldlang.o: ldlang.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1535 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
1536 $(INCDIR)/obstack.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
1537 ldgram.h ldexp.h ldlang.h ldemul.h ldlex.h ldmisc.h \
f4162f5c 1538 ldctor.h ldfile.h $(INCDIR)/fnmatch.h $(INCDIR)/demangle.h
252b5132
RH
1539ldmain.o: ldmain.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1540 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
1541 $(INCDIR)/progress.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
1542 ldmisc.h ldwrite.h ldgram.h ldexp.h ldlang.h ldemul.h \
1543 ldlex.h ldfile.h ldctor.h
1544ldmisc.o: ldmisc.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1545 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
1546 $(INCDIR)/demangle.h ld.h ldmisc.h ldexp.h ldlang.h \
1547 ldgram.h ldlex.h ldmain.h ldfile.h
1548ldver.o: ldver.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1549 sysdep.h config.h $(INCDIR)/fopen-same.h ld.h ldver.h \
1550 ldemul.h ldmain.h
1551ldwrite.o: ldwrite.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1552 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
1553 $(INCDIR)/libiberty.h ld.h ldexp.h ldlang.h ldwrite.h \
1554 ldmisc.h ldgram.h ldmain.h
1555lexsup.o: lexsup.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1556 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/libiberty.h \
1557 $(INCDIR)/getopt.h $(INCDIR)/bfdlink.h ld.h ldmain.h \
1558 ldmisc.h ldexp.h ldlang.h ldgram.h ldlex.h ldfile.h \
1559 ldver.h ldemul.h
1560mri.o: mri.c ../bfd/bfd.h $(INCDIR)/ansidecl.h sysdep.h \
1561 config.h $(INCDIR)/fopen-same.h ld.h ldexp.h ldlang.h \
1562 ldmisc.h mri.h ldgram.h $(INCDIR)/libiberty.h
1563ldcref.o: ldcref.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1564 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
1565 $(INCDIR)/libiberty.h ld.h ldmain.h ldmisc.h ldexp.h \
1566 ldlang.h
1567pe-dll.o: pe-dll.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1568 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
1569 $(INCDIR)/libiberty.h ld.h ldexp.h ldlang.h ldwrite.h \
1570 ldmisc.h ldgram.h ldmain.h ldemul.h $(INCDIR)/coff/internal.h \
1069dd8d 1571 ../bfd/libcoff.h deffile.h pe-dll.h
252b5132
RH
1572ldgram.o: ldgram.c ../bfd/bfd.h $(INCDIR)/ansidecl.h \
1573 sysdep.h config.h $(INCDIR)/fopen-same.h $(INCDIR)/bfdlink.h \
1574 ld.h ldexp.h ldver.h ldlang.h ldemul.h ldfile.h ldmisc.h \
1575 ldmain.h mri.h ldctor.h ldlex.h
1576ldlex.o: ldlex.c ../bfd/bfd.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1577 ld.h ldgram.h ldmisc.h ldexp.h ldlang.h ldfile.h ldlex.h \
1578 ldmain.h
1579deffilep.o: deffilep.c $(INCDIR)/libiberty.h $(INCDIR)/ansidecl.h \
1580 ../bfd/bfd.h sysdep.h config.h $(INCDIR)/fopen-same.h \
1581 ld.h ldmisc.h deffile.h
1582
1583# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
1584
1585# Tell versions [3.59,3.63) of GNU make to not export all variables.
1586# Otherwise a system limit (for SysV at least) may be exceeded.
1587.NOEXPORT:
This page took 0.123285 seconds and 4 git commands to generate.