summaryrefslogtreecommitdiff
path: root/zhm/Imakefile
blob: 5614b252fcac125bed9b2ca49d05e2ac33bed511 (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
30
31
32
33
34
35
/**/#	Copyright 1988, 1991 Massachusetts Institute of Technology.
/**/#
/**/#	For copying and distribution information, see the file
/**/#	"mit-copyright.h". 
/**/#
/**/#	$Source$
/**/#	$Author$
/**/#	$Zephyr: /mit/zephyr/src/zhm/RCS/Imakefile,v 1.8 91/03/21 11:38:01 raeburn Exp $
/**/#

#if defined(DO_SYSLOG) && defined(SYSLOG_COMPAT42)
SYSLOG_LIB= ../clients/syslogd/syslog.o
#else
SYSLOG_LIB=
#endif

SRCS= zhm.c zhm_server.c zhm_client.c queue.c
LIBS= ${SYSLOG_LIB} ${ZEPHYR_LIB} ${KRB_LIB} ${COMERR_LIB} ${HES_LIB}
LINTLIBS= ${ZEPHYR_LINTLIB} ${KRB_LINTLIB} ${COMERR_LINTLIB} ${HES_LINTLIB}
OBJS= zhm.o zhm_server.o zhm_client.o queue.o
HDRS= zhm.h

SRCDIR= ${SRCTOP}/zhm
CODE= ${HDRS} ${SRCS} Imakefile

/*
 * The pathname for the pid file.
 */
ZHMPIDFILE=PidFile($(ETCATHDIR))/zhm.pid

DEFINES=-DPIDFILE=\"$(ZHMPIDFILE)\"

normal_obj_rule()

program(zhm,${OBJS},,${LIBS},${ETCATHDIR})