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. 13CFLAGS+= -DOPENSSL_API_COMPAT=0x10100000L 14LIBADD= hx509 roken asn1 crypto sl vers edit 15SRCS= hxtool.c hxtool-commands.c hxtool-commands.h 16 17CLEANFILES= hxtool-commands.h hxtool-commands.c 18 19hxtool-commands.h: hxtool-commands.in 20 ${SLC} ${.ALLSRC:M*.in} 21 22hxtool-commands.c: hxtool-commands.h 23 24.include <bsd.prog.mk> 25 26.PATH: ${KRB5DIR}/lib/hx509 27