diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-04-27 15:36:02 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-04-27 15:36:02 +0000 |
| commit | e1512a06dfb742337c05739690b3e52bf25b88b6 (patch) | |
| tree | 4c147ecb42093622ecc1938c6b42de86d531d0fc /src/admin | |
| parent | d2eed0305837a75c0a140a35cd83a2a96f88c074 (diff) | |
use kdb5_ in the .o file names; put common libs into macros
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@609 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/admin')
| -rw-r--r-- | src/admin/Imakefile | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/admin/Imakefile b/src/admin/Imakefile index cd75b8715..cf6903134 100644 --- a/src/admin/Imakefile +++ b/src/admin/Imakefile @@ -1,7 +1,10 @@ -SRCS= kdb_stash.c kdb_create.c kdb_destroy.c common.c +DEPLIBS = $(KDBLIB) $(DEPKLIB) +LOCAL_LIBRARIES = $(KDBLIB) $(KLIB) 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),) +SRCS= kdb_stash.c kdb_create.c kdb_destroy.c + +NormalProgramTarget(kdb5_create,kdb5_create.o,$(DEPLIBS),$(LOCAL_LIBRARIES),) +NormalProgramTarget(kdb5_destroy,kdb5_destroy.o,$(DEPLIBS),$(LOCAL_LIBRARIES),) +NormalProgramTarget(kdb5_stash,kdb5_stash.o,$(DEPLIBS),$(LOCAL_LIBRARIES),) |
