aboutsummaryrefslogtreecommitdiff
path: root/src/kadmin/dbutil/Makefile.in
diff options
context:
space:
mode:
authorWill Fiveash <will.fiveash@oracle.com>2009-01-09 20:11:57 +0000
committerWill Fiveash <will.fiveash@oracle.com>2009-01-09 20:11:57 +0000
commitdef85286436a4bf95ffce574e83783a76001f7cf (patch)
tree3eafc1633b52beed8dbd13dd3296374eca99f170 /src/kadmin/dbutil/Makefile.in
parent8fc9ca52d343264e9b668c8f81fea3828b0d251c (diff)
downloadkrb5-def85286436a4bf95ffce574e83783a76001f7cf.zip
krb5-def85286436a4bf95ffce574e83783a76001f7cf.tar.gz
krb5-def85286436a4bf95ffce574e83783a76001f7cf.tar.bz2
First commit. This project is not completely finished (the list_mkeys,
purge_mkeys, sync_stash and update_princ_encryption still need to be written) so the purpose of this commit is to allow early review of the addition of support for > 1 master key and the "active" master keylist. This commit does not include any changes required to sync this level of the branch with the current level of the trunk. That will follow this commit. git-svn-id: svn://anonsvn.mit.edu/krb5/branches/mkey_migrate@21721 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/kadmin/dbutil/Makefile.in')
-rw-r--r--src/kadmin/dbutil/Makefile.in12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/kadmin/dbutil/Makefile.in b/src/kadmin/dbutil/Makefile.in
index 3b38454..7419dcb 100644
--- a/src/kadmin/dbutil/Makefile.in
+++ b/src/kadmin/dbutil/Makefile.in
@@ -15,14 +15,18 @@ PROG = kdb5_util
### kdb5_destroy.o ovload.o import_err.o strtok.o
###
-SRCS = kdb5_util.c kdb5_create.c kadm5_create.c string_table.c kdb5_destroy.c kdb5_stash.c import_err.c strtok.c dump.c ovload.c
+SRCS = kdb5_util.c kdb5_create.c kadm5_create.c string_table.c kdb5_destroy.c \
+ kdb5_stash.c import_err.c strtok.c dump.c ovload.c kdb5_mkey.c
-OBJS = kdb5_util.o kdb5_create.o kadm5_create.o string_table.o kdb5_destroy.o kdb5_stash.o import_err.o strtok.o dump.o ovload.o
+OBJS = kdb5_util.o kdb5_create.o kadm5_create.o string_table.o kdb5_destroy.o \
+ kdb5_stash.o import_err.o strtok.o dump.o ovload.o kdb5_mkey.o
+
+GETDATE = ../cli/getdate.o
all:: $(PROG)
-$(PROG): $(OBJS) $(KADMSRV_DEPLIBS) $(KRB4COMPAT_DEPLIBS)
- $(CC_LINK) -o $(PROG) $(OBJS) $(KADMSRV_LIBS) $(KDB_DEP_LIB) $(KRB4COMPAT_LIBS)
+$(PROG): $(OBJS) $(KADMSRV_DEPLIBS) $(KRB4COMPAT_DEPLIBS) $(GETDATE)
+ $(CC_LINK) -o $(PROG) $(OBJS) $(GETDATE) $(KADMSRV_LIBS) $(KDB_DEP_LIB) $(KRB4COMPAT_LIBS)
import_err.c import_err.h: $(srcdir)/import_err.et