aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pppctl
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1998-08-30 23:53:00 +0000
committerBrian Somers <brian@FreeBSD.org>1998-08-30 23:53:00 +0000
commit09bc8205a95a3723600ca0c379deeaeaf8e83ae0 (patch)
tree9ca12de7a2f81443cbf1b28eb9b60c4858956245 /usr.sbin/pppctl
parent11f73a416e2ec0096c8c78a60f9b37c34c090baf (diff)
downloadsrc-09bc8205a95a3723600ca0c379deeaeaf8e83ae0.tar.gz
src-09bc8205a95a3723600ca0c379deeaeaf8e83ae0.zip
Add OpenBSD build support
Remove -Wmissing-prototypes
Notes
Notes: svn path=/head/; revision=38662
Diffstat (limited to 'usr.sbin/pppctl')
-rw-r--r--usr.sbin/pppctl/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.sbin/pppctl/Makefile b/usr.sbin/pppctl/Makefile
index 7e502412b695..0f4421fd9262 100644
--- a/usr.sbin/pppctl/Makefile
+++ b/usr.sbin/pppctl/Makefile
@@ -1,10 +1,16 @@
-# $Id: Makefile,v 1.1 1997/06/28 01:04:49 brian Exp $
+# $Id: Makefile,v 1.2 1997/11/07 20:20:12 brian Exp $
PROG= pppctl
SRCS= pppctl.c
-CFLAGS+=-Wall -Wmissing-prototypes
+CFLAGS+=-Wall
LDADD+= -ledit -ltermcap
DPADD+= ${LIBEDIT} ${LIBTERMCAP}
+
+OPSYS!= uname -s
+.if (${OPSYS} == "OpenBSD")
+MAN= pppctl.8
+.else
MAN8= pppctl.8
+.endif
.include <bsd.prog.mk>