Deleted Added
full compact
Makefile (204076) Makefile (204596)
1# $FreeBSD: head/sbin/hastctl/Makefile 204076 2010-02-18 23:16:19Z pjd $
1# $FreeBSD: head/sbin/hastctl/Makefile 204596 2010-03-02 18:44:08Z uqs $
2
3.include <bsd.own.mk>
4
5.PATH: ${.CURDIR}/../hastd
6
7PROG= hastctl
8SRCS= activemap.c
9SRCS+= ebuf.c
10SRCS+= hast_proto.c hastctl.c
11SRCS+= metadata.c
12SRCS+= nv.c
13SRCS+= parse.y pjdlog.c
14SRCS+= proto.c proto_common.c proto_tcp4.c proto_uds.c
15SRCS+= token.l
16SRCS+= subr.c
17SRCS+= y.tab.h
2
3.include <bsd.own.mk>
4
5.PATH: ${.CURDIR}/../hastd
6
7PROG= hastctl
8SRCS= activemap.c
9SRCS+= ebuf.c
10SRCS+= hast_proto.c hastctl.c
11SRCS+= metadata.c
12SRCS+= nv.c
13SRCS+= parse.y pjdlog.c
14SRCS+= proto.c proto_common.c proto_tcp4.c proto_uds.c
15SRCS+= token.l
16SRCS+= subr.c
17SRCS+= y.tab.h
18WARNS?= 6
19MAN= hastctl.8
20
21CFLAGS+=-I${.CURDIR}/../hastd
22CFLAGS+=-DINET
23.if ${MK_INET6_SUPPORT} != "no"
24CFLAGS+=-DINET6
25.endif
26# This is needed to have WARNS > 1.
27CFLAGS+=-DYY_NO_UNPUT
28
29DPADD= ${LIBCRYPTO} ${LIBL}
30LDADD= -lcrypto -ll
31
32YFLAGS+=-v
33
34CLEANFILES=y.tab.c y.tab.h y.output
35
36.include <bsd.prog.mk>
18MAN= hastctl.8
19
20CFLAGS+=-I${.CURDIR}/../hastd
21CFLAGS+=-DINET
22.if ${MK_INET6_SUPPORT} != "no"
23CFLAGS+=-DINET6
24.endif
25# This is needed to have WARNS > 1.
26CFLAGS+=-DYY_NO_UNPUT
27
28DPADD= ${LIBCRYPTO} ${LIBL}
29LDADD= -lcrypto -ll
30
31YFLAGS+=-v
32
33CLEANFILES=y.tab.c y.tab.h y.output
34
35.include <bsd.prog.mk>