diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-04 22:52:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-09-04 22:52:12 +0000 |
commit | c16bf4a0396a8172d77e060332139043e4035240 (patch) | |
tree | 3e0826cfc227cdb2fbd0a56945da60b8afbe51a1 /usr.sbin/rpc.bootparamd | |
parent | 06bac5bee8932a6ff7b0f4046144858d434d8526 (diff) |
permit YP to be compiled out using flag in bsd.own.mk; pr#15, peter@demon.net
Diffstat (limited to 'usr.sbin/rpc.bootparamd')
-rw-r--r-- | usr.sbin/rpc.bootparamd/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/rpc.bootparamd/Makefile b/usr.sbin/rpc.bootparamd/Makefile index 9a275277b92..d984ea4109e 100644 --- a/usr.sbin/rpc.bootparamd/Makefile +++ b/usr.sbin/rpc.bootparamd/Makefile @@ -1,6 +1,10 @@ -# $Id: Makefile,v 1.1 1995/10/18 08:48:05 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/09/04 22:52:09 deraadt Exp $ +.include <bsd.own.mk> + +.if defined(YP) CFLAGS+=-DYP +.endif PROG= rpc.bootparamd SRCS= bootparamd.c bootparam_prot_svc.c |