xref: /dflybsd-src/usr.sbin/nscd/Makefile (revision ed7f5f7abb722ac05a28b013cdf96a1105c2918a)
1# $FreeBSD: src/usr.sbin/nscd/Makefile,v 1.5 2007/11/20 02:07:29 jb Exp $
2
3PROG=	nscd
4MAN=	nscd.conf.5 nscd.8
5
6WARNS?=	2
7CFLAGS+=-fno-strict-aliasing
8SRCS=	agent.c cachelib.c cacheplcs.c config.c debug.c log.c \
9	mp_rs_query.c mp_ws_query.c nscd.c nscdcli.c parser.c \
10	protocol.c query.c singletons.c
11CFLAGS+= -DCONFIG_PATH="\"${PREFIX}/etc/nscd.conf\""
12DPADD=	${LIBM} ${LIBPTHREAD} ${LIBUTIL}
13LDADD=	-lm -lpthread -lutil
14
15.PATH: ${.CURDIR}/agents
16.include "${.CURDIR}/agents/Makefile.inc"
17.include <bsd.prog.mk>
18