freebsd-skq/usr.bin/who/Makefile
ed 0ff95c5da2 Port who(1) to utmpx.
(Un)fortunately there is no standardized interface to switch between
utmp database files, so we must call ulog_setutxfile() here.

I'm also changing the column widths to magic numbers here. Display
layout should in this case not be derived from structure fields sizes.
Because I don't want struct utmpx ever to become too small, the fields
are too big to reserve all the space.
2009-12-05 20:44:19 +00:00

12 lines
127 B
Makefile

# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $FreeBSD$
PROG= who
WARNS= 6
DPADD= ${LIBULOG}
LDADD= -lulog
.include <bsd.prog.mk>