blob: ed3b2af88e1b75cef6ed2b41a0f1c1fef7ada5ae (
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
|
#
# 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.
#
PROG= sim_client
LIBADD= krb5 k5crypto com_err krb5profile krb5support sys
SRCS= sim_client.c
CFLAGS+=-I${KRB5_DIR}/include \
-I${KRB5_SRCTOP}/include \
-I${KRB5_OBJTOP}/util/profile
MAN=
.include <bsd.prog.mk>
.PATH: ${KRB5_DIR}/appl/simple
|