~ubuntu-branches/ubuntu/precise/dspam/precise

« back to all changes in this revision

Viewing changes to src/tools.hash_drv/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Trent Lloyd
  • Date: 2006-03-21 07:23:12 UTC
  • Revision ID: james.westby@ubuntu.com-20060321072312-jba9a1avit4r1y6s
Tags: upstream-3.6.4
ImportĀ upstreamĀ versionĀ 3.6.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id#
 
2
# tools.hash_drv/Makefile.am
 
3
#
 
4
 
 
5
EXTRA_DIST = 
 
6
 
 
7
AM_CPPFLAGS = \
 
8
  -DLOGDIR=\"$(logdir)\" -DCONFIG_DEFAULT=\"$(sysconfdir)/dspam.conf\" \
 
9
  -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -D_GNU_SOURCE -I$(top_srcdir)
 
10
 
 
11
CFLAGS = @CFLAGS@ -I$(top_srcdir)/src
 
12
 
 
13
bin_PROGRAMS = cssstat csscompress cssclean cssconvert
 
14
 
 
15
DEFS = @DEFS@ -DLOGDIR=\"$(logdir)\" \
 
16
       -DCONFIG_DEFAULT=\"$(sysconfdir)/dspam.conf\"\
 
17
       -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -D_GNU_SOURCE
 
18
 
 
19
cssstat_SOURCES =  cssstat.c ../read_config.c ../util.c ../diction.c \
 
20
                   ../nodetree.c ../hash_drv.c ../error.c ../config_shared.c \
 
21
                   ../pref.c
 
22
cssstat_LDFLAGS = -static
 
23
if DYNAMIC_DRIVER
 
24
if BUILD_HASH_DRV
 
25
cssstat_CPPFLAGS = $(libhash_drv_cppflags)
 
26
cssstat_LDFLAGS += $(libhash_drv_libs) $(libhash_drv_ldflags)
 
27
endif
 
28
endif
 
29
 
 
30
cssclean_SOURCES = cssclean.c ../read_config.c ../util.c ../diction.c \
 
31
                   ../nodetree.c ../hash_drv.c ../error.c ../config_shared.c \
 
32
                   ../pref.c
 
33
cssclean_LDFLAGS = -static
 
34
if DYNAMIC_DRIVER
 
35
if BUILD_HASH_DRV
 
36
cssclean_CPPFLAGS = $(libhash_drv_cppflags)
 
37
cssclean_LDFLAGS += $(libhash_drv_libs) $(libhash_drv_ldflags)
 
38
endif
 
39
endif
 
40
 
 
41
cssconvert_SOURCES = cssconvert.c ../read_config.c ../util.c ../diction.c \
 
42
                   ../nodetree.c ../hash_drv.c ../error.c ../config_shared.c \
 
43
                   ../pref.c
 
44
cssconvert_LDFLAGS = -static
 
45
if DYNAMIC_DRIVER
 
46
if BUILD_HASH_DRV
 
47
cssconvert_CPPFLAGS = $(libhash_drv_cppflags)
 
48
cssconvert_LDFLAGS += $(libhash_drv_libs) $(libhash_drv_ldflags)
 
49
endif
 
50
endif
 
51
 
 
52
csscompress_SOURCES = csscompress.c ../read_config.c ../util.c ../diction.c \
 
53
                   ../nodetree.c ../hash_drv.c ../error.c ../config_shared.c \
 
54
                   ../pref.c
 
55
csscompress_LDFLAGS = -static
 
56
if DYNAMIC_DRIVER
 
57
if BUILD_HASH_DRV
 
58
csscompress_CPPFLAGS = $(libhash_drv_cppflags)
 
59
csscompress_LDFLAGS += $(libhash_drv_libs) $(libhash_drv_ldflags)
 
60
endif
 
61
endif