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 \ 9 -I${SRCTOP}/contrib/com_err \ 10 -I. 11LIBADD= hx509 roken asn1 crypto sl vers edit 12SRCS= hxtool.c hxtool-commands.c hxtool-commands.h 13 14CLEANFILES= hxtool-commands.h hxtool-commands.c 15 16hxtool-commands.h: hxtool-commands.in 17 ${SLC} ${.ALLSRC:M*.in} 18 19hxtool-commands.c: hxtool-commands.h 20 21.include <bsd.prog.mk> 22 23.PATH: ${KRB5DIR}/lib/hx509 24