Mercurial > syslog2iptables
annotate src/Makefile.am @ 60:a20b31625b44
need --add-missing for newer systems
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Tue, 10 Jun 2014 09:13:16 -0700 |
parents | d237bc6331ad |
children | c6c8a2102a3e |
rev | line source |
---|---|
5 | 1 sbin_PROGRAMS = syslog2iptables |
1 | 2 syslog2iptables_SOURCES = syslog2iptables.cpp tokenizer.cpp tokenizer.h \ |
44
9e9f09cf411c
Add fixes for Solaris from sm-archive.
Carl Byington <carl@five-ten-sg.com>
parents:
9
diff
changeset
|
3 includes.h syslogconfig.cpp syslogconfig.h syslog2iptables.h daemon.h |
9e9f09cf411c
Add fixes for Solaris from sm-archive.
Carl Byington <carl@five-ten-sg.com>
parents:
9
diff
changeset
|
4 EXTRA_DIST = daemon.c |
1 | 5 |
6 # set the include path found by configure | |
7 INCLUDES= $(all_includes) | |
8 | |
9 # the library search path. | |
46 | 10 syslog2iptables_LDFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) |
55
d237bc6331ad
autoconf cleanup from libpst changes
Carl Byington <carl@five-ten-sg.com>
parents:
46
diff
changeset
|
11 syslog2iptables_LDADD = $(all_libraries) $(REGEXLIB) |
5 | 12 |
9 | 13 # default compile flags |
46 | 14 syslog2iptables_CXXFLAGS = $(PTHREAD_CFLAGS) |
9 | 15 |