xref: /freebsd/krb5/plugins/preauth/test/Makefile (revision 18a870751b036f1dc78b36084ccb993d139a11bb)
1#
2# SPDX-License-Identifier: BSD-2-Clause
3#
4# Copyright (c) 2025 FreeBSD Foundation
5#
6# This sofware was developed by Cy Schubert <cy@FreeBSD.org>
7# under sponsorship from the FreeBSD Foundation.
8#
9
10.include <src.opts.mk>
11
12.include "../Makefile.inc"
13
14LIB=		test
15LIBDIR=		${PLUGINSDIR}/preauth
16LDFLAGS=-Wl,--no-undefined
17LIBADD=	krb5 k5crypto com_err krb5support
18VERSION_MAP=	${.CURDIR}/version.map
19
20.PATH:	${KRB5_DIR}/plugins/preauth/test
21
22SRCS=	cltest.c \
23	common.c \
24	kdctest.c
25
26CFLAGS+=-I${KRB5_DIR}/plugins/preauth/test \
27	-I${KRB5_DIR}/include \
28	-I${KRB5_SRCTOP}/include
29
30.include <bsd.lib.mk>
31