[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / w

File: [local] / src / usr.bin / w / Makefile (download)

Revision 1.4, Sun Mar 25 20:11:08 2001 UTC (23 years, 2 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.3: +5 -1 lines

Add -DUVM if we are using UVM.  Fixes problem where the "WHAT" field
was empty on current i386 and alpha kernels.

#	$OpenBSD: Makefile,v 1.4 2001/03/25 20:11:08 millert Exp $

PROG=	w
SRCS=	fmt.c pr_time.c proc_compare.c w.c
MAN=	w.1 uptime.1
DPADD=	${LIBKVM}
LDADD=	-lkvm
BINGRP=	kmem
BINMODE=2555
LINKS=	${BINDIR}/w ${BINDIR}/uptime

.PATH: ${.CURDIR}/../../bin/ps

.include <bsd.prog.mk>

.if (${UVM:L} == "yes")
CFLAGS+=-DUVM
.endif