blob: 47d5b390f2479a6c9ad882f8ef3f33c573a73980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#
# SPDX-License-Identifier: BSD-2-Clause
#
# Copyright (c) 2025 FreeBSD Foundation
#
# This sofware was developed by Cy Schubert <cy@FreeBSD.org>
# under sponsorship from the FreeBSD Foundation.
#
.include "../Makefile.inc"
PROG= krb5kdc
LIBADD= kadm5srv_mit gssrpc gssapi_krb5 krb5 kdb5 k5crypto com_err krb5support \
apputils verto krb5profile m sys
SRCS= authind.c \
cammac.c \
dispatch.c \
do_as_req.c \
do_tgs_req.c \
extern.c \
fast_util.c \
kdc_audit.c \
kdc_authdata.c \
kdc_log.c \
kdc_preauth.c \
kdc_preauth_ec.c \
kdc_preauth_encts.c \
kdc_transit.c \
kdc_util.c \
main.c \
ndr.c \
policy.c \
replay.c \
tgs_policy.c \
${GEN} \
${GENI}
MAN= krb5kdc.8
DEFINES=-DLIBDIR=\"${KRB5_LIBDIR}\"
CFLAGS+=${DEFINES} \
-I${KRB5_DIR}/include \
-I${KRB5_SRCTOP}/include \
-I${KRB5_OBJTOP}/util/profile \
-I${.OBJDIR}
CLEANFILES+= krb5kdc.8
krb5kdc.8: krb5kdc.man
.include <bsd.prog.mk>
.SUFFIXES: .h .c .man .1
.man.8:
cp ${.ALLSRC} ${.TARGET}
.PATH: ${KRB5_DIR}/kdc \
${KRB5_DIR}/man
|