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 -I${KRB5_OBJTOP}/util/profile 23 24.include <bsd.prog.mk> 25 26.SUFFIXES: .h .c .man .8 27 28.man.8: 29 @cp ${.ALLSRC} ${.TARGET} 30 31.PATH: ${KRB5_DIR}/kprop \ 32 ${KRB5_DIR}/man 33