view src/lib-storage/index/shared/Makefile.am @ 8173:6dd0c6755afe HEAD

Added initial support for shared mailboxes. Listing isn't supported yet. Each user gets their own hidden namespace created automatically when they're accessed the first time.
author Timo Sirainen <tss@iki.fi>
date Sun, 07 Sep 2008 22:34:11 +0300
parents
children 469fc16380da
line wrap: on
line source

noinst_LIBRARIES = libstorage_shared.a

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_shared_a_SOURCES = \
	shared-list.c \
	shared-storage.c

headers = \
	shared-storage.h

if INSTALL_HEADERS
  pkginc_libdir=$(pkgincludedir)/src/lib-storage/index/shared
  pkginc_lib_HEADERS = $(headers)
else
  noinst_HEADERS = $(headers)
endif