
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3204 ec53bebd-3082-4978-b11e-865c3cabbd6b
28 lines
858 B
Makefile
28 lines
858 B
Makefile
# $Id$
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies foreign
|
|
|
|
INCLUDES = -I$(top_builddir)/include $(INCLUDE_krb4)
|
|
|
|
bin_PROGRAMS = string2key
|
|
|
|
sbin_PROGRAMS = kstash
|
|
|
|
libexec_PROGRAMS = hprop hpropd kdc
|
|
|
|
man_MANS = kdc.8 kstash.8 hprop.8 hpropd.8
|
|
|
|
hprop_SOURCES = hprop.c hprop-common.c
|
|
hpropd_SOURCES = hpropd.c hprop-common.c
|
|
|
|
kdc_SOURCES = 524.c connect.c config.c kerberos4.c kerberos5.c log.c main.c misc.c kaserver.c
|
|
|
|
if KRB4
|
|
hprop_LDADD = -L$(top_builddir)/lib/hdb -lhdb -L$(top_builddir)/lib/krb5 -lkrb5 -L$(top_builddir)/lib/des -ldes $(LIB_krb4) -lkdb $(LIB_krb4) -L$(top_builddir)/lib/asn1 -lasn1 -L$(top_builddir)/lib/roken -lroken
|
|
else
|
|
hprop_LDADD = $(LDADD)
|
|
endif
|
|
|
|
LDADD = -L$(top_builddir)/lib/hdb -lhdb -L$(top_builddir)/lib/krb5 -lkrb5 -L$(top_builddir)/lib/des -ldes $(LIB_krb4) -L$(top_builddir)/lib/asn1 -lasn1 -L$(top_builddir)/lib/roken -lroken
|
|
|