summaryrefslogtreecommitdiff
path: root/kerberosV/lib/asn1/Makefile
blob: cc8aa0b0e24427e5b6728310c9043516e9e4aa88 (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# $OpenBSD: Makefile,v 1.1 2001/05/25 08:18:52 hin Exp $

LIB=	asn1

KRBDEPTH=../..
.include <${.CURDIR}/../../Makefile.inc>

INCLUDE_FILES=	asn1.h asn1_err.h ${KRB5SRC}/lib/asn1/{der.h,asn1-common.h}

includes:	asn1.h asn1_err.h

.PATH:	${KRB5SRC}/lib/asn1

gen_files= \
	asn1.h \
	asn1_APOptions.c                \
	asn1_AP_REP.c                   \
	asn1_AP_REQ.c                   \
	asn1_AS_REP.c                   \
	asn1_AS_REQ.c                   \
	asn1_Authenticator.c            \
	asn1_AuthorizationData.c        \
	asn1_CKSUMTYPE.c			\
	asn1_Checksum.c                 \
	asn1_ETYPE_INFO.c		\
	asn1_ETYPE_INFO_ENTRY.c		\
	asn1_EncAPRepPart.c             \
	asn1_EncASRepPart.c             \
	asn1_EncKDCRepPart.c            \
	asn1_EncKrbCredPart.c           \
	asn1_EncKrbPrivPart.c           \
	asn1_EncTGSRepPart.c            \
	asn1_EncTicketPart.c            \
	asn1_EncryptedData.c            \
	asn1_EncryptionKey.c            \
	asn1_HostAddress.c              \
	asn1_HostAddresses.c            \
	asn1_KDCOptions.c               \
	asn1_KDC_REP.c                  \
	asn1_KDC_REQ.c                  \
	asn1_KDC_REQ_BODY.c             \
	asn1_KRB_CRED.c                 \
	asn1_KRB_ERROR.c                \
	asn1_KRB_PRIV.c                 \
	asn1_KRB_SAFE.c                 \
	asn1_KRB_SAFE_BODY.c            \
	asn1_KerberosTime.c             \
	asn1_KrbCredInfo.c              \
	asn1_LastReq.c                  \
	asn1_MESSAGE_TYPE.c		\
	asn1_METHOD_DATA.c              \
	asn1_NAME_TYPE.c		\
	asn1_PADATA_TYPE.c		\
	asn1_PA_DATA.c                  \
	asn1_PA_ENC_TS_ENC.c            \
	asn1_Principal.c                \
	asn1_PrincipalName.c            \
	asn1_Realm.c                    \
	asn1_TGS_REP.c                  \
	asn1_TGS_REQ.c                  \
	asn1_Ticket.c                   \
	asn1_TicketFlags.c              \
	asn1_TransitedEncoding.c	\
	asn1_UNSIGNED.c

CLEANFILES=	${gen_files} *.x asn1_files asn1_err.[ch]

BUILT_SOURCES= \
	${gen_files} \
	asn1_err.h \
	asn1_err.c

SRCS=	der_get.c \
	der_put.c \
	der_free.c \
	der_length.c \
	der_copy.c \
	${BUILT_SOURCES}

CFLAGS+=	-I${KRB5SRC}/lib/asn1 -I.

asn1_err.h asn1_err.c:	${KRB5SRC}/lib/asn1/asn1_err.et
	compile_et ${KRB5SRC}/lib/asn1/asn1_err.et

${gen_files} asn1.h: asn1_files

asn1_files:	${KRB5SRC}/lib/asn1/k5.asn1
	asn1_compile ${KRB5SRC}/lib/asn1/k5.asn1
	for f in *.x; do mv $$f `echo $$f | sed s,.x$$,.c,g`; done

.include <bsd.lib.mk>