diff options
author | John Kohl <jtkohl@mit.edu> | 1990-04-27 12:06:48 +0000 |
---|---|---|
committer | John Kohl <jtkohl@mit.edu> | 1990-04-27 12:06:48 +0000 |
commit | d2eed0305837a75c0a140a35cd83a2a96f88c074 (patch) | |
tree | 9f8a035cb46e8477827baff5bc94b25cd6da912e /src/admin/Imakefile | |
parent | e52457715f3cdd814ea2a2b9bad6855e033cd19a (diff) | |
download | krb5-d2eed0305837a75c0a140a35cd83a2a96f88c074.tar.gz krb5-d2eed0305837a75c0a140a35cd83a2a96f88c074.tar.xz krb5-d2eed0305837a75c0a140a35cd83a2a96f88c074.zip |
put some real stuff here
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@608 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/admin/Imakefile')
-rw-r--r-- | src/admin/Imakefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/admin/Imakefile b/src/admin/Imakefile index a8903aa9bd..cd75b87156 100644 --- a/src/admin/Imakefile +++ b/src/admin/Imakefile @@ -1,4 +1,7 @@ SRCS= kdb_stash.c kdb_create.c kdb_destroy.c common.c -all:: - /*placebo*/ - @echo nothing to build yet. + +all:: kdb5_create kdb5_destroy kdb5_stash + +NormalProgramTarget(kdb5_create,kdb_create.o,$(KDBLIB) $(DEPKLIB),$(KDBLIB) $(KLIB),) +NormalProgramTarget(kdb5_destroy,kdb_destroy.o,$(KDBLIB) $(DEPKLIB),$(KDBLIB) $(KLIB),) +NormalProgramTarget(kdb5_stash,kdb_stash.o,$(KDBLIB) $(DEPKLIB),$(KDBLIB) $(KLIB),) |