diff --git a/bin/ps/Makefile b/bin/ps/Makefile index a48e03385ae9..ceb064778f55 100644 --- a/bin/ps/Makefile +++ b/bin/ps/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 1998/02/09 06:25:15 mrg Exp $ +# $NetBSD: Makefile,v 1.20 1998/02/18 03:54:58 perry Exp $ # @(#)Makefile 8.1 (Berkeley) 6/2/93 PROG= ps @@ -14,3 +14,6 @@ BINMODE=2555 .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/lib/libkvm.old/Makefile b/lib/libkvm.old/Makefile index 5a206d160a72..5b826bf686ad 100644 --- a/lib/libkvm.old/Makefile +++ b/lib/libkvm.old/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 1998/02/11 18:30:37 thorpej Exp $ +# $NetBSD: Makefile,v 1.10 1998/02/18 03:55:05 perry Exp $ # from: @(#)Makefile 8.1 (Berkeley) 6/4/93 .PATH: ${.CURDIR}/../libkvm @@ -25,3 +25,6 @@ NOMAN= yes .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/lib/libkvm/Makefile b/lib/libkvm/Makefile index 832b8609c46f..4f7af594b771 100644 --- a/lib/libkvm/Makefile +++ b/lib/libkvm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.23 1998/02/18 01:13:08 thorpej Exp $ +# $NetBSD: Makefile,v 1.24 1998/02/18 03:55:11 perry Exp $ # from: @(#)Makefile 8.1 (Berkeley) 6/4/93 .if (${MACHINE} != "pica") && \ @@ -41,3 +41,6 @@ MLINKS+=kvm_dump.3 kvm_dump_inval.3 .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/libexec/rpc.rstatd/Makefile b/libexec/rpc.rstatd/Makefile index 48758bfff980..8b3aeab0204a 100644 --- a/libexec/rpc.rstatd/Makefile +++ b/libexec/rpc.rstatd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 1998/02/09 06:25:20 mrg Exp $ +# $NetBSD: Makefile,v 1.15 1998/02/18 03:55:19 perry Exp $ PROG = rpc.rstatd .PATH: ${.CURDIR}/../../usr.bin/vmstat @@ -17,3 +17,6 @@ LDADD= -lrpcsvc -lkvm .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/sys/lkm/vfs/miscfs/kernfs/Makefile b/sys/lkm/vfs/miscfs/kernfs/Makefile index 8ccf32d798fd..c12f3a874b8f 100644 --- a/sys/lkm/vfs/miscfs/kernfs/Makefile +++ b/sys/lkm/vfs/miscfs/kernfs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1998/02/11 11:57:21 mrg Exp $ +# $NetBSD: Makefile,v 1.5 1998/02/18 03:55:23 perry Exp $ .include "../Makefile.inc" @@ -17,3 +17,6 @@ SRCS+= kernfs_vfsops.c kernfs_vnops.c .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/sys/lkm/vfs/miscfs/procfs/Makefile b/sys/lkm/vfs/miscfs/procfs/Makefile index 1813c02c7ad2..977b4b17c5fd 100644 --- a/sys/lkm/vfs/miscfs/procfs/Makefile +++ b/sys/lkm/vfs/miscfs/procfs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 1998/02/11 11:57:23 mrg Exp $ +# $NetBSD: Makefile,v 1.6 1998/02/18 03:55:30 perry Exp $ .include "../Makefile.inc" @@ -18,3 +18,6 @@ SRCS+= procfs_vfsops.c procfs_vnops.c .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/sys/lkm/vfs/miscfs/union/Makefile b/sys/lkm/vfs/miscfs/union/Makefile index 69cd6a5c6dc0..8221b228c95f 100644 --- a/sys/lkm/vfs/miscfs/union/Makefile +++ b/sys/lkm/vfs/miscfs/union/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1998/02/11 11:57:22 mrg Exp $ +# $NetBSD: Makefile,v 1.5 1998/02/18 03:55:36 perry Exp $ .include "../Makefile.inc" @@ -17,3 +17,6 @@ SRCS+= union_vfsops.c union_vnops.c union_subr.c .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/usr.bin/systat/Makefile b/usr.bin/systat/Makefile index e4dc83e54ea4..fd9f7b0337b5 100644 --- a/usr.bin/systat/Makefile +++ b/usr.bin/systat/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 1998/02/09 06:25:17 mrg Exp $ +# $NetBSD: Makefile,v 1.12 1998/02/18 03:55:44 perry Exp $ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= systat @@ -19,3 +19,6 @@ BINMODE=2555 .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/usr.bin/vmstat/Makefile b/usr.bin/vmstat/Makefile index ccf24d885419..b7deb672f9af 100644 --- a/usr.bin/vmstat/Makefile +++ b/usr.bin/vmstat/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 1998/02/09 06:25:16 mrg Exp $ +# $NetBSD: Makefile,v 1.17 1998/02/18 03:55:59 perry Exp $ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= vmstat @@ -16,3 +16,6 @@ BINMODE=2555 .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/usr.bin/w/Makefile b/usr.bin/w/Makefile index 45115c78df20..c5418d48307e 100644 --- a/usr.bin/w/Makefile +++ b/usr.bin/w/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 1998/02/09 06:25:18 mrg Exp $ +# $NetBSD: Makefile,v 1.12 1998/02/18 03:56:07 perry Exp $ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= w @@ -18,3 +18,6 @@ LINKS= ${BINDIR}/w ${BINDIR}/uptime .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif diff --git a/usr.sbin/pstat/Makefile b/usr.sbin/pstat/Makefile index d02fa4c5b0ac..9289c2785ecd 100644 --- a/usr.sbin/pstat/Makefile +++ b/usr.sbin/pstat/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.9 1998/02/09 06:25:19 mrg Exp $ +# $NetBSD: Makefile,v 1.10 1998/02/18 03:56:11 perry Exp $ # from: @(#)Makefile 8.1 (Berkeley) 6/6/93 SRCS= pstat.c swaplist.c @@ -19,3 +19,6 @@ CPPFLAGS+=-I${.CURDIR}/../../sbin/swapctl .if defined(UVM) CPPFLAGS+= -DUVM .endif +.if defined(PMAP_NEW) +CPPFLAGS+= -DPMAP_NEW +.endif