bd76376f80
Because our implementation guarantees the strings inside struct utmpx to be null terminated, we don't need to copy everything out, which makes the code nicer to read. Also set WARNS to 6 and add $FreeBSD$ to keep SVN silent.
15 lines
176 B
Makefile
15 lines
176 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= wall
|
|
SRCS= ttymsg.c wall.c
|
|
BINGRP= tty
|
|
BINMODE=2555
|
|
|
|
WARNS?= 6
|
|
|
|
DPADD= ${LIBULOG}
|
|
LDADD= -lulog
|
|
|
|
.include <bsd.prog.mk>
|