add -DPMAP_NEW if PMAP_NEW is on in mk.conf

This commit is contained in:
perry 1998-02-18 03:54:58 +00:00
parent 4cbc9ecd8e
commit ba7b5f16ff
11 changed files with 44 additions and 11 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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