Mercurial > syslog2iptables
annotate src/Makefile.am @ 51:206448c00b55 stable-1-0-12
Allow multiple contexts with independent add/remove commands.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 24 Jan 2009 15:52:20 -0800 |
parents | 4eaee1fcffa7 |
children | d237bc6331ad |
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) |
11 syslog2iptables_LDADD = $(all_libraries) | |
5 | 12 |
9 | 13 # default compile flags |
46 | 14 syslog2iptables_CXXFLAGS = $(PTHREAD_CFLAGS) |
9 | 15 |