xref: /freebsd/usr.sbin/nscd/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1CONFS=	nscd.conf
2PROG=	nscd
3MAN=	nscd.conf.5 nscd.8
4
5WARNS?=	3
6SRCS=	agent.c nscd.c nscdcli.c cachelib.c cacheplcs.c debug.c log.c \
7	config.c query.c mp_ws_query.c mp_rs_query.c singletons.c protocol.c \
8	parser.c
9CFLAGS+= -DCONFIG_PATH="\"${PREFIX}/etc/nscd.conf\""
10
11LIBADD=	util pthread
12
13.PATH: ${.CURDIR}/agents
14.include "${.CURDIR}/agents/Makefile.inc"
15.include <bsd.prog.mk>
16