diff options
author | Dan Winship <danw@src.gnome.org> | 2003-03-01 05:59:37 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2003-03-01 05:59:37 +0800 |
commit | f824830018a59b31d19bc7370a5638071e35c295 (patch) | |
tree | 225eff2427c32adeeae61c1dea914b5124b7e67c /addressbook/printing/Makefile.am | |
parent | 32a764399bed6e64b6f03578025bf4255cc63183 (diff) | |
download | gsoc2013-evolution-f824830018a59b31d19bc7370a5638071e35c295.tar.gz gsoc2013-evolution-f824830018a59b31d19bc7370a5638071e35c295.tar.zst gsoc2013-evolution-f824830018a59b31d19bc7370a5638071e35c295.zip |
Build libecontacteditor as an uninstalled shared library.
* gui/contact-editor/Makefile.am: Build libecontacteditor as an
uninstalled shared library.
* gui/contact-list-editor/Makefile.am: Likewise for
libecontactlisteditor
* gui/merging/Makefile.am: and libecardmerging
* gui/search/Makefile.am: and libeaddressbooksearch
* gui/widgets/Makefile.am: and libeminicard
* printing/Makefile.am: and libecontactprint
* gui/component/Makefile.am (libevolution_addressbook_la_LIBADD):
Update for new library names (and get rid of libtool portability
warnings).
svn path=/trunk/; revision=20112
Diffstat (limited to 'addressbook/printing/Makefile.am')
-rw-r--r-- | addressbook/printing/Makefile.am | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/addressbook/printing/Makefile.am b/addressbook/printing/Makefile.am index 15871b005b..b28d841ec2 100644 --- a/addressbook/printing/Makefile.am +++ b/addressbook/printing/Makefile.am @@ -18,10 +18,10 @@ INCLUDES = \ -DEVOLUTION_ECPSDIR=\""$(ecpsdir)"\" \ $(EVOLUTION_ADDRESSBOOK_CFLAGS) -noinst_LIBRARIES = \ - libecontactprint.a +noinst_LTLIBRARIES = \ + libecontactprint.la -libecontactprint_a_SOURCES = \ +libecontactprint_la_SOURCES = \ e-contact-print-envelope.c \ e-contact-print-envelope.h \ e-contact-print-style-editor.c \ @@ -39,7 +39,7 @@ contact_print_test_SOURCES = \ contact_print_test_LDADD = \ $(top_builddir)/addressbook/backend/ebook/libebook.la \ - libecontactprint.a \ + libecontactprint.la \ $(EVOLUTION_ADDRESSBOOK_LIBS) contact_print_style_editor_test_SOURCES = \ @@ -47,7 +47,7 @@ contact_print_style_editor_test_SOURCES = \ contact_print_style_editor_test_LDADD = \ $(top_builddir)/addressbook/backend/ebook/libebook.la \ - libecontactprint.a \ + libecontactprint.la \ $(EVOLUTION_ADDRESSBOOK_LIBS) |