mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-27 11:20:58 +01:00
a30235a4c3
This allows users to install or not kerberos related utilities and libs. Differential Revision: https://reviews.freebsd.org/D31801
20 lines
378 B
Makefile
20 lines
378 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= kerberos
|
|
|
|
PROG= digest-service
|
|
MAN=
|
|
CFLAGS+= -I${KRB5DIR}/kdc \
|
|
-I${KRB5DIR}/lib/asn1 \
|
|
-I${KRB5DIR}/lib/krb5 \
|
|
-I${KRB5DIR}/lib/ipc \
|
|
-I${KRB5DIR}/lib/wind \
|
|
-I${KRB5DIR}/lib/roken \
|
|
-I${SRCTOP}/contrib/com_err
|
|
LIBADD= hdb kdc heimipcs krb5 roken asn1 crypto vers heimntlm
|
|
LDFLAGS=${LDAPLDFLAGS}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB5DIR}/kdc
|