Files
src/kerberos5/usr.bin/kcc/Makefile
T
Emmanuel Vadot a30235a4c3 pkgbase: Create a FreeBSD-kerberos package
This allows users to install or not kerberos related utilities
and libs.

Differential Revision:	https://reviews.freebsd.org/D31801
2021-09-07 10:23:14 +02:00

31 lines
568 B
Makefile

# $FreeBSD$
PACKAGE= kerberos
PROG= kcc
MAN= klist.1 kswitch.1
LINKS= ${BINDIR}/kcc ${BINDIR}/klist \
${BINDIR}/kcc ${BINDIR}/kswitch
CFLAGS+= -I${KRB5DIR}/lib/hx509 \
-I${KRB5DIR}/lib/asn1 \
-I${KRB5DIR}/lib/roken \
-I${KRB5DIR}/lib/sl -I.
LIBADD= krb5 roken asn1 kafs5 edit sl vers
SRCS= kcc.c \
kcc-commands.c \
kcc-commands.h \
klist.c \
kswitch.c \
copy_cred_cache.c
CLEANFILES= kcc-commands.h kcc-commands.c
kcc-commands.h: kcc-commands.in
${SLC} ${.ALLSRC:M*.in}
kcc-commands.c: kcc-commands.h
.include <bsd.prog.mk>
.PATH: ${KRB5DIR}/kuser