view src/imap/Makefile.am @ 761:d3bd41a56309 HEAD

First implementation of SORT extension. String comparing still not up to spec, so we don't advertise it in capability string yet. The code supports getting the data partially pre-sorted to reduce memory usage and make it faster. So, in future we could use this by creating sorted binary trees. Also moved mail-storage-register.c into it's own .a lib to fix circular dependencies.
author Timo Sirainen <tss@iki.fi>
date Wed, 04 Dec 2002 20:28:37 +0200
parents b7aefd0d7611
children 4f697dde0fca
line wrap: on
line source

pkglibexecdir = $(libexecdir)/dovecot

pkglibexec_PROGRAMS = imap

INCLUDES = \
	-I$(top_srcdir)/src/lib \
	-I$(top_srcdir)/src/lib-mail \
	-I$(top_srcdir)/src/lib-imap \
	-I$(top_srcdir)/src/lib-storage

imap_LDADD = \
	../lib-storage/register/libstorage-register.a \
	../lib-storage/index/maildir/libstorage_maildir.a \
	../lib-storage/index/mbox/libstorage_mbox.a \
	../lib-storage/index/libstorage_index.a \
	../lib-storage/libstorage.a \
	../lib-index/maildir/libstorage_index_maildir.a \
	../lib-index/mbox/libstorage_index_mbox.a \
	../lib-index/libstorage_index.a \
	../lib-storage/subscription-file/libstorage_subscription_file.a \
	../lib-imap/libimap.a \
	../lib-mail/libmail.a \
	../lib-charset/libcharset.a \
	../lib/liblib.a

cmds = \
	cmd-append.c \
	cmd-authenticate.c \
	cmd-capability.c \
	cmd-check.c \
	cmd-close.c \
	cmd-copy.c \
	cmd-create.c \
	cmd-delete.c \
	cmd-examine.c \
	cmd-expunge.c \
	cmd-fetch.c \
	cmd-list.c \
	cmd-login.c \
	cmd-logout.c \
	cmd-lsub.c \
	cmd-noop.c \
	cmd-rename.c \
	cmd-search.c \
	cmd-select.c \
	cmd-sort.c \
	cmd-status.c \
	cmd-store.c \
	cmd-subscribe.c \
	cmd-uid.c \
	cmd-unsubscribe.c

imap_SOURCES = \
	$(cmds) \
	client.c \
	commands.c \
	commands-util.c \
	mail-storage-callbacks.c \
	main.c \
	rawlog.c

noinst_HEADERS = \
	client.h \
	commands.h \
	commands-util.h \
	common.h \
	rawlog.h