summaryrefslogtreecommitdiffstats
path: root/src/admin
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1990-05-09 09:18:58 +0000
committerJohn Kohl <jtkohl@mit.edu>1990-05-09 09:18:58 +0000
commita15c2e660d89e49c1256c745d448b68e6f3af750 (patch)
tree85dd5ded207b382e9e1d1f09b368377bdd3cbc19 /src/admin
parent620bbc180ab07e0edaa3c34dd849eabdca9c0dcd (diff)
downloadkrb5-a15c2e660d89e49c1256c745d448b68e6f3af750.tar.gz
krb5-a15c2e660d89e49c1256c745d448b68e6f3af750.tar.xz
krb5-a15c2e660d89e49c1256c745d448b68e6f3af750.zip
*** empty log message ***
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@794 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/admin')
-rw-r--r--src/admin/create/Imakefile4
-rw-r--r--src/admin/destroy/Imakefile4
-rw-r--r--src/admin/edit/Imakefile13
-rw-r--r--src/admin/stash/Imakefile4
4 files changed, 25 insertions, 0 deletions
diff --git a/src/admin/create/Imakefile b/src/admin/create/Imakefile
new file mode 100644
index 000000000..59c1e0c58
--- /dev/null
+++ b/src/admin/create/Imakefile
@@ -0,0 +1,4 @@
+DEPLIBS = $(KDBLIB) $(DEPKLIB)
+LOCAL_LIBRARIES = $(KDBLIB) $(KLIB)
+
+SimpleProgramTarget(kdb5_create)
diff --git a/src/admin/destroy/Imakefile b/src/admin/destroy/Imakefile
new file mode 100644
index 000000000..ed61e2189
--- /dev/null
+++ b/src/admin/destroy/Imakefile
@@ -0,0 +1,4 @@
+DEPLIBS = $(KDBLIB) $(DEPKLIB)
+LOCAL_LIBRARIES = $(KDBLIB) $(KLIB)
+
+SimpleProgramTarget(kdb5_destroy)
diff --git a/src/admin/edit/Imakefile b/src/admin/edit/Imakefile
new file mode 100644
index 000000000..4b4dbe0fa
--- /dev/null
+++ b/src/admin/edit/Imakefile
@@ -0,0 +1,13 @@
+DEPLIBS = $(KDBLIB) $(DEPKLIB)
+LOCAL_LIBRARIES = $(KDBLIB) $(KLIB) $(SSLIB)
+OBJS= kdb5_edit.o kdb5_ed_ct.o
+SRCS= kdb5_edit.c kdb5_ed_ct.c
+
+all:: kdb5_edit
+
+CmdTableObjectRule()
+
+# needed until we run makedepend
+kdb5_ed_ct.o: kdb5_ed_ct.c
+
+NormalProgramTarget(kdb5_edit,$(OBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),)
diff --git a/src/admin/stash/Imakefile b/src/admin/stash/Imakefile
new file mode 100644
index 000000000..9cd4063db
--- /dev/null
+++ b/src/admin/stash/Imakefile
@@ -0,0 +1,4 @@
+DEPLIBS = $(KDBLIB) $(DEPKLIB)
+LOCAL_LIBRARIES = $(KDBLIB) $(KLIB)
+
+SimpleProgramTarget(kdb5_stash)