Work out the list of emulations based on the cross-architectures

defined. The TARGET is now set from an included makefile.
This commit is contained in:
John Birrell 1998-05-04 21:38:46 +00:00
parent a9ab354c8d
commit c8c066f7e3
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35717

View file

@ -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}