summaryrefslogtreecommitdiffstats
path: root/sbin/hastctl/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/hastctl/Makefile')
-rw-r--r--sbin/hastctl/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/sbin/hastctl/Makefile b/sbin/hastctl/Makefile
new file mode 100644
index 0000000..43c8c20
--- /dev/null
+++ b/sbin/hastctl/Makefile
@@ -0,0 +1,36 @@
+# $FreeBSD$
+
+.include <bsd.own.mk>
+
+.PATH: ${.CURDIR}/../hastd
+
+PROG= hastctl
+SRCS= activemap.c
+SRCS+= ebuf.c
+SRCS+= hast_proto.c hastctl.c
+SRCS+= metadata.c
+SRCS+= nv.c
+SRCS+= parse.y pjdlog.c
+SRCS+= proto.c proto_common.c proto_tcp4.c proto_uds.c
+SRCS+= token.l
+SRCS+= subr.c
+SRCS+= y.tab.h
+WARNS?= 6
+MAN= hastctl.8
+
+CFLAGS+=-I${.CURDIR}/../hastd
+CFLAGS+=-DINET
+.if ${MK_INET6_SUPPORT} != "no"
+CFLAGS+=-DINET6
+.endif
+# This is needed to have WARNS > 1.
+CFLAGS+=-DYY_NO_UNPUT
+
+DPADD= ${LIBCRYPTO} ${LIBL}
+LDADD= -lcrypto -ll
+
+YFLAGS+=-v
+
+CLEANFILES=y.tab.c y.tab.h y.output
+
+.include <bsd.prog.mk>
OpenPOWER on IntegriCloud