diff options
author | brian <brian@FreeBSD.org> | 1998-08-30 23:53:00 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1998-08-30 23:53:00 +0000 |
commit | 2f5ba7be7188e8f379e85c6c616a2e88d5d26d7e (patch) | |
tree | 3a61556ce19595df7ffb0e1b2f638aecb97467d0 /usr.sbin | |
parent | 3d41efbe25fb22c3ed2db3fb2850212d9f694337 (diff) | |
download | FreeBSD-src-2f5ba7be7188e8f379e85c6c616a2e88d5d26d7e.zip FreeBSD-src-2f5ba7be7188e8f379e85c6c616a2e88d5d26d7e.tar.gz |
Add OpenBSD build support
Remove -Wmissing-prototypes
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pppctl/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/usr.sbin/pppctl/Makefile b/usr.sbin/pppctl/Makefile index 7e50241..0f4421f 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> |