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= kswitch 11 12LIBADD= krb5 k5crypto com_err krb5profile krb5support sys 13 14SRCS= kswitch.c 15 16CFLAGS+=-I${KRB5_DIR}/include \ 17 -I${KRB5_SRCTOP}/include \ 18 -I${KRB5_OBJTOP}/util/profile 19 20MAN= kswitch.1 21 22kswitch.1: kswitch.man 23 24CLEANFILES+= kswitch.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/kswitch \ 34 ${KRB5_DIR}/man 35