blob: abf39ee9998befd4c59daca89b4421ce9d447051 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.5 1997/09/21 11:37:46 deraadt Exp $
PROG= nfsd
MAN= nfsd.8
.include <bsd.own.mk> # For KERBEROS
.if (${KERBEROS} == "yes")
CFLAGS+=-DKERBEROS
LDADD+= -lkrb -ldes
DPADD+= ${LIBKRB} ${LIBDES}
.endif
.include <bsd.prog.mk>
|