diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-04-23 16:54:15 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-04-23 16:54:15 +0000 |
| commit | 99c3d088ce68c9ae807a92be3cc49179c12454a8 (patch) | |
| tree | 7ca8a80dc5568a3898c4e2381a94a69c3bf59e62 /src | |
| parent | b480df25759038dfec1b6db60321fbd94d5d4a51 (diff) | |
a much more realistic Imakefile
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@555 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
| -rw-r--r-- | src/kdc/Imakefile | 27 |
1 files changed, 23 insertions, 4 deletions
diff --git a/src/kdc/Imakefile b/src/kdc/Imakefile index 8ebbe779d..28ea76484 100644 --- a/src/kdc/Imakefile +++ b/src/kdc/Imakefile @@ -1,4 +1,23 @@ -SRCS= dispatch.c do_as_req.c do_tgs_req.c kdc_util.c main.c policy.c extern.c -all:: - /*placebo*/ - @echo nothing to build yet. +SRCS= \ + dispatch.c \ + do_as_req.c \ + do_tgs_req.c \ + kdc_util.c \ + main.c \ + network.c \ + policy.c \ + extern.c + +OBJS= \ + dispatch.o \ + do_as_req.o \ + do_tgs_req.o \ + kdc_util.o \ + main.o \ + network.o \ + policy.o \ + extern.o + +all:: krb5kdc + +NormalProgramTarget(krb5kdc,$(OBJS),,$(KDBLIB) $(KLIB),) |
