blob: 58a9df3bc2e9d60f374098d6d3ae6fc036ec2154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
noinst_LTLIBRARIES = libstorage_raw.la
AM_CPPFLAGS = \
-I$(top_srcdir)/src/lib \
-I$(top_srcdir)/src/lib-mail \
-I$(top_srcdir)/src/lib-imap \
-I$(top_srcdir)/src/lib-index \
-I$(top_srcdir)/src/lib-storage \
-I$(top_srcdir)/src/lib-storage/index
libstorage_raw_la_SOURCES = \
raw-mail.c \
raw-sync.c \
raw-storage.c
headers = \
raw-storage.h \
raw-sync.h
pkginc_libdir=$(pkgincludedir)
pkginc_lib_HEADERS = $(headers)
|