1# $FreeBSD$
2
3PROG=	hxtool
4MAN=
5CFLAGS+=	-I${KRB5DIR}/lib/hx509 \
6		-I${KRB5DIR}/lib/asn1 \
7		-I${KRB5DIR}/lib/roken \
8		-I${KRB5DIR}/lib/sl -I.
9DPADD=	${LIBHX509} ${LIBROKEN} ${LIBASN1} ${LIBCRYPTO} ${LIBCRYPT} ${LIBSL} ${LIBVERS} ${LIBEDIT}
10LDADD=	-lhx509 -lroken -lasn1 -lcrypto -lcrypt ${LIBSL} ${LIBVERS} -ledit
11SRCS=	hxtool.c hxtool-commands.c hxtool-commands.h
12
13CLEANFILES=	hxtool-commands.h hxtool-commands.c
14
15hxtool-commands.h: hxtool-commands.in
16	${SLC} ${.ALLSRC:M*.in}
17
18hxtool-commands.c: hxtool-commands.h
19
20.include <bsd.prog.mk>
21
22.PATH: ${KRB5DIR}/lib/hx509
23