diff options
author | Dan Winship <danw@src.gnome.org> | 2003-02-22 05:24:34 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-02-22 05:24:34 +0800 |
commit | d40f089a706484364ceb499d6bb4f6d823b92b09 (patch) | |
tree | 2a467c1fcafe9828b96fc82de3c8d115e1234aa7 /addressbook/backend | |
parent | 80906889c2d0c7db9a69ca5d2e3a7657effd311b (diff) | |
download | gsoc2013-evolution-d40f089a706484364ceb499d6bb4f6d823b92b09.tar.gz gsoc2013-evolution-d40f089a706484364ceb499d6bb4f6d823b92b09.tar.zst gsoc2013-evolution-d40f089a706484364ceb499d6bb4f6d823b92b09.zip |
Make libversit a shared library, update stuff for that, and clean up
some LDADDs in the process
svn path=/trunk/; revision=19994
Diffstat (limited to 'addressbook/backend')
-rw-r--r-- | addressbook/backend/ebook/Makefile.am | 47 |
1 files changed, 12 insertions, 35 deletions
diff --git a/addressbook/backend/ebook/Makefile.am b/addressbook/backend/ebook/Makefile.am index 0342715622..d12aa9a6d6 100644 --- a/addressbook/backend/ebook/Makefile.am +++ b/addressbook/backend/ebook/Makefile.am @@ -83,6 +83,11 @@ libebook_la_SOURCES = \ e-card-compare.c \ e-destination.c +libebook_la_LIBADD = \ + $(top_builddir)/libversit/libversit.la \ + $(top_builddir)/camel/libcamel.la \ + $(top_builddir)/e-util/ename/libename.la \ + $(top_builddir)/e-util/libeutil.la libebookincludedir = $(privincludedir)/ebook @@ -127,33 +132,21 @@ test_client_SOURCES = \ test_client_LDADD = \ libebook.la \ - $(EVOLUTION_ADDRESSBOOK_LIBS) \ - $(top_builddir)/camel/libcamel.la \ - $(top_builddir)/libversit/libversit.a \ - $(top_builddir)/e-util/ename/libename.la \ - $(top_builddir)/e-util/libeutil.la + $(EVOLUTION_ADDRESSBOOK_LIBS) test_client_list_SOURCES = \ test-client-list.c test_client_list_LDADD = \ libebook.la \ - $(EVOLUTION_ADDRESSBOOK_LIBS) \ - $(top_builddir)/camel/libcamel.la \ - $(top_builddir)/e-util/ename/libename.la \ - $(top_builddir)/libversit/libversit.a \ - $(top_builddir)/e-util/libeutil.la + $(EVOLUTION_ADDRESSBOOK_LIBS) test_card_SOURCES = \ test-card.c test_card_LDADD = \ libebook.la \ - $(EVOLUTION_ADDRESSBOOK_LIBS) \ - $(top_builddir)/camel/libcamel.la \ - $(top_builddir)/e-util/ename/libename.la \ - $(top_builddir)/libversit/libversit.a \ - $(top_builddir)/e-util/libeutil.la + $(EVOLUTION_ADDRESSBOOK_LIBS) evolution_vcard_importer_SOURCES = \ evolution-vcard-importer.c @@ -161,12 +154,8 @@ evolution_vcard_importer_SOURCES = \ evolution_vcard_importer_LDADD = \ libebook.la \ $(EVOLUTION_ADDRESSBOOK_LIBS) \ - $(top_builddir)/camel/libcamel.la \ $(top_builddir)/shell/importer/libevolution-importer.la \ - $(DB3_LDADD) \ - $(top_builddir)/e-util/ename/libename.la \ - $(top_builddir)/libversit/libversit.a \ - $(top_builddir)/e-util/libeutil.la + $(DB3_LDADD) evolution_ldif_importer_SOURCES = \ evolution-ldif-importer.c @@ -174,34 +163,22 @@ evolution_ldif_importer_SOURCES = \ evolution_ldif_importer_LDADD = \ libebook.la \ $(EVOLUTION_ADDRESSBOOK_LIBS) \ - $(top_builddir)/camel/libcamel.la \ $(top_builddir)/shell/importer/libevolution-importer.la \ - $(DB3_LDADD) \ - $(top_builddir)/e-util/ename/libename.la \ - $(top_builddir)/libversit/libversit.a \ - $(top_builddir)/e-util/libeutil.la + $(DB3_LDADD) load_pine_addressbook_SOURCES = \ load-pine-addressbook.c load_pine_addressbook_LDADD = \ libebook.la \ - $(EVOLUTION_ADDRESSBOOK_LIBS) \ - $(top_builddir)/camel/libcamel.la \ - $(top_builddir)/e-util/ename/libename.la \ - $(top_builddir)/libversit/libversit.a \ - $(top_builddir)/e-util/libeutil.la + $(EVOLUTION_ADDRESSBOOK_LIBS) load_gnomecard_addressbook_SOURCES = \ load-gnomecard-addressbook.c load_gnomecard_addressbook_LDADD = \ libebook.la \ - $(EVOLUTION_ADDRESSBOOK_LIBS) \ - $(top_builddir)/camel/libcamel.la \ - $(top_builddir)/e-util/ename/libename.la \ - $(top_builddir)/libversit/libversit.a \ - $(top_builddir)/e-util/libeutil.la + $(EVOLUTION_ADDRESSBOOK_LIBS) BUILT_SOURCES = $(CORBA_SOURCE) $(MARSHAL_GENERATED) |