summaryrefslogtreecommitdiffstats
path: root/src/kdc/Makefile.in
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2012-09-12 17:19:24 -0400
committerTom Yu <tlyu@mit.edu>2012-10-15 19:41:14 -0400
commitb57463a2e6e6a1ad047fafc54793c98ccf1c507b (patch)
tree7cda2c060af532da09442884ff618cf2a0d5fcd9 /src/kdc/Makefile.in
parentcabd57b398bb10098df2fe7bdb5600671825415c (diff)
downloadkrb5-b57463a2e6e6a1ad047fafc54793c98ccf1c507b.tar.gz
krb5-b57463a2e6e6a1ad047fafc54793c98ccf1c507b.tar.xz
krb5-b57463a2e6e6a1ad047fafc54793c98ccf1c507b.zip
Move add_to_transited to a separate file
add_to_transited() is fairly large, and also fairly independent of the other contents of kdc_util.c. Move it into kdc_transit.c. Also simplifies the building of rtest by removing dependencies that kdc_util.c previously needed to satisfy undefined symbols.
Diffstat (limited to 'src/kdc/Makefile.in')
-rw-r--r--src/kdc/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kdc/Makefile.in b/src/kdc/Makefile.in
index 497c6f8d89..52e65d6776 100644
--- a/src/kdc/Makefile.in
+++ b/src/kdc/Makefile.in
@@ -26,7 +26,8 @@ SRCS= \
$(srcdir)/policy.c \
$(srcdir)/extern.c \
$(srcdir)/replay.c \
- $(srcdir)/kdc_authdata.c
+ $(srcdir)/kdc_authdata.c \
+ $(srcdir)/kdc_transit.c
OBJS= \
kdc5_err.o \
@@ -42,12 +43,11 @@ OBJS= \
policy.o \
extern.o \
replay.o \
- kdc_authdata.o
+ kdc_authdata.o \
+ kdc_transit.o
RT_OBJS= rtest.o \
- kdc_util.o \
- policy.o \
- extern.o
+ kdc_transit.o
depend:: kdc5_err.c kdc5_err.h