Mercurial > dnsbl
annotate src/Makefile.am @ 161:d384df37491f stable-6-02
allow manual updates to auto whitelist files
author | carl |
---|---|
date | Tue, 10 Jul 2007 14:09:23 -0700 |
parents | 9330b8d6a56b |
children | c4bce911c276 |
rev | line source |
---|---|
108 | 1 sbin_PROGRAMS = dnsbl |
2 dnsbl_SOURCES = dnsbl.cpp dnsbl.h context.cpp context.h tokenizer.cpp tokenizer.h scanner.cpp scanner.h includes.h | |
113 | 3 EXTRA_DIST = test.cpp |
108 | 4 |
5 # set the include path found by configure | |
6 INCLUDES= $(all_includes) | |
7 | |
8 # the library search path. | |
148
9330b8d6a56b
add documentation fixes, allow env_from target of inherit
carl
parents:
113
diff
changeset
|
9 dnsbl_LDFLAGS = -pthread |
9330b8d6a56b
add documentation fixes, allow env_from target of inherit
carl
parents:
113
diff
changeset
|
10 dnsbl_LDADD = $(all_libraries) /usr/lib/libresolv.a -lmilter |
108 | 11 |
12 # default compile flags | |
13 dnsbl_CXXFLAGS = -pthread | |
14 |