summaryrefslogtreecommitdiffstats
path: root/src/admin
diff options
context:
space:
mode:
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)