2000-02-14 Miguel de Icaza <miguel@gnu.org> * camel/providers/mbox/Makefile.am (libcamelmbox_la_LIBADD): Add the unicode libraries as well. * camel/camel-provider.c (camel_provider_register_as_module): Add error reporting here. Desire to use Solaris increases. Hair loss in the last two hours: 5,400. * camel/providers/mbox/camel-mbox-provider.c (camel_mbox_get_provider): Renamed function. * camel/camel.h: All include files use camel/ now here. * camel/providers/mbox/Makefile.am: Drop all the dynamism from Camel, and make this a standard library. * configure.in: set the UNICODE_LIBS variable here. 2000-02-14 Miguel de Icaza <miguel@gnu.org> * folder-browser.c (folder_browser_load_folder): New routine, loads a camel folder. (folder_browser_set_uri): redo. * session.c: new file. Implements SessionStores to keep track of a Session/Store tuple. svn path=/trunk/; revision=1783
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
bin_PROGRAMS = evolution-mail test-mail
|
|
|
|
providerdir = $(libdir)/evolution/camel-providers/$(VERSION)
|
|
|
|
INCLUDES = \
|
|
-DEVOLUTION_VERSION=\""$(VERSION)"\" \
|
|
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
|
|
-DEVOLUTION_ICONSDIR=\""$(iconsdir)"\" \
|
|
-DEVOLUTION_LOCALEDIR=\""$(datadir)/locale"\" \
|
|
-DCAMEL_PROVIDERDIR=\""$(providerdir)"\" \
|
|
-I$(top_srcdir)/widgets \
|
|
-I$(top_srcdir)/widgets/e-text \
|
|
$(BONOBO_HTML_GNOME_CFLAGS)
|
|
|
|
EVOLUTION_MAIL_CORBA_GENERATED = \
|
|
Mail.h \
|
|
Mail-common.c \
|
|
Mail-skels.c \
|
|
Mail-stubs.c
|
|
|
|
evolution_mail_SOURCES = \
|
|
$(EVOLUTION_MAIL_CORBA_GENERATED) \
|
|
folder-browser.c \
|
|
folder-browser.h \
|
|
folder-browser-factory.c \
|
|
folder-browser-factory.h \
|
|
html-stream.c \
|
|
html-stream.h \
|
|
mail-display.h \
|
|
mail-display.c \
|
|
main.c \
|
|
message-list.c \
|
|
message-list.h \
|
|
session.c \
|
|
session.h
|
|
|
|
evolution_mail_LDADD = \
|
|
../widgets/e-table/libetable.a \
|
|
../widgets/e-text/libetext.a \
|
|
../camel/libcamel.la \
|
|
../e-util/libeutil.a \
|
|
$(BONOBO_HTML_GNOME_LIBS)
|
|
|
|
test_mail_SOURCES = \
|
|
test-mail.c
|
|
|
|
test_mail_LDADD = \
|
|
$(BONOBO_HTML_GNOME_LIBS)
|
|
|
|
gnorbadir = $(sysconfdir)/CORBA/servers
|
|
gnorba_DATA = evolution-mail.gnorba
|
|
|
|
$(EVOLUTION_MAIL_CORBA_GENERATED): Mail.idl
|
|
orbit-idl -I`$(GNOME_CONFIG) --datadir`/idl -I$(srcdir) $(srcdir)/Mail.idl
|
|
|
|
EXTRA_DIST = Mail.idl evolution-mail.gnorba
|