xref: /src/krb5/usr.bin/klist/Makefile (revision 9c151e1fbf1a71a4912afa9693a39d55a00db4eb)
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
10PROG=	klist
11
12LIBADD=	krb5 k5crypto com_err krb5profile krb5support sys
13
14SRCS=	klist.c
15
16CFLAGS+=-I${KRB5_DIR}/include \
17	-I${KRB5_SRCTOP}/include \
18	-I${KRB5_OBJTOP}/util/profile
19
20MAN=	klist.1
21
22klist.1:	klist.man
23
24CLEANFILES+=	klist.1
25
26.include <bsd.prog.mk>
27
28.SUFFIXES: .h .c. .man .1
29
30.man.1:
31	@cp ${.ALLSRC} ${.TARGET}
32
33.PATH:	${KRB5_DIR}/clients/klist \
34	${KRB5_DIR}/man
35