blob: a9c8c460779615a7ec9e0d15913e8cdfc13066b7 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# $NetBSD: Makefile,v 1.2 2000/06/16 22:46:47 thorpej Exp $
DIST= ${.CURDIR}/../../crypto/dist
.PATH: ${DIST}/heimdal/lib/gssapi
WARNS?= 1
MKLINT= no
LIB= gssapi
SRCS = \
8003.c \
accept_sec_context.c \
acquire_cred.c \
add_oid_set_member.c \
canonicalize_name.c \
compare_name.c \
context_time.c \
create_emtpy_oid_set.c \
decapsulate.c \
delete_sec_context.c \
display_name.c \
display_status.c \
duplicate_name.c \
encapsulate.c \
export_name.c \
export_sec_context.c \
external.c \
get_mic.c \
gssapi.h \
gssapi_locl.h \
import_name.c \
import_sec_context.c \
indicate_mechs.c \
init.c \
init_sec_context.c \
inquire_context.c \
inquire_cred.c \
release_buffer.c \
release_cred.c \
release_name.c \
release_oid_set.c \
test_oid_set_member.c \
unwrap.c \
v1.c \
verify_mic.c \
wrap.c
INCSDIR= /usr/include/gssapi
INCS= gssapi.h
ASN1!= cd ${.CURDIR}/../libasn1 && ${MAKE} print-objdir
KRB5!= cd ${.CURDIR}/../libkrb5 && ${MAKE} print-objdir
CPPFLAGS+= -I. \
-I${DIST}/heimdal/lib/gssapi \
-I${ASN1} \
-I${KRB5} \
-I${DIST}/heimdal/lib/krb5 \
-I${DIST}/openssl/crypto/md4 \
-I${DIST}/openssl/crypto/md5 \
-I${DIST}/openssl/crypto/sha \
-I${DIST}/openssl/crypto/rc4 \
-I${DIST}/openssl/crypto/des \
-I${DIST}/heimdal/lib/asn1 \
-I${DIST}/heimdal/lib/com_err \
-I${.CURDIR}/../../include/heimdal \
-I${.CURDIR}/../libroken \
-I${DIST}/heimdal/lib/roken \
-DHAVE_CONFIG_H
.include <bsd.lib.mk>
|