Files
evolution/plugins/mail-remote/Makefile.am
Not Zed 7265cc314c A camel-stream to wrap Evolution_Mail_MessageStream.
2005-05-27  Not Zed  <NotZed@Ximian.com>

        * em-message-stream.[ch]: A camel-stream to wrap
        Evolution_Mail_MessageStream.

        * evolution-mail-messagestream.[ch]: simplified read-only stream
        interface rather than using bonobo-stream.  It wraps a
        camel-stream only & simplified lifecycle management.

        * evolution-mail-store.c (evolution_mail_store_changed): if we
        have no more listeners, close the camelstore object off.

        * Evolution-DataServer-Mail.idl: changed exceptions to use one
        exception type with details.  Fixed code to use these.

svn path=/trunk/; revision=29418
2005-05-27 11:18:41 +00:00

86 lines
2.1 KiB
Makefile

INCLUDES = \
-I$(top_srcdir) \
$(EVOLUTION_MAIL_CFLAGS)
@EVO_PLUGIN_RULE@
plugin_DATA = org-gnome-evolution-mail-remote.eplug
plugin_LTLIBRARIES = liborg-gnome-evolution-mail-remote.la
liborg_gnome_evolution_mail_remote_la_SOURCES = \
$(IDL_GENERATED_C) \
$(IDL_GENERATED_H) \
e-corba-utils.c \
e-corba-utils.h \
em-message-stream.c \
em-message-stream.h \
evolution-mail-folder.c \
evolution-mail-folder.h \
evolution-mail-folderlistener.c \
evolution-mail-folderlistener.h \
evolution-mail-marshal.c \
evolution-mail-marshal.h \
evolution-mail-messageiterator.c \
evolution-mail-messageiterator.h \
evolution-mail-messagestream.c \
evolution-mail-messagestream.h \
evolution-mail-session.c \
evolution-mail-session.h \
evolution-mail-sessionlistener.c \
evolution-mail-sessionlistener.h \
evolution-mail-store.c \
evolution-mail-store.h \
evolution-mail-storelistener.c \
evolution-mail-storelistener.h \
mail-remote.c
liborg_gnome_evolution_mail_remote_la_LDFLAGS = -module -avoid-version
client_SOURCES = \
client.c
client_LDADD = \
$(EVOLUTION_MAIL_LIBS) \
evolution-mail-sessionlistener.o \
evolution-mail-storelistener.o \
evolution-mail-folderlistener.o \
evolution-mail-marshal.o \
evolution-mail-messagestream.o \
Evolution-DataServer-Mail-common.o \
Evolution-DataServer-Mail-stubs.o \
Evolution-DataServer-Mail-skels.o
noinst_PROGRAMS = \
client
# mail idl
IDL = Evolution-DataServer-Mail.idl
IDL_GENERATED_H = \
Evolution-DataServer-Mail.h
IDL_GENERATED_C = \
Evolution-DataServer-Mail-common.c \
Evolution-DataServer-Mail-skels.c \
Evolution-DataServer-Mail-stubs.c
$(IDL_GENERATED_H) $(IDL_GENERATED_C): $(IDL)
$(ORBIT_IDL) -I $(srcdir) -I $(datadir)/idl $(IDL_INCLUDES) $^
# installed idls
#idl_DATA = $(IDL)
# marshallers for glib
MARSHAL_GENERATED = evolution-mail-marshal.c evolution-mail-marshal.h
@EVO_MARSHAL_RULE@
EXTRA_DIST = \
$(IDL) \
evolution-mail-marshal.list
BUILT_SOURCES = $(IDL_GENERATED_H) $(IDL_GENERATED_C) $(MARSHAL_GENERATED)
CLEANFILES = $(BUILT_SOURCES)