It just doesn't belong in Evolution anymore. We don't support syncing with more modern devices -- see Conduits or SyncEvolution for that -- so it does not make sense for older model Palm Pilot PDAs to be the lone exception. I have repackaged the Evolution-Data-Server conduit modules to be provided by gnome-pilot itself in bug #619315. This should provide eqivalent Palm Pilot syncing functionality; it's just being moved to gnome-pilot. This completely severs our dependency on deprecated GNOME 2.x libraries which were still being dragged in by way of gnome-pilot dependencies. It was also interfereing with our bundling of libgnomecanvas.
167 lines
3.9 KiB
Makefile
167 lines
3.9 KiB
Makefile
eutilincludedir = $(privincludedir)/e-util
|
|
ecpsdir = $(privdatadir)/ecps
|
|
ruledir = $(privdatadir)
|
|
|
|
if OS_WIN32
|
|
PLATFORM_SOURCES = e-win32-reloc.c e-win32-defaults.c e-win32-defaults.h
|
|
endif
|
|
|
|
privsolib_LTLIBRARIES = libeutil.la
|
|
|
|
eutilinclude_HEADERS = \
|
|
e-account-utils.h \
|
|
e-activity.h \
|
|
e-alert.h \
|
|
e-alert-activity.h \
|
|
e-alert-dialog.h \
|
|
e-binding.h \
|
|
e-bit-array.h \
|
|
e-categories-config.h \
|
|
e-charset.h \
|
|
e-config.h \
|
|
e-datetime-format.h \
|
|
e-dialog-utils.h \
|
|
e-dialog-widgets.h \
|
|
e-event.h \
|
|
e-extensible.h \
|
|
e-extension.h \
|
|
e-file-utils.h \
|
|
e-html-utils.h \
|
|
e-icon-factory.h \
|
|
e-import.h \
|
|
e-io-activity.h \
|
|
e-logger.h \
|
|
e-marshal.h \
|
|
e-mktemp.h \
|
|
e-module.h \
|
|
e-non-intrusive-error-dialog.h \
|
|
e-poolv.h \
|
|
e-print.h \
|
|
e-plugin.h \
|
|
e-plugin-ui.h \
|
|
e-plugin-util.h \
|
|
e-profile-event.h \
|
|
e-selection.h \
|
|
e-signature.h \
|
|
e-signature-list.h \
|
|
e-signature-utils.h \
|
|
e-sorter.h \
|
|
e-sorter-array.h \
|
|
e-text-event-processor-emacs-like.h \
|
|
e-text-event-processor-types.h \
|
|
e-text-event-processor.h \
|
|
e-timeout-activity.h \
|
|
e-ui-manager.h \
|
|
e-util.h \
|
|
e-unicode.h \
|
|
e-xml-utils.h \
|
|
gconf-bridge.h
|
|
|
|
libeutil_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-I$(top_builddir) \
|
|
-I$(top_srcdir)/widgets \
|
|
-DEVOLUTION_BINDIR=\""$(bindir)"\" \
|
|
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
|
|
-DEVOLUTION_ECPSDIR=\""$(ecpsdir)"\" \
|
|
-DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \
|
|
-DEVOLUTION_GALVIEWSDIR=\""$(viewsdir)"\" \
|
|
-DEVOLUTION_HELPDIR=\""$(evolutionhelpdir)"\" \
|
|
-DEVOLUTION_ICONDIR=\""$(icondir)"\" \
|
|
-DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \
|
|
-DEVOLUTION_LIBDIR=\""$(datadir)"\" \
|
|
-DEVOLUTION_LIBEXECDIR=\""$(privlibexecdir)"\" \
|
|
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
|
|
-DEVOLUTION_MODULEDIR=\""$(moduledir)"\" \
|
|
-DEVOLUTION_PLUGINDIR=\""$(plugindir)"\" \
|
|
-DEVOLUTION_PREFIX=\""$(prefix)"\" \
|
|
-DEVOLUTION_PRIVDATADIR=\""$(privdatadir)"\" \
|
|
-DEVOLUTION_SOUNDDIR=\""$(soundsdir)"\" \
|
|
-DEVOLUTION_SYSCONFDIR=\""$(sysconfdir)"\" \
|
|
-DEVOLUTION_TOOLSDIR=\""$(privlibexecdir)"\" \
|
|
-DEVOLUTION_UIDIR=\""$(uidir)"\" \
|
|
-DEVOLUTION_RULEDIR=\"$(ruledir)\" \
|
|
-DG_LOG_DOMAIN=\"e-utils\" \
|
|
$(GNOME_PLATFORM_CFLAGS) \
|
|
$(E_UTIL_CFLAGS)
|
|
|
|
libeutil_la_SOURCES = \
|
|
$(eutilinclude_HEADERS) \
|
|
e-account-utils.c \
|
|
e-activity.c \
|
|
e-alert.c \
|
|
e-alert-activity.c \
|
|
e-alert-dialog.c \
|
|
e-binding.c \
|
|
e-bit-array.c \
|
|
e-categories-config.c \
|
|
e-charset.c \
|
|
e-config.c \
|
|
e-datetime-format.c \
|
|
e-dialog-utils.c \
|
|
e-dialog-widgets.c \
|
|
e-event.c \
|
|
e-extensible.c \
|
|
e-extension.c \
|
|
e-file-utils.c \
|
|
e-html-utils.c \
|
|
e-icon-factory.c \
|
|
e-import.c \
|
|
e-io-activity.c \
|
|
e-logger.c \
|
|
e-marshal.c \
|
|
e-mktemp.c \
|
|
e-module.c \
|
|
e-non-intrusive-error-dialog.c \
|
|
e-poolv.c \
|
|
e-plugin.c \
|
|
e-plugin-ui.c \
|
|
e-plugin-util.c \
|
|
e-print.c \
|
|
e-profile-event.c \
|
|
e-selection.c \
|
|
e-signature.c \
|
|
e-signature-list.c \
|
|
e-signature-utils.c \
|
|
e-sorter.c \
|
|
e-sorter-array.c \
|
|
e-text-event-processor-emacs-like.c \
|
|
e-text-event-processor.c \
|
|
e-timeout-activity.c \
|
|
e-ui-manager.c \
|
|
e-util.c \
|
|
e-unicode.c \
|
|
e-util-private.h \
|
|
e-xml-utils.c \
|
|
gconf-bridge.c \
|
|
gtk-compat.h \
|
|
$(PLATFORM_SOURCES)
|
|
|
|
MARSHAL_GENERATED = e-marshal.c e-marshal.h
|
|
@EVO_MARSHAL_RULE@
|
|
|
|
libeutil_la_LDFLAGS = $(NO_UNDEFINED)
|
|
|
|
libeutil_la_LIBADD = \
|
|
$(ICONV_LIBS) \
|
|
$(E_UTIL_LIBS) \
|
|
$(GNOME_PLATFORM_LIBS) \
|
|
$(INTLLIBS)
|
|
|
|
error_DATA = e-system.error
|
|
errordir = $(privdatadir)/errors
|
|
@EVO_PLUGIN_RULE@
|
|
|
|
EXTRA_DIST = \
|
|
e-system.error.xml \
|
|
e-marshal.list
|
|
|
|
BUILT_SOURCES = $(MARSHAL_GENERATED) $(error_DATA)
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
dist-hook:
|
|
cd $(distdir); rm -f $(BUILT_SOURCES)
|
|
|
|
-include $(top_srcdir)/git.mk
|