blob: c283cd2a4997853532131f3030b9f7beab3116a5 (
plain) (
blame)
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
|
# $Id: Makefile.am,v 1.33 2002/09/10 19:59:25 joda Exp $
include $(top_srcdir)/Makefile.am.common
SUBDIRS = kadm5
noinst_PROGRAMS = bits make_crypto
CHECK_LOCAL =
INCLUDES += -DHOST=\"$(CANONICAL_HOST)\"
include_HEADERS = krb5-types.h
noinst_HEADERS = crypto-headers.h
krb5-types.h: bits$(EXEEXT)
./bits$(EXEEXT) krb5-types.h
crypto-headers.h: make_crypto$(EXEEXT)
./make_crypto$(EXEEXT) crypto-headers.h
CLEANFILES = \
asn1.h \
asn1_err.h \
base64.h \
com_err.h \
com_right.h \
crypto-headers.h\
der.h \
des.h \
editline.h \
err.h \
getarg.h \
glob.h \
gssapi.h \
hdb.h \
hdb_asn1.h \
hdb_err.h \
heim_err.h \
kafs.h \
krb5-protos.h \
krb5-private.h \
krb5-types.h \
krb5.h \
krb5_err.h \
md4.h \
md5.h \
rc4.h \
otp.h \
parse_time.h \
parse_units.h \
resolve.h \
roken-common.h \
roken.h \
sha.h \
sl.h \
xdbm.h
|