]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/auditdistd/Makefile
stand/powerpc: Only build loader.kboot for powerpc64
[FreeBSD/FreeBSD.git] / usr.sbin / auditdistd / Makefile
1 #
2 # $FreeBSD$
3 #
4
5 OPENBSMDIR=${SRCTOP}/contrib/openbsm
6 .PATH: ${OPENBSMDIR}/bin/auditdistd
7
8 # Addition of auditdistd because otherwise generated parse.c can't find
9 # auditdistd.h.  This seems like a makefile non-feature.
10 CFLAGS+=-I${OPENBSMDIR} -I${OPENBSMDIR}/bin/auditdistd
11
12 NO_WFORMAT=
13 NO_WMISSING_VARIABLE_DECLARATIONS=
14
15 PROG=   auditdistd
16 SRCS=   auditdistd.c
17 SRCS+=  parse.y pjdlog.c
18 SRCS+=  proto.c proto_common.c proto_socketpair.c proto_tcp.c proto_tls.c
19 SRCS+=  receiver.c
20 SRCS+=  sandbox.c sender.c subr.c
21 SRCS+=  token.l trail.c
22 MAN=    auditdistd.8 auditdistd.conf.5
23
24 LIBADD+=        l pthread util crypto ssl
25
26 YFLAGS+=-v
27
28 CLEANFILES=parse.c parse.h parse.output
29
30 # auditdistd cannot use FreeBSD specific lock annotation macros. Disable
31 # thread safety analysis completely.
32 NO_WTHREAD_SAFETY=
33
34 .include <bsd.prog.mk>