blob: ebee0a04b92bea04ea2608b535f515dd8d76173c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $NetBSD: Makefile,v 1.6 2023/06/22 22:39:22 christos Exp $
.include <bsd.own.mk>
.include <${.CURDIR}/../../Makefile.inc>
USE_FORT?= yes # cryptographic software
.PATH: ${HEIMDIST}/lib/hx509
PROG= hxtool
HEIMSRCS= hxtool.c hxtool-commands.in
MAN=
PROGDPLIBS+= ${DPLIBGSSAPI} ${DPLIBSL}
COPTS.hxtool.c+= -Wno-error=deprecated-declarations
.include <${HEIMBASE}/Makefile.rules.inc>
.include <bsd.prog.mk>
LDADD+= -lcrypto -ledit -lterminfo
DPADD+= ${LIBCRYPTO} ${LIBEDIT} ${LIBTERMINFO}
|