blob: 8b7f3e967220d33113ab0d606439b4734c84f291 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
if WITH_CXX_BINDINGS
cxx_inc=-DWITH_CXX_BINDINGS
cxx_libs=../libical/libical-evolution_cxx.la
regression_cxx = regression-cxx.cpp
else
cxx_inc=
cxx_libs=
regression_cxx =
AM_CXX=@CC@
endif
if WITH_BDB4
bdb4_inc=-DWITH_BDB -I@BDB_DIR@/include
bdb4_libs=@BDB_DIR_LIB@/@BDB_LIB@
else
bdb4_inc=
bdb4_libs=
endif
noinst_PROGRAMS = copycluster regression parser stow recur testmime testvcal process
LDADD = ../libicalss/libicalss-evolution.la ../libicalvcal/libicalvcal-evolution.la $(cxx_libs) ../libical/libical-evolution.la $(bdb4_libs)
LIBS = @PTHREAD_LIBS@
INCLUDES = \
-I. \
-I../libicalvcal \
-I$(srcdir)/../libicalvcal \
-I$(srcdir) \
-I../libical \
-I$(srcdir)/../libical \
-I../libicalss \
-I$(srcdir)/../libicalss \
$(cxx_inc) $(bdb4_inc)
TESTS=regression
copycluster_SOURCES = copycluster.c
regression_SOURCES = \
regression.c \
regression.h \
regression-component.c \
regression-classify.c \
regression-utils.c \
regression-recur.c \
regression-storage.c \
$(regression_cxx)
parser_SOURCES = icaltestparser.c
stow_SOURCES = stow.c
testvcal_SOURCES = testvcal.c
recur_SOURCES = recur.c
testmime_SOURCES = testmime.c
process_SOURCES = process.c
|