mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-01 00:18:15 +01:00
7d0a1bac71
bzero -> memset index -> strchr rindex -> strrchr Use libedit (this should make pppctl a lot more attractive than telnet).
11 lines
215 B
Makefile
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>
|