blob: 8367a55e0c9e3c924d309aeb89b6f9e5582bfa5c (
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
25
26
27
28
29
30
31
32
33
|
# $NetBSD: Makefile,v 1.5 2023/06/19 23:56:55 mrg Exp $
USE_FORT?= yes # cryptographic software
NOLINT=
.include <bsd.own.mk>
.include <${.CURDIR}/../../Makefile.inc>
.PATH: ${HEIMDIST}/lib/ntlm ${HEIMBASE}/include
LIB= heimntlm
LIBDPLIBS+= asn1 ${.CURDIR}/../libasn1 \
com_err ${.CURDIR}/../libcom_err \
crypto ${SSLBASE}/lib/libcrypto \
krb5 ${.CURDIR}/../libkrb5 \
roken ${.CURDIR}/../libroken \
wind ${.CURDIR}/../libwind
HEIMSRCS= ntlm_err.et ntlm.c
CPPFLAGS+= \
-I${HEIMDIST}/lib
INCS= heimntlm.h heimntlm-protos.h ${COMPILE_ET_INCS}
INCSDIR= /usr/include/krb5
COPTS.ntlm.c+= -Wno-error=deprecated-declarations
.include <${HEIMBASE}/Makefile.rules.inc>
.include <bsd.lib.mk>
|