diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-13 12:53:48 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2000-06-13 12:53:48 +0800 |
commit | 7ba831860dfa5e96d9d19a0b5907d5237e60596a (patch) | |
tree | 50cc600ccb20b0f5204d559e3ab31f189ad718c8 /mail | |
parent | cc240fcffe0ecf84e83428b2f05bc08259396ffe (diff) | |
download | gsoc2013-evolution-7ba831860dfa5e96d9d19a0b5907d5237e60596a.tar gsoc2013-evolution-7ba831860dfa5e96d9d19a0b5907d5237e60596a.tar.gz gsoc2013-evolution-7ba831860dfa5e96d9d19a0b5907d5237e60596a.tar.bz2 gsoc2013-evolution-7ba831860dfa5e96d9d19a0b5907d5237e60596a.tar.lz gsoc2013-evolution-7ba831860dfa5e96d9d19a0b5907d5237e60596a.tar.xz gsoc2013-evolution-7ba831860dfa5e96d9d19a0b5907d5237e60596a.tar.zst gsoc2013-evolution-7ba831860dfa5e96d9d19a0b5907d5237e60596a.zip |
Build a `libeshell.a' library in `shell/' so that we don't need to
link to the shell's object files directly from the components
anymore. (That was really gross.)
svn path=/trunk/; revision=3546
Diffstat (limited to 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/Makefile.am | 24 |
2 files changed, 14 insertions, 16 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 5a05b40867..af315d8c1c 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2000-06-13 Ettore Perazzoli <ettore@helixcode.com> + + * Makefile.am (SHELL_OBJS): Removed. + (evolution_mail_LDADD): Use `libeshell.a'. Also use + `top_builddir' consistently. + 2000-06-12 Jeffrey Stedfast <fejj@helixcode.com> * mail-config.c: Got rid of sources_max_row and identities_max_row diff --git a/mail/Makefile.am b/mail/Makefile.am index 81724fc04e..51c7aa3150 100644 --- a/mail/Makefile.am +++ b/mail/Makefile.am @@ -28,14 +28,6 @@ EVOLUTION_MAIL_CORBA_GENERATED = \ Mail-skels.c \ Mail-stubs.c -# FIXME We should make a libeshell library instead of this gross hack. -SHELL_OBJS = \ - $(top_builddir)/shell/Evolution-common.o \ - $(top_builddir)/shell/Evolution-stubs.o \ - $(top_builddir)/shell/Evolution-skels.o \ - $(top_builddir)/shell/evolution-shell-component.o \ - $(top_builddir)/shell/evolution-storage.o - # FIXME Is there any way around having to do this? CAMEL_OBJS_EXTRA = \ $(top_builddir)/camel/providers/vee/libcamelvee.la @@ -63,17 +55,17 @@ evolution_mail_SOURCES = \ evolution_mail_LDADD = \ - $(SHELL_OBJS) \ - ../composer/libcomposer.la \ + $(top_builddir)/shell/libeshell.a \ + $(top_builddir)/composer/libcomposer.la \ $(top_builddir)/widgets/e-paned/libepaned.a \ $(top_builddir)/widgets/misc/libemiscwidgets.a \ - ../widgets/e-table/libetable.a \ - ../widgets/e-text/libetext.a \ + $(top_builddir)/widgets/e-table/libetable.a \ + $(top_builddir)/widgets/e-text/libetext.a \ $(CAMEL_OBJS_EXTRA) \ - ../camel/libcamel.la \ - ../e-util/libeutil.la \ - ../libibex/libibex.la \ - ../filter/libfilter.la \ + $(top_builddir)/camel/libcamel.la \ + $(top_builddir)/e-util/libeutil.la \ + $(top_builddir)/libibex/libibex.la \ + $(top_builddir)/filter/libfilter.la \ $(BONOBO_HTML_GNOME_LIBS) \ $(UNICODE_LIBS) |