include <bsd.own.mk> to get MACHINE_CPU and fix conditional

This commit is contained in:
drochner 2002-08-28 12:39:49 +00:00
parent 278bea1a2b
commit 6ec2abba01
1 changed files with 5 additions and 3 deletions

View File

@ -1,16 +1,18 @@
# $NetBSD: Makefile,v 1.14 2002/08/28 07:41:02 gmcgarry Exp $
# $NetBSD: Makefile,v 1.15 2002/08/28 12:39:49 drochner Exp $
SUBDIR+= execve extent getcwd ipf lockf pipe sigtramp sysvmsg sysvsem sysvshm \
unfdpass writev
.include <bsd.own.mk>
.if ${MACHINE_CPU} == "alpha" || \
${MACHINE_CPU} == "i386" || \
${MACHINE_CPU} == "m68k" || \
${MACHINE_CPU} == "powerpc" || \
${MACHINE_CPU} == "hppa" || \
${MACHINE_CPU} == "hppa" || \
${MACHINE_CPU} == "sparc" || \
${MACHINE_CPU} == "sparc64" || \
${MACHINE_CPU} == "vax")
${MACHINE_CPU} == "vax"
SUBDIR+=lock
.endif