diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-04-25 16:46:18 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-04-25 16:46:18 +0000 |
| commit | a3a3759d020ef050bde415f60bdff00bd53354ce (patch) | |
| tree | fd0000a0de0ba025ef7da01058ab3d7ca17a7528 | |
| parent | b6fd09ac2ab54b0c590edcf06bc5afe99e24549c (diff) | |
| download | krb5-a3a3759d020ef050bde415f60bdff00bd53354ce.tar.gz krb5-a3a3759d020ef050bde415f60bdff00bd53354ce.tar.xz krb5-a3a3759d020ef050bde415f60bdff00bd53354ce.zip | |
add all the generic entry points
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@578 dc483132-0cff-0310-8789-dd5450dbe970
| -rw-r--r-- | src/lib/krb5/keytab/Imakefile | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/src/lib/krb5/keytab/Imakefile b/src/lib/krb5/keytab/Imakefile index 4d947bf9f..00a6da41a 100644 --- a/src/lib/krb5/keytab/Imakefile +++ b/src/lib/krb5/keytab/Imakefile @@ -6,6 +6,38 @@ MakeSubdirs($(SUBDIRS)) NormalLibraryObjectRule() -/* OBJS=read_servi.o */ +OBJS= \ + ktadd.o \ + ktclose.o \ + ktdefault.o \ + ktdefname.o \ + ktdir.o \ + ktendseq.o \ + ktfr_entry.o \ + ktget_name.o \ + ktgetentry.o \ + ktnext.o \ + ktregister.o \ + ktremove.o \ + ktresolve.o \ + ktssget.o \ + read_servi.o -/* NormalLibraryTarget(keytab,$(OBJS)) */ +SRCS= \ + ktadd.c \ + ktclose.c \ + ktdir.c \ + ktdefault.c \ + ktdefname.c \ + ktendseq.c \ + ktfr_entry.c \ + ktget_name.c \ + ktgetentry.c \ + ktnext.c \ + ktregister.c \ + ktremove.c \ + ktresolve.c \ + ktssget.c \ + read_servi.c + +NormalLibraryTarget(kt,$(OBJS)) |
