freebsd-dev/gnu/usr.bin/binutils/Makefile.inc
John Birrell bb91c76f50 Since the makefiles below binutils with the architecture extension
are now included according to the cross-architecture support required,
default the BINDIR for i386 to /usr/libexec/elf here instead of in
all the i386 specific makefiles. For all other architectures, BINDIR
is just /usr/bin.
1998-05-04 21:13:50 +00:00

10 lines
156 B
Makefile

#
# $Id: Makefile.inc,v 1.1.1.1 1998/03/01 23:40:47 jdp Exp $
#
.if ${MACHINE_ARCH} == "i386"
BINDIR?= /usr/libexec/elf
.else
BINDIR?= /usr/bin
.endif