diff options
author | Tor Lillqvist <tml@novell.com> | 2005-06-19 02:36:55 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-06-19 02:36:55 +0800 |
commit | 40a550f2bb6dc1770767e824a2c77307a5dffa9b (patch) | |
tree | 32ca6787bceb50158eb49202f44c102bd873cb65 /addressbook/gui/contact-editor/Makefile.am | |
parent | 8340689e4a19748936e4a192390f87e8393f24d7 (diff) | |
download | gsoc2013-evolution-40a550f2bb6dc1770767e824a2c77307a5dffa9b.tar.gz gsoc2013-evolution-40a550f2bb6dc1770767e824a2c77307a5dffa9b.tar.zst gsoc2013-evolution-40a550f2bb6dc1770767e824a2c77307a5dffa9b.zip |
gui/component/Makefile.am gui/contact-editor/Makefile.am
2005-06-18 Tor Lillqvist <tml@novell.com>
* gui/component/Makefile.am
* gui/contact-editor/Makefile.am
* gui/contact-list-editor/Makefile.am
* gui/merging/Makefile.am
* gui/search/Makefile.am
* gui/widgets/Makefile.am: Prune unnecessary and nonexistent
directories from the -I options. Prune pathname macros not used in
the sources in that directory from the -D options.
* gui/component/Makefile.am
* gui/contact-editor/Makefile.am
* gui/contact-list-editor/Makefile.am
* util/Makefile.am: Use NO_UNDEFINED. Link with all necessary
libraries.
* gui/component/Makefile.am: Use Win32-specific hack to work
around MSYS feature in the gconftool invocation.
* gui/contact-editor/Makefile.am
* gui/contact-list-editor/Makefile.am: Use bootstrap library
libevolution-addressbook on Win32.
* gui/contact-editor/Makefile.am
* gui/contact-list-editor/Makefile.am
* util/Makefile.am: Use privsolib_LTLIBRARIES instead of
privlib_LTLIBRARIES (see ../ChangeLog).
svn path=/trunk/; revision=29546
Diffstat (limited to 'addressbook/gui/contact-editor/Makefile.am')
-rw-r--r-- | addressbook/gui/contact-editor/Makefile.am | 23 |
1 files changed, 14 insertions, 9 deletions
diff --git a/addressbook/gui/contact-editor/Makefile.am b/addressbook/gui/contact-editor/Makefile.am index 642bc1edf1..e8692bb7f2 100644 --- a/addressbook/gui/contact-editor/Makefile.am +++ b/addressbook/gui/contact-editor/Makefile.am @@ -1,23 +1,20 @@ +if OS_WIN32 +WIN32_BOOTSTRAP_LIBS = $(top_builddir)/win32/libevolution-addressbook.la +endif + INCLUDES = \ -I$(top_srcdir) \ -I$(top_srcdir)/widgets \ -I$(top_srcdir)/addressbook/ \ - -I$(top_srcdir)/addressbook/backend \ - -I$(top_builddir)/addressbook/backend \ -I$(top_srcdir)/addressbook/gui/merging \ -I$(top_srcdir)/widgets/table \ -I$(top_builddir)/shell \ - -I$(top_srcdir)/camel \ - -I$(top_builddir)/camel \ -DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \ - -DEVOLUTION_DATADIR=\""$(datadir)"\" \ -DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \ - -DEVOLUTION_UIDIR=\""$(evolutionuidir)\"" \ - -DPREFIX=\""$(prefix)"\" \ -DG_LOG_DOMAIN=\"contact-editor\" \ $(EVOLUTION_ADDRESSBOOK_CFLAGS) -privlib_LTLIBRARIES = \ +privsolib_LTLIBRARIES = \ libecontacteditor.la libecontacteditor_la_SOURCES = \ @@ -35,11 +32,19 @@ libecontacteditor_la_SOURCES = \ e-contact-quick-add.c \ e-contact-quick-add.h +libecontacteditor_la_LDFLAGS = $(NO_UNDEFINED) + +libecontacteditor_la_LIBADD = \ + $(WIN32_BOOTSTRAP_LIBS) \ + $(top_builddir)/widgets/misc/libemiscwidgets.la \ + $(top_builddir)/e-util/libeutil.la \ + $(EVOLUTION_ADDRESSBOOK_LIBS) + MARSHAL_GENERATED = e-contact-editor-marshal.c e-contact-editor-marshal.h @EVO_MARSHAL_RULE@ glade_DATA = \ - im.glade \ + im.glade \ contact-editor.glade \ fulladdr.glade \ fullname.glade |