1# $FreeBSD$ 2 3PACKAGE= kerberos 4 5PROG= hxtool 6MAN= 7CFLAGS+= -I${KRB5DIR}/lib/hx509 \ 8 -I${KRB5DIR}/lib/asn1 \ 9 -I${KRB5DIR}/lib/roken \ 10 -I${KRB5DIR}/lib/sl \ 11 -I${SRCTOP}/contrib/com_err \ 12 -I. 13LIBADD= hx509 roken asn1 crypto sl vers edit 14SRCS= hxtool.c hxtool-commands.c hxtool-commands.h 15 16CLEANFILES= hxtool-commands.h hxtool-commands.c 17 18hxtool-commands.h: hxtool-commands.in 19 ${SLC} ${.ALLSRC:M*.in} 20 21hxtool-commands.c: hxtool-commands.h 22 23.include <bsd.prog.mk> 24 25.PATH: ${KRB5DIR}/lib/hx509 26