
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1303 ec53bebd-3082-4978-b11e-865c3cabbd6b
23 lines
667 B
Makefile
23 lines
667 B
Makefile
# $Id$
|
|
|
|
AUTOMAKE_OPTIONS = no-dependencies
|
|
|
|
SUBDIRS = error
|
|
|
|
INCLUDES = -I$(top_builddir)/include -I$(top_builddir)
|
|
|
|
lib_LIBRARIES = libkrb5.a
|
|
|
|
libkrb5_a_SOURCES = cache.c config_file.y constants.c context.c data.c \
|
|
get_addrs.c get_cred.c get_in_tkt.c get_in_tkt_pw.c get_port.c \
|
|
krbhst.c misc.c principal.c principal_p.c send_to_kdc.c str2key.c \
|
|
crc.c build_ap_req.c build_auth.c mk_req.c get_host_realm.c \
|
|
auth_context.c rd_rep.c keytab.c store.c \
|
|
rd_req.c mk_rep.c mk_safe.c rd_safe.c \
|
|
asn1_glue.c error/error.c error/krb5_err.c error/asn1_err.c \
|
|
encrypt.c checksum.c
|
|
|
|
config_file.c: config_file.y
|
|
$(YACC) -p __k5cf_ $<
|
|
mv -f y.tab.c config_file.c
|