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