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