mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 11:14:18 +01:00
a30235a4c3
This allows users to install or not kerberos related utilities and libs. Differential Revision: https://reviews.freebsd.org/D31801
21 lines
352 B
Makefile
21 lines
352 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= kerberos
|
|
|
|
PROG= kdc
|
|
MAN= kdc.8
|
|
|
|
SRCS= config.c \
|
|
connect.c \
|
|
announce.c \
|
|
main.c
|
|
|
|
CFLAGS+=-I${KRB5DIR}/lib/krb5 -I${KRB5DIR}/lib/asn1 -I${KRB5DIR}/lib/roken \
|
|
-I${KRB5DIR}/kdc -I${SRCTOP}/contrib/com_err ${LDAPCFLAGS}
|
|
LIBADD= kdc hdb krb5 roken crypt vers
|
|
LDFLAGS=${LDAPLDFLAGS}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${KRB5DIR}/kdc
|