diff options
author | John Kohl <jtkohl@mit.edu> | 1988-11-14 06:46:50 +0000 |
---|---|---|
committer | John Kohl <jtkohl@mit.edu> | 1988-11-14 06:46:50 +0000 |
commit | f9e20e8e2b1599c01d759306cef5e9459b729b0a (patch) | |
tree | 86cc63075b30f05d89d0cb19233c9dc5896f01c9 /clients/Imakefile | |
parent | e926e5c7fc697fb7fb0f0e47f44132deb563b8e4 (diff) |
Initial revision
Diffstat (limited to 'clients/Imakefile')
-rw-r--r-- | clients/Imakefile | 38 |
1 files changed, 38 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 |