a30235a4c3
This allows users to install or not kerberos related utilities and libs. Differential Revision: https://reviews.freebsd.org/D31801
18 lines
309 B
Makefile
18 lines
309 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= kerberos
|
|
|
|
PROG= string2key
|
|
MAN= string2key.8
|
|
CFLAGS+= -I${KRB5DIR}/kdc \
|
|
-I${KRB5DIR}/lib/asn1 \
|
|
-I${KRB5DIR}/lib/krb5 \
|
|
-I${KRB5DIR}/lib/roken \
|
|
-I${KRB5DIR}/lib/windc \
|
|
-I${SRCTOP}/contrib/com_err
|
|
LIBADD= krb5 roken crypto vers
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB5DIR}/kdc
|