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