NetBSD/usr.bin/pmap/Makefile
atatat a26b7f4d29 Make pmap work on LOCKDEBUG *and* non-LOCKDEBUG kernels (previously it
would fail in spectacular ways on LOCKDEBUG kernels) by compiling the
groveler code twice (the second time with LOCKDEBUG defined so that
the appropriate structures get larger in the right way).  We currently
decide if we are operating on a kernel with LOCKDEBUG enabled if the
kernel's vm_map has referential integrity between a few pointers
and/or values.

Also, if you use more than one -v, you get a * on a line by itself in
between gaps in entries.  It makes finding gaps much easier visually.
2003-01-08 20:25:12 +00:00

11 lines
187 B
Makefile

# $NetBSD: Makefile,v 1.2 2003/01/08 20:25:12 atatat Exp $
PROG= pmap
SRCS= main.c pmap.c pmap_ld.c
BINGRP= kmem
BINMODE= 2555
LDADD= -lkvm
DPADD= ${LIBKVM}
.include <bsd.prog.mk>