Makefile.am revision 90926
1# $Id: Makefile.am,v 1.43 2001/08/28 08:31:27 assar Exp $
2
3include $(top_srcdir)/Makefile.am.common
4
5INCLUDES += $(INCLUDE_krb4) $(INCLUDE_des) -I$(srcdir)/../lib/krb5
6
7bin_PROGRAMS = string2key
8
9sbin_PROGRAMS = kstash
10
11libexec_PROGRAMS = hprop hpropd kdc
12
13man_MANS = kdc.8 kstash.8 hprop.8 hpropd.8 string2key.8
14
15hprop_SOURCES = hprop.c mit_dump.c v4_dump.c hprop.h kadb.h 
16hpropd_SOURCES = hpropd.c hprop.h
17
18kstash_SOURCES = kstash.c headers.h
19
20string2key_SOURCES = string2key.c headers.h
21
22if KRB4
23krb4_sources = 	524.c kerberos4.c kaserver.c rx.h
24else
25krb4_sources = 
26endif
27
28kdc_SOURCES = \
29	config.c	\
30	connect.c	\
31	kdc_locl.h	\
32	kerberos5.c	\
33	log.c		\
34	main.c		\
35	misc.c		\
36	$(krb4_sources)
37
38
39hprop_LDADD = \
40	$(top_builddir)/lib/hdb/libhdb.la \
41	$(LIB_openldap) \
42	$(top_builddir)/lib/krb5/libkrb5.la \
43	$(LIB_kdb) $(LIB_krb4) \
44	$(LIB_des) \
45	$(top_builddir)/lib/asn1/libasn1.la \
46	$(LIB_roken) \
47	$(DBLIB) 
48
49hpropd_LDADD = \
50	$(top_builddir)/lib/hdb/libhdb.la \
51	$(LIB_openldap) \
52	$(top_builddir)/lib/krb5/libkrb5.la \
53	$(LIB_kdb) $(LIB_krb4) \
54	$(LIB_des) \
55	$(top_builddir)/lib/asn1/libasn1.la \
56	$(LIB_roken) \
57	$(DBLIB) 
58
59LDADD = $(top_builddir)/lib/hdb/libhdb.la \
60	$(LIB_openldap) \
61	$(top_builddir)/lib/krb5/libkrb5.la \
62	$(LIB_krb4) \
63	$(LIB_des) \
64	$(top_builddir)/lib/asn1/libasn1.la \
65	$(LIB_roken) \
66	$(DBLIB)
67
68kdc_LDADD = $(LDADD) $(LIB_pidfile)
69
70