NetBSD/usr.bin/w/Makefile
jdolecek f8031c2d6d add code to recognize special ftpd utmp entries and match corresponding
process accordingly, so that w parses entries made by "ftpd -U" correctly

the new code is conditionalized upon define SUPPORT_FTPD_UTMP, turned
on by default in w(1)'s Makefile

This addresses bin/11095 by Daniel Hagerty.
2000-09-28 18:20:29 +00:00

15 lines
320 B
Makefile

# $NetBSD: Makefile,v 1.16 2000/09/28 18:20:29 jdolecek Exp $
# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= w
SRCS= fmt.c pr_time.c proc_compare.c w.c
MAN= w.1 uptime.1
DPADD= ${LIBKVM}
LDADD= -lkvm
LINKS= ${BINDIR}/w ${BINDIR}/uptime
CPPFLAGS+= -DSUPPORT_FTPD_UTMP
.PATH: ${.CURDIR}/../../bin/ps
.include <bsd.prog.mk>