summaryrefslogtreecommitdiffstats
path: root/gnu
diff options
context:
space:
mode:
authorjb <jb@FreeBSD.org>1998-05-04 21:38:46 +0000
committerjb <jb@FreeBSD.org>1998-05-04 21:38:46 +0000
commitbbfea6ea5020bf01c9c42acaafbf2b18c9970f76 (patch)
tree37833f18050382f99d8f532a87d1c7791dd947bb /gnu
parentb589c58ec23d8729c59a0fa1cfd33b369a5956e6 (diff)
downloadFreeBSD-src-bbfea6ea5020bf01c9c42acaafbf2b18c9970f76.zip
FreeBSD-src-bbfea6ea5020bf01c9c42acaafbf2b18c9970f76.tar.gz
Work out the list of emulations based on the cross-architectures
defined. The TARGET is now set from an included makefile.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/usr.bin/binutils/ld/Makefile17
1 files changed, 14 insertions, 3 deletions
diff --git a/gnu/usr.bin/binutils/ld/Makefile b/gnu/usr.bin/binutils/ld/Makefile
index 011545f..de2f404 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}
OpenPOWER on IntegriCloud