1# $Id: Makefile.am,v 1.41 2000/11/15 22:51:12 assar Exp $ 2 3include $(top_srcdir)/Makefile.am.common 4 5INCLUDES += $(INCLUDE_krb4) -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 22kdc_SOURCES = \ 23 524.c \ 24 config.c \ 25 connect.c \ 26 kaserver.c \ 27 kdc_locl.h \ 28 kerberos4.c \ 29 kerberos4.h \ 30 kerberos5.c \ 31 log.c \ 32 main.c \ 33 misc.c \ 34 rx.h 35 36 37hprop_LDADD = \ 38 $(top_builddir)/lib/hdb/libhdb.la \ 39 $(LIB_openldap) \ 40 $(top_builddir)/lib/krb5/libkrb5.la \ 41 $(LIB_kdb) $(LIB_krb4) \ 42 $(LIB_des) \ 43 $(top_builddir)/lib/asn1/libasn1.la \ 44 $(LIB_roken) \ 45 $(DBLIB) 46 47hpropd_LDADD = \ 48 $(top_builddir)/lib/hdb/libhdb.la \ 49 $(LIB_openldap) \ 50 $(top_builddir)/lib/krb5/libkrb5.la \ 51 $(LIB_kdb) $(LIB_krb4) \ 52 $(LIB_des) \ 53 $(top_builddir)/lib/asn1/libasn1.la \ 54 $(LIB_roken) \ 55 $(DBLIB) 56 57LDADD = $(top_builddir)/lib/hdb/libhdb.la \ 58 $(LIB_openldap) \ 59 $(top_builddir)/lib/krb5/libkrb5.la \ 60 $(LIB_krb4) \ 61 $(LIB_des) \ 62 $(top_builddir)/lib/asn1/libasn1.la \ 63 $(LIB_roken) \ 64 $(DBLIB) 65 66kdc_LDADD = $(LDADD) $(LIB_pidfile) 67 68