blob: 32f9692a7d9e34d7dc6627b64fee1e5904173e90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/**/# Copyright 1988 Massachusetts Institute of Technology.
/**/#
/**/# For copying and distribution information, see the file
/**/# "mit-copyright.h".
/**/#
/**/# $Source$
/**/# $Author$
/**/# $Id$
/**/#
LIBS= ${ZEPHYR_LIB} ${KRB_LIB} ${DES_LIB} ${COMERR_LIB} ${HES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${KRB_LINTLIB} ${COMERR_LINTLIB} ${DES_LINTLIB}
DEFINES= -DKPOP
SRCS = zmailnotify.c
OBJS = zmailnotify.o
SRCDIR= ${SRCTOP}/clients/zmailnotify
CODE= ${SRCS} Imakefile
normal_obj_rule()
program(zmailnotify,${OBJS},,${LIBS},${CLIENTDIR})
#ifdef ATHENA_COMPAT
install::
$(RM) $(DESTDIR)/usr/athena/zmailnotify
ln -s $(CLIENTDIR)/zmailnotify $(DESTDIR)/usr/athena/zmailnofity
#endif
|