2002-07-09 Peter Williams <peterw@ximian.com> * tools/Makefile.am (INCLUDES): Add include lines to get ebook headers relative to <ebook/foo.h>, not "foo.h". addressbook: 2002-07-08 Peter Williams <peterw@ximian.com> * backend/ebook/e-book.h: Normalize includes to <ebook/foo.h>, so that the installed headers will work sanely. * backend/ebook/e-card-cursor.h: * backend/ebook/e-book-view.h: * backend/ebook/e-card-simple.h: * backend/ebook/e-card.h: * backend/ebook/e-destination.h: Same. * printing/Makefile.am (INCLUDES): add -Iaddressbook/backend to access the ebook headers. Also the builddir version to get the generated addressbook.h * gui/widgets/Makefile.am (INCLUDES): Same builddir fix. * gui/merging/e-card-merging.c: Fix an ebook #include. * gui/merging/Makefile.am (INCLUDES): Same idea. * gui/contact-list-editor/Makefile.am (INCLUDES): Same. * gui/contact-editor/Makefile.am (INCLUDES): Same builddir change. calendar: 2002-07-08 Peter Williams <peterw@ximian.com> * gui/Makefile.am (INCLUDES): Change the -I flags to get it to play nicely with the new Ebook header paradigm. * gui/dialogs/Makefile.am: Same. * gui/e-meeting-model.c: More of the same. * gui/dialogs/e-delegate-dialog.c: * gui/dialogs/e-meeting-model.c: * gui/dialogs/comp-editor-util.c: Fix include lines to get ebook headers. * pcs/Makefile.am: Same. composer: 2002-07-08 Peter Williams <peterw@ximian.com> * Makefile.am (INCLUDES): Fix cflags for ebook header namespacing. importers: 2002-07-08 Peter Williams <peterw@ximian.com> * Makefile.am: Fix cflags to get at ebook headers correctly. * pine-importer.c: Fix include lines to get ebook headers the "right" way. * evolution-gnomecard-importer.c: Same. mail: 2002-07-08 Peter Williams <peterw@ximian.com> * Makefile.am (INCLUDES): Add -I flags to get the ebook headers. svn path=/trunk/; revision=17411
50 lines
1.5 KiB
Makefile
50 lines
1.5 KiB
Makefile
bin_SCRIPTS = \
|
|
csv2vcard \
|
|
evolution-move-tasks \
|
|
evolution-addressbook-clean \
|
|
killev
|
|
|
|
bin_PROGRAMS = \
|
|
evolution-addressbook-import \
|
|
evolution-addressbook-export
|
|
|
|
noinst_PROGRAMS = evolution-addressbook-abuse
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"evolution-tools\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir) \
|
|
-DEVOLUTION_BINDIR=\""$(bindir)"\" \
|
|
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
|
|
-I$(top_srcdir)/addressbook \
|
|
-I$(top_srcdir)/addressbook/backend \
|
|
-I$(top_builddir)/addressbook/backend \
|
|
$(GNOME_FULL_CFLAGS)
|
|
|
|
EXTRA_DIST = $(bin_SCRIPTS) verify-evolution-install.sh \
|
|
evolution-addressbook-clean.in
|
|
|
|
evolution_addressbook_import_LDADD = \
|
|
$(GNOME_FULL_LIBS) \
|
|
$(top_builddir)/addressbook/backend/ebook/libebook.la \
|
|
$(top_builddir)/camel/libcamel.la \
|
|
$(top_builddir)/e-util/ename/libename.la \
|
|
$(top_builddir)/libversit/libversit.a \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/widgets/menus/libmenus.la
|
|
|
|
evolution_addressbook_export_LDADD = \
|
|
$(evolution_addressbook_import_LDADD)
|
|
|
|
evolution_addressbook_abuse_LDADD = \
|
|
$(evolution_addressbook_import_LDADD)
|
|
|
|
CLEANFILES = evolution-addressbook-clean
|
|
|
|
|
|
evolution-addressbook-clean: evolution-addressbook-clean.in Makefile
|
|
## Use sed and then mv to avoid problems if the user interrupts.
|
|
sed -e 's?\@EVOLUTION_BINDIR\@?$(bindir)?g' \
|
|
< $(srcdir)/evolution-addressbook-clean.in > evolution-addressbook-clean.tmp \
|
|
&& mv evolution-addressbook-clean.tmp evolution-addressbook-clean
|