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 "../Makefile.inc" 11 12PROG= kprop 13 14LIBADD= kprop_util krb5 k5crypto com_err krb5profile krb5support util sys 15 16SRCS= kprop.c 17 18MAN= kprop.8 19 20CFLAGS+=-I${KRB5_DIR}/include \ 21 -I${KRB5_SRCTOP}/include 22 23.include <bsd.prog.mk> 24 25.SUFFIXES: .h .c .man .8 26 27.man.8: 28 @cp ${.ALLSRC} ${.TARGET} 29 30.PATH: ${KRB5_DIR}/kprop \ 31 ${KRB5_DIR}/man 32