summaryrefslogtreecommitdiff
path: root/clients
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1988-11-14 06:46:50 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1988-11-14 06:46:50 +0000
commitf9e20e8e2b1599c01d759306cef5e9459b729b0a (patch)
tree86cc63075b30f05d89d0cb19233c9dc5896f01c9 /clients
parente926e5c7fc697fb7fb0f0e47f44132deb563b8e4 (diff)
Initial revision
Diffstat (limited to 'clients')
-rw-r--r--clients/Imakefile38
-rw-r--r--clients/syslogd/Imakefile21
-rw-r--r--clients/zaway/Imakefile17
-rw-r--r--clients/zctl/Imakefile26
-rw-r--r--clients/zleave/Imakefile17
-rw-r--r--clients/zlocate/Imakefile17
-rw-r--r--clients/zmailnotify/Imakefile18
-rw-r--r--clients/znol/Imakefile17
-rw-r--r--clients/zpopnotify/Imakefile17
-rw-r--r--clients/zshutdown_notify/Imakefile17
-rw-r--r--clients/zstat/Imakefile17
-rw-r--r--clients/zwrite/Imakefile17
12 files changed, 239 insertions, 0 deletions
diff --git a/clients/Imakefile b/clients/Imakefile
new file mode 100644
index 0000000..41dc09e
--- /dev/null
+++ b/clients/Imakefile
@@ -0,0 +1,38 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $Author$
+/**/# $Header$
+/**/#
+#define have_subdirs
+#define no_curdir_lint
+
+#ifdef DO_SYSLOG
+SYSLOGD= syslogd
+#else /* !DO_SYSLOG */
+SYSLOGD=
+#endif
+
+#if defined(HESIOD) && defined(KERBEROS)
+ZMAILNOTIFY= zmailnotify
+#else /* !HESIOD || !KERBEROS */
+/* zmailnotify will only compile properly with Hesiod and Kerberos, so
+ there is no sense in building it when either is not in use. */
+ZMAILNOTIFY=
+#endif /* HESIOD && KERBEROS */
+
+SUBDIRS = zaway zctl zinit zleave zlocate \
+ $(ZMAILNOTIFY) znol zpopnotify zshutdown_notify zstat zwrite $(SYSLOGD)
+
+#ifdef OLD_ATHENA_COMPAT
+SHELLSCRIPTS= zlogout zhide zwgc
+
+install_shell_scripts(SHELLSCRIPTS, $(CLIENTDIR))
+
+install::
+ rm -f ${DESTDIR}/usr/athena/zlogin
+ ln -s zlogout ${DESTDIR}/usr/athena/zlogin
+#endif
diff --git a/clients/syslogd/Imakefile b/clients/syslogd/Imakefile
new file mode 100644
index 0000000..e0ab9f4
--- /dev/null
+++ b/clients/syslogd/Imakefile
@@ -0,0 +1,21 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $Author$
+/**/# $Header$
+/**/#
+LIBS= $(ZEPHYR_LIB) $(COMERR_LIB) $(KRB_LIB)
+LINCLUDES=-I.
+LINTLIBS=$(ZEPHYR_LINTLIB) $(COMERR_LINTLIB) $(KRB_LINTLIB)
+SRCS = syslogd.c
+OBJS = syslogd.o
+#ifdef SYSLOG_COMPAT42
+DEFINES = -DCOMPAT42
+#endif
+
+normal_obj_rule()
+
+program(syslogd,$(OBJS),,$(LIBS),$(USRETCDIR))
diff --git a/clients/zaway/Imakefile b/clients/zaway/Imakefile
new file mode 100644
index 0000000..5ed2f97
--- /dev/null
+++ b/clients/zaway/Imakefile
@@ -0,0 +1,17 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $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
+
+normal_obj_rule()
+
+program(zaway,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zctl/Imakefile b/clients/zctl/Imakefile
new file mode 100644
index 0000000..cda79d0
--- /dev/null
+++ b/clients/zctl/Imakefile
@@ -0,0 +1,26 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $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
+#ifdef LOCAL_LIBS
+LINCLUDES=-I$(BUILDTOP)/ss
+#endif
+
+normal_obj_rule()
+
+command_table(zctl_cmds)
+
+program(zctl,${OBJS},,${LIBS},${CLIENTDIR})
+
+clean::
+ rm -f zctl_cmds.ct.o
diff --git a/clients/zleave/Imakefile b/clients/zleave/Imakefile
new file mode 100644
index 0000000..df38f5c
--- /dev/null
+++ b/clients/zleave/Imakefile
@@ -0,0 +1,17 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $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
+
+normal_obj_rule()
+
+program(zleave,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zlocate/Imakefile b/clients/zlocate/Imakefile
new file mode 100644
index 0000000..e800403
--- /dev/null
+++ b/clients/zlocate/Imakefile
@@ -0,0 +1,17 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $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
+
+normal_obj_rule()
+
+program(zlocate,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zmailnotify/Imakefile b/clients/zmailnotify/Imakefile
new file mode 100644
index 0000000..c2e148e
--- /dev/null
+++ b/clients/zmailnotify/Imakefile
@@ -0,0 +1,18 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $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
+normal_obj_rule()
+
+program(zmailnotify,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/znol/Imakefile b/clients/znol/Imakefile
new file mode 100644
index 0000000..de0bcc3
--- /dev/null
+++ b/clients/znol/Imakefile
@@ -0,0 +1,17 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $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
+
+normal_obj_rule()
+
+program(znol,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zpopnotify/Imakefile b/clients/zpopnotify/Imakefile
new file mode 100644
index 0000000..3112711
--- /dev/null
+++ b/clients/zpopnotify/Imakefile
@@ -0,0 +1,17 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $Author$
+/**/# $Header$
+/**/#
+LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB}
+LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB}
+SRCS = zpopnotify.c
+OBJS = zpopnotify.o
+
+normal_obj_rule()
+
+program(zpopnotify,${OBJS},,${LIBS},${USRETCDIR})
diff --git a/clients/zshutdown_notify/Imakefile b/clients/zshutdown_notify/Imakefile
new file mode 100644
index 0000000..d77a2d5
--- /dev/null
+++ b/clients/zshutdown_notify/Imakefile
@@ -0,0 +1,17 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $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
+
+normal_obj_rule()
+
+program(zshutdown_notify,${OBJS},,${LIBS},${ETCATHDIR})
diff --git a/clients/zstat/Imakefile b/clients/zstat/Imakefile
new file mode 100644
index 0000000..e63e6e1
--- /dev/null
+++ b/clients/zstat/Imakefile
@@ -0,0 +1,17 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $Author$
+/**/# $Header$
+/**/#
+LIBS= ${ZEPHYR_LIB} ${COMERR_LIB} ${KRB_LIB} ${DES_LIB}
+LINTLIBS= ${ZEPHYR_LINTLIB} ${COMERR_LINTLIB} ${KRB_LINTLIB} ${DES_LINTLIB}
+SRCS = zstat.c
+OBJS = zstat.o
+
+normal_obj_rule()
+
+program(zstat,${OBJS},,${LIBS},${CLIENTDIR})
diff --git a/clients/zwrite/Imakefile b/clients/zwrite/Imakefile
new file mode 100644
index 0000000..50ca69f
--- /dev/null
+++ b/clients/zwrite/Imakefile
@@ -0,0 +1,17 @@
+/**/# Copyright 1988 Massachusetts Institute of Technology.
+/**/#
+/**/# For copying and distribution information, see the file
+/**/# "mit-copyright.h".
+/**/#
+/**/# $Source$
+/**/# $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
+
+normal_obj_rule()
+
+program(zwrite,${OBJS},,${LIBS},${CLIENTDIR})