summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clients/zaway/Imakefile4
-rw-r--r--clients/zctl/Imakefile8
-rw-r--r--clients/zleave/Imakefile4
-rw-r--r--clients/zlocate/Imakefile4
-rw-r--r--clients/zmailnotify/Imakefile5
-rw-r--r--clients/znol/Imakefile4
-rw-r--r--clients/zpopnotify/Imakefile4
-rw-r--r--clients/zshutdown_notify/Imakefile4
-rw-r--r--clients/zstat/Imakefile3
-rw-r--r--clients/zwrite/Imakefile4
10 files changed, 43 insertions, 1 deletions
diff --git a/clients/zaway/Imakefile b/clients/zaway/Imakefile
index 5ed2f97..489add2 100644
--- a/clients/zaway/Imakefile
+++ b/clients/zaway/Imakefile
@@ -7,11 +7,15 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB} ${DES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
SRCS = zaway.c
OBJS = zaway.o
+SRCDIR= ${SRCTOP}/clients/zaway
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(zaway,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zctl/Imakefile b/clients/zctl/Imakefile
index bea30f5..ec6c9db 100644
--- a/clients/zctl/Imakefile
+++ b/clients/zctl/Imakefile
@@ -7,15 +7,21 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${SS_LIB} ${KRB_LIB} ${DES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${SS_LINTLIB} \
${KRB_LINTLIB} ${DES_LINTLIB}
SRCS = zctl.c
OBJS = zctl.o zctl_cmds.o
+OTHERSRCS= zctl_cmds.ct
+
#ifdef LOCAL_LIBS
-LINCLUDES=-I$(BUILDTOP)/ss
+LINCLUDES=-I$(BUILDTOP)/ss/lib
#endif
+SRCDIR= ${SRCTOP}/clients/zctl
+CODE= ${OTHERSRCS} ${SRCS} Imakefile
+
normal_obj_rule()
program(zctl,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zleave/Imakefile b/clients/zleave/Imakefile
index df38f5c..d9d8169 100644
--- a/clients/zleave/Imakefile
+++ b/clients/zleave/Imakefile
@@ -7,11 +7,15 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB} ${DES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
SRCS = zleave.c
OBJS = zleave.o
+SRCDIR= ${SRCTOP}/clients/zleave
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(zleave,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zlocate/Imakefile b/clients/zlocate/Imakefile
index e800403..eba1b7f 100644
--- a/clients/zlocate/Imakefile
+++ b/clients/zlocate/Imakefile
@@ -7,11 +7,15 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB} ${DES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
SRCS = zlocate.c
OBJS = zlocate.o
+SRCDIR= ${SRCTOP}/clients/zlocate
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(zlocate,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zmailnotify/Imakefile b/clients/zmailnotify/Imakefile
index c2e148e..ed8fbe5 100644
--- a/clients/zmailnotify/Imakefile
+++ b/clients/zmailnotify/Imakefile
@@ -7,12 +7,17 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB} ${DES_LIB} ${HES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
DEFINES= -DKPOP -DATHENA_COMPAT
SRCS = zmailnotify.c
OBJS = zmailnotify.o
+
+SRCDIR= ${SRCTOP}/clients/zmailnotify
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(zmailnotify,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/znol/Imakefile b/clients/znol/Imakefile
index de0bcc3..eeeba73 100644
--- a/clients/znol/Imakefile
+++ b/clients/znol/Imakefile
@@ -7,11 +7,15 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB} ${DES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
SRCS = znol.c
OBJS = znol.o
+SRCDIR= ${SRCTOP}/clients/znol
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(znol,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zpopnotify/Imakefile b/clients/zpopnotify/Imakefile
index 3112711..93b3316 100644
--- a/clients/zpopnotify/Imakefile
+++ b/clients/zpopnotify/Imakefile
@@ -7,11 +7,15 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB}
SRCS = zpopnotify.c
OBJS = zpopnotify.o
+SRCDIR= ${SRCTOP}/clients/zpopnotify
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(zpopnotify,${OBJS},,${LIBS},${USRETCDIR})
diff --git a/clients/zshutdown_notify/Imakefile b/clients/zshutdown_notify/Imakefile
index d77a2d5..c6817d2 100644
--- a/clients/zshutdown_notify/Imakefile
+++ b/clients/zshutdown_notify/Imakefile
@@ -7,11 +7,15 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB} ${DES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
SRCS = zshutdown_notify.c
OBJS = zshutdown_notify.o
+SRCDIR= ${SRCTOP}/clients/zshutdown_notify
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(zshutdown_notify,${OBJS},,${LIBS},${ETCATHDIR})
diff --git a/clients/zstat/Imakefile b/clients/zstat/Imakefile
index e63e6e1..260b495 100644
--- a/clients/zstat/Imakefile
+++ b/clients/zstat/Imakefile
@@ -12,6 +12,9 @@ LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
SRCS = zstat.c
OBJS = zstat.o
+SRCDIR= ${SRCTOP}/clients/zstat
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(zstat,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zwrite/Imakefile b/clients/zwrite/Imakefile
index 50ca69f..b60e17e 100644
--- a/clients/zwrite/Imakefile
+++ b/clients/zwrite/Imakefile
@@ -7,11 +7,15 @@
/**/# $Author$
/**/# $Header$
/**/#
+
LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB} ${DES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
SRCS = zwrite.c
OBJS = zwrite.o
+SRCDIR= ${SRCTOP}/clients/zwrite
+CODE= ${SRCS} Imakefile
+
normal_obj_rule()
program(zwrite,${OBJS},,${LIBS},${CLIENTDIR})