blob: 5ce1599be0faeac008f980c66edf9a7ea4bce7b9 (
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
|
noinst_LTLIBRARIES = libsieve_ext_include.la
AM_CPPFLAGS = \
-I$(srcdir)/../.. \
-I$(srcdir)/../variables \
$(LIBDOVECOT_INCLUDE)
cmds = \
cmd-include.c \
cmd-return.c \
cmd-global.c
libsieve_ext_include_la_SOURCES = \
$(cmds) \
ext-include-common.c \
ext-include-binary.c \
ext-include-variables.c \
ext-include.c
noinst_HEADERS = \
ext-include-common.h \
ext-include-limits.h \
ext-include-binary.h \
ext-include-variables.h
|