use kdb5_ in the .o file names; put common libs into macros
authorJohn Kohl <jtkohl@mit.edu>
Fri, 27 Apr 1990 15:36:02 +0000 (15:36 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Fri, 27 Apr 1990 15:36:02 +0000 (15:36 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@609 dc483132-0cff-0310-8789-dd5450dbe970

src/admin/Imakefile

index cd75b87156391c54db8f81c86228180894a0f246..cf690313425272452be6d003fa4493c6465c8c85 100644 (file)
@@ -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),)