Add a mechanism for specifying which platforms use UVM and which use

PMAP_NEW, and enable both for NetBSD/alpha.
This commit is contained in:
thorpej 1998-05-04 04:37:33 +00:00
parent 22e3e4691d
commit dae01890b2
1 changed files with 13 additions and 1 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: bsd.own.mk,v 1.64 1998/04/13 12:03:07 lukem Exp $ # $NetBSD: bsd.own.mk,v 1.65 1998/05/04 04:37:33 thorpej Exp $
.if !defined(_BSD_OWN_MK_) .if !defined(_BSD_OWN_MK_)
_BSD_OWN_MK_=1 _BSD_OWN_MK_=1
@ -66,6 +66,18 @@ STRIPFLAG?= -s
# in environments where it's not possible to keep /sys publicly readable) # in environments where it's not possible to keep /sys publicly readable)
#SYS_INCLUDE= symlinks #SYS_INCLUDE= symlinks
# XXX The next two are temporary until the transition to UVM is complete.
# Systems on which UVM is the standard VM system.
.if (${MACHINE} == "alpha")
UVM?= yes
.endif
# Systems that use UVM's new pmap interface.
.if (${MACHINE} == "alpha")
PMAP_NEW?= yes
.endif
# don't try to generate PIC versions of libraries on machines # don't try to generate PIC versions of libraries on machines
# which don't support PIC. # which don't support PIC.
.if (${MACHINE_ARCH} == "vax") || \ .if (${MACHINE_ARCH} == "vax") || \