blob: c906ba97bcc450deb931be089d8b3a39a248dfc6 (
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
|
#
# 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 <src.opts.mk>
.include "../Makefile.inc"
LIB= kdc_j_encode
LIBDIR= ${PLUGINSDIR}/audit
LDFLAGS=-Wl,--no-undefined
VERSION_MAP= ${.CURDIR}/version.map
.PATH: ${KRB5_DIR}/plugins/audit
SRCS= kdc_j_encode.c
CFLAGS+=-I${KRB5_DIR}/plugins/audit
CFLAGS+=-I${KRB5_OBJTOP}/util/profile
.include <bsd.lib.mk>
.SUFFIXES: .h .c
|