1# $NetBSD: Makefile,v 1.5 2023/06/19 23:56:55 mrg Exp $
2
3USE_FORT?= yes	# cryptographic software
4
5NOLINT=
6
7.include <bsd.own.mk>
8.include <${.CURDIR}/../../Makefile.inc>
9
10.PATH:		${HEIMDIST}/lib/ntlm ${HEIMBASE}/include
11
12LIB=		heimntlm
13
14LIBDPLIBS+=	asn1	${.CURDIR}/../libasn1 \
15		com_err	${.CURDIR}/../libcom_err \
16		crypto	${SSLBASE}/lib/libcrypto \
17		krb5	${.CURDIR}/../libkrb5 \
18		roken	${.CURDIR}/../libroken \
19		wind	${.CURDIR}/../libwind
20
21HEIMSRCS= ntlm_err.et ntlm.c
22
23CPPFLAGS+=				\
24	-I${HEIMDIST}/lib
25
26INCS=		heimntlm.h heimntlm-protos.h ${COMPILE_ET_INCS}
27
28INCSDIR=	/usr/include/krb5
29
30COPTS.ntlm.c+= -Wno-error=deprecated-declarations
31
32.include <${HEIMBASE}/Makefile.rules.inc>
33.include <bsd.lib.mk>
34