blob: 4b6563032eb0e53efaf28317a39a32ef2d99e5a2 (
plain)
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
|
SUBDIRS = mailto
noinst_LTLIBRARIES = libsieve_ext_enotify.la
AM_CPPFLAGS = \
-I$(srcdir)/../.. \
-I$(srcdir)/../variables \
$(LIBDOVECOT_INCLUDE)
commands = \
cmd-notify.c
tests = \
tst-valid-notify-method.c \
tst-notify-method-capability.c
var_modifiers = \
vmodf-encodeurl.c
notify_methods = \
./mailto/libsieve_ext_enotify_mailto.la
libsieve_ext_enotify_la_DEPENDENCIES = \
$(notify_methods)
libsieve_ext_enotify_la_LIBADD = \
$(notify_methods)
libsieve_ext_enotify_la_SOURCES = \
ext-enotify.c \
ext-enotify-common.c \
$(commands) \
$(tests) \
$(var_modifiers)
public_headers = \
sieve-ext-enotify.h
headers = \
ext-enotify-limits.h \
ext-enotify-common.h
pkginc_libdir=$(dovecot_pkgincludedir)/sieve
pkginc_lib_HEADERS = $(public_headers)
noinst_HEADERS = $(headers)
|