2010-02-18 23:16:19 +00:00
|
|
|
# $FreeBSD$
|
|
|
|
|
2014-05-06 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2010-02-18 23:16:19 +00:00
|
|
|
|
2016-02-08 21:15:07 +00:00
|
|
|
PACKAGE=hast
|
2010-02-18 23:16:19 +00:00
|
|
|
PROG= hastd
|
|
|
|
SRCS= activemap.c
|
2011-03-06 22:56:14 +00:00
|
|
|
SRCS+= control.c crc32.c
|
2010-08-30 23:26:10 +00:00
|
|
|
SRCS+= ebuf.c event.c
|
2011-03-06 23:09:33 +00:00
|
|
|
SRCS+= hast_checksum.c hast_compression.c hast_proto.c hastd.c hooks.c
|
|
|
|
SRCS+= lzf.c
|
2010-02-18 23:16:19 +00:00
|
|
|
SRCS+= metadata.c
|
|
|
|
SRCS+= nv.c
|
|
|
|
SRCS+= secondary.c
|
|
|
|
SRCS+= parse.y pjdlog.c primary.c
|
2011-05-20 11:06:17 +00:00
|
|
|
SRCS+= proto.c proto_common.c proto_socketpair.c proto_tcp.c proto_uds.c
|
2010-02-18 23:16:19 +00:00
|
|
|
SRCS+= rangelock.c
|
|
|
|
SRCS+= subr.c
|
|
|
|
SRCS+= token.l
|
|
|
|
SRCS+= y.tab.h
|
|
|
|
MAN= hastd.8 hast.conf.5
|
|
|
|
|
2011-03-07 10:38:18 +00:00
|
|
|
NO_WFORMAT=
|
2011-12-19 15:46:15 +00:00
|
|
|
NO_WCAST_ALIGN=
|
2013-04-19 19:45:00 +00:00
|
|
|
NO_WMISSING_VARIABLE_DECLARATIONS=
|
2010-02-18 23:16:19 +00:00
|
|
|
CFLAGS+=-I${.CURDIR}
|
2011-06-27 09:15:41 +00:00
|
|
|
CFLAGS+=-DHAVE_CAPSICUM
|
|
|
|
CFLAGS+=-DPROTO_TCP_DEFAULT_PORT=8457
|
2010-02-18 23:16:19 +00:00
|
|
|
CFLAGS+=-DINET
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
|
|
CFLAGS+=-DINET6
|
|
|
|
.endif
|
|
|
|
|
2017-02-04 06:12:48 +00:00
|
|
|
LIBADD= geom md pthread util
|
2010-02-18 23:16:19 +00:00
|
|
|
|
|
|
|
YFLAGS+=-v
|
|
|
|
|
|
|
|
CLEANFILES=y.tab.c y.tab.h y.output
|
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|