From c8c066f7e3121cafcf68b47ee96f6fdc19c23cb7 Mon Sep 17 00:00:00 2001 From: John Birrell Date: Mon, 4 May 1998 21:38:46 +0000 Subject: [PATCH] Work out the list of emulations based on the cross-architectures defined. The TARGET is now set from an included makefile. --- gnu/usr.bin/binutils/ld/Makefile | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/gnu/usr.bin/binutils/ld/Makefile b/gnu/usr.bin/binutils/ld/Makefile index 011545f86c6a..de2f404e67e5 100644 --- a/gnu/usr.bin/binutils/ld/Makefile +++ b/gnu/usr.bin/binutils/ld/Makefile @@ -1,5 +1,5 @@ # -# $Id: Makefile,v 1.1 1998/03/12 02:55:20 jdp Exp $ +# $Id: Makefile,v 1.2 1998/05/04 16:31:41 bde Exp $ # .include "../Makefile.inc0" @@ -11,14 +11,25 @@ SCRIPTDIR= /usr/libdata/ldscripts SRCS+= ldcref.c ldctor.c ldemul.c ldexp.c ldfile.c \ ldgram.y ldlang.c ldlex.l ldmain.c ldmisc.c \ ldver.c ldwrite.c lexsup.c mri.c -CFLAGS+= -DDEFAULT_EMULATION=\"${EMULATION}\" CFLAGS+= -DSCRIPTDIR=\"${DESTDIR}/usr/libdata\" -CFLAGS+= -DTARGET=\"${TARGET}\" CFLAGS+= -I${SRCDIR}/ld LDADD+= -L${RELTOP}/libbfd -lbfd LDADD+= -L${RELTOP}/libiberty -liberty CLEANDIRS+= ldscripts +beforedepend: ldemul-list.h + +EMXFR= +EMLST= +.for _e in ${EMS} +EMXFR+= extern ld_emulation_xfer_type ${_e}; +EMLST+= &${_e}, +.endfor + +ldemul-list.h: + echo "${EMXFR}" > ldemul-list.h + echo "#define EMULATION_LIST ${EMLST} 0" >> ldemul-list.h + afterinstall: ${INSTALL} ${COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ ${LDSCRIPTS:S|^|ldscripts/|} ${DESTDIR}${SCRIPTDIR}