blob: 88f2584d7b3033bb3022faae2f707bab5cd50be3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
##
## $P4: //depot/projects/trustedbsd/openbsm/bin/auditdistd/Makefile.am#1 $
##
if USE_NATIVE_INCLUDES
INCLUDES = -I$(top_builddir) -I$(top_srcdir)
else
INCLUDES = -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/sys
endif
sbin_PROGRAMS = auditdistd
man5_MANS = auditdistd.conf.5
man8_MANS = auditdistd.8
CFLAGS = -Wno-format
YFLAGS = -d
auditdistd_LDFLAGS = -lcrypto
auditdistd_SOURCES = \
auditdistd.c \
parse.y \
pjdlog.c \
proto.c \
proto_common.c \
proto_socketpair.c \
proto_tcp.c \
proto_tls.c \
proto_uds.c \
receiver.c \
sandbox.c \
sender.c \
subr.c \
token.l \
trail.c
|