blob: 0a7e8a4f8cfee5ead11db8067477c91d570b6d86 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: Makefile,v 1.3 1996/06/23 14:31:55 deraadt Exp $
# $NetBSD: Makefile,v 1.10 1995/03/18 14:58:57 cgd Exp $
PROG= nfsd
MAN= nfsd.8
.include <bsd.own.mk> # For KERBEROS
.if defined(KERBEROS)
CFLAGS+=-DKERBEROS
LDADD+= -lkrb -ldes
DPADD+= ${LIBKRB} ${LIBDES}
.endif
.include <bsd.prog.mk>
|