From e1512a06dfb742337c05739690b3e52bf25b88b6 Mon Sep 17 00:00:00 2001 From: John Kohl Date: Fri, 27 Apr 1990 15:36:02 +0000 Subject: [PATCH] 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 --- src/admin/Imakefile | 11 +++++++---- 1 file 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),) -- 2.26.2