Mercurial > dnsbl
annotate src/Makefile.am @ 201:752d4315675c stable-6-0-16
add reference to mercurial repository in the documentation
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 02 Feb 2008 12:31:53 -0800 |
parents | d6531c702be3 |
children | 4db1457cd11a |
rev | line source |
---|---|
108 | 1 sbin_PROGRAMS = dnsbl |
178 | 2 dnsbl_SOURCES = dnsbl.cpp dnsbl.h dccifd.cpp dccifd.h spamass.cpp spamass.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. | |
162 | 9 dnsbl_LDFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) |
148
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 | |
162 | 13 dnsbl_CXXFLAGS = $(PTHREAD_CFLAGS) |
108 | 14 |