bb91c76f50
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.
10 lines
156 B
Makefile
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
|