Add OpenBSD build support

Remove -Wmissing-prototypes
This commit is contained in:
Brian Somers 1998-08-30 23:53:00 +00:00
parent 11f73a416e
commit 09bc8205a9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=38662

View File

@ -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>