Mercurial > dnsbl
annotate src/Makefile.am @ 164:5809bcdc325b stable-6-0-4
spamassassin changes
author | carl |
---|---|
date | Sun, 26 Aug 2007 19:43:35 -0700 |
parents | 97d7da45fe2a |
children | d6531c702be3 |
rev | line source |
---|---|
108 | 1 sbin_PROGRAMS = dnsbl |
163 | 2 dnsbl_SOURCES = dnsbl.cpp dnsbl.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 |