mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-05 09:14:03 +00:00
Be consistent in quoting.
This commit is contained in:
parent
816dc28540
commit
dbff1be7a8
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=160578
@ -16,18 +16,18 @@ e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \
|
||||
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${LIBSERACHPATH} \
|
||||
${TOOLS_PREFIX}/usr \
|
||||
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
|
||||
${NATIVE_EMULATION} "" no ${NATIVE_EMULATION} ${TARGET_TUPLE}
|
||||
${NATIVE_EMULATION} "" no ${NATIVE_EMULATION} ${TARGET_TUPLE}
|
||||
|
||||
eelf64alpha.c: emulparams/elf64alpha.sh emultempl/elf32.em \
|
||||
scripttempl/elf.sc genscripts.sh stringify.sed
|
||||
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${LIBSERACHPATH} \
|
||||
${TOOLS_PREFIX}/usr \
|
||||
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
|
||||
${NATIVE_EMULATION} "" no elf64alpha ${TARGET_TUPLE}
|
||||
${NATIVE_EMULATION} "" no elf64alpha ${TARGET_TUPLE}
|
||||
|
||||
ealpha.c: emulparams/alpha.sh emultempl/generic.em scripttempl/alpha.sc \
|
||||
genscripts.sh stringify.sed
|
||||
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${LIBSERACHPATH} \
|
||||
${TOOLS_PREFIX}/usr \
|
||||
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
|
||||
${NATIVE_EMULATION} "" no alpha ${TARGET_TUPLE}
|
||||
${NATIVE_EMULATION} "" no alpha ${TARGET_TUPLE}
|
||||
|
@ -9,7 +9,7 @@ e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \
|
||||
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${LIBSERACHPATH} \
|
||||
${TOOLS_PREFIX}/usr \
|
||||
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
|
||||
"${NATIVE_EMULATION}" "" no ${NATIVE_EMULATION} "${TARGET_TUPLE}"
|
||||
${NATIVE_EMULATION} "" no ${NATIVE_EMULATION} ${TARGET_TUPLE}
|
||||
|
||||
X86_EMULATION= elf_i386_fbsd
|
||||
_i386_path= \"${TOOLS_PREFIX}/usr/lib/i386\"
|
||||
@ -25,4 +25,4 @@ e${X86_EMULATION}.c: emulparams/${X86_EMULATION}.sh emultempl/elf32.em \
|
||||
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${_i386_path} \
|
||||
${TOOLS_PREFIX}/usr \
|
||||
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
|
||||
"${X86_EMULATION}" "" no ${X86_EMULATION} "${TARGET_TUPLE}"
|
||||
${X86_EMULATION} "" no ${X86_EMULATION} ${TARGET_TUPLE}
|
||||
|
@ -9,4 +9,4 @@ e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \
|
||||
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${LIBSERACHPATH} \
|
||||
${TOOLS_PREFIX}/usr \
|
||||
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
|
||||
"${NATIVE_EMULATION}" "" no ${NATIVE_EMULATION} "${TARGET_TUPLE}"
|
||||
${NATIVE_EMULATION} "" no ${NATIVE_EMULATION} ${TARGET_TUPLE}
|
||||
|
@ -9,7 +9,7 @@ e${NATIVE_EMULATION}.c: emulparams/${NATIVE_EMULATION}.sh emultempl/elf32.em \
|
||||
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${LIBSERACHPATH} \
|
||||
${TOOLS_PREFIX}/usr \
|
||||
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
|
||||
"${NATIVE_EMULATION}" "" no ${NATIVE_EMULATION} "${TARGET_TUPLE}"
|
||||
${NATIVE_EMULATION} "" no ${NATIVE_EMULATION} ${TARGET_TUPLE}
|
||||
|
||||
#XXX EMS+= eelf64_ia64
|
||||
|
||||
@ -20,4 +20,4 @@ eelf64_ia64.c: emulparams/elf64_ia64.sh emultempl/elf32.em \
|
||||
sh ${.CURDIR}/genscripts.sh ${SRCDIR}/ld ${LIBSERACHPATH} \
|
||||
${TOOLS_PREFIX}/usr \
|
||||
${HOST} ${TARGET_TUPLE} ${TARGET_TUPLE} \
|
||||
"elf64_ia64" "" no elf64_ia64 ${TARGET_TUPLE}
|
||||
elf64_ia64 "" no elf64_ia64 ${TARGET_TUPLE}
|
||||
|
24
gnu/usr.bin/binutils/libbfd/Makefile.arm
Normal file
24
gnu/usr.bin/binutils/libbfd/Makefile.arm
Normal file
@ -0,0 +1,24 @@
|
||||
# $FreeBSD$
|
||||
|
||||
DEFAULT_VECTOR= bfd_elf32_littlearm_vec
|
||||
|
||||
SRCS+= \
|
||||
cpu-arm.c \
|
||||
elf32.c \
|
||||
elf32-gen.c \
|
||||
elflink.c \
|
||||
elfarm-nabi.c \
|
||||
elfarm-oabi.c \
|
||||
elf32-arm-fbsd.c \
|
||||
elf32-target.h
|
||||
VECS+= ${DEFAULT_VECTOR} \
|
||||
bfd_elf32_bigarm_vec
|
||||
|
||||
.if ${TARGET_ARCH} == "arm"
|
||||
CFLAGS+= -DDEFAULT_VECTOR=${DEFAULT_VECTOR}
|
||||
.endif
|
||||
|
||||
CLEANFILES+= elf32-arm-fbsd.c
|
||||
|
||||
elf32-arm-fbsd.c: elfarm-nabi.c
|
||||
cat ${.ALLSRC} | sed s/ELFOSABI_ARM/ELFOSABI_FREEBSD/g >${.TARGET}
|
4
gnu/usr.bin/binutils/libopcodes/Makefile.arm
Normal file
4
gnu/usr.bin/binutils/libopcodes/Makefile.arm
Normal file
@ -0,0 +1,4 @@
|
||||
# $FreeBSD$
|
||||
|
||||
SRCS+= arm-dis.c
|
||||
CFLAGS+= -DARCH_arm
|
Loading…
Reference in New Issue
Block a user