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