freebsd-dev/usr.sbin/pppctl/Makefile
Brian Somers 7d0a1bac71 Style police.
bzero -> memset
index -> strchr
rindex -> strrchr
Use libedit (this should make pppctl a lot more attractive than telnet).
1997-11-07 20:20:15 +00:00

11 lines
215 B
Makefile

# $Id: Makefile,v 1.1 1997/06/28 01:04:49 brian Exp $
PROG= pppctl
SRCS= pppctl.c
CFLAGS+=-Wall -Wmissing-prototypes
LDADD+= -ledit -ltermcap
DPADD+= ${LIBEDIT} ${LIBTERMCAP}
MAN8= pppctl.8
.include <bsd.prog.mk>