We have a confusing array of nearly-identical CFLAGS/LIBS definitions in configure.ac. Time to simplify. Instead let's just have one definition that includes all the libraries provided by Evolution-Data-Server (incl. Camel). That, in combination with GNOME_PLATFORM, gives us most of what we need for compliation and linking, and we can sprinkle definitions for additional library dependencies in Makefile.am's as needed.
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
module_LTLIBRARIES = libevolution-module-mailto-handler.la
|
|
|
|
libevolution_module_mailto_handler_la_CPPFLAGS = \
|
|
$(AM_CPPFLAGS) \
|
|
-I$(top_srcdir) \
|
|
-DG_LOG_DOMAIN=\"evolution-mailto-handler\" \
|
|
$(EVOLUTION_DATA_SERVER_CFLAGS) \
|
|
$(GNOME_PLATFORM_CFLAGS) \
|
|
$(GTKHTML_CFLAGS)
|
|
|
|
libevolution_module_mailto_handler_la_SOURCES = \
|
|
evolution-mailto-handler.c
|
|
|
|
libevolution_module_mailto_handler_la_LIBADD = \
|
|
$(top_builddir)/e-util/libeutil.la \
|
|
$(top_builddir)/shell/libeshell.la \
|
|
$(EVOLUTION_DATA_SERVER_LIBS) \
|
|
$(GNOME_PLATFORM_LIBS) \
|
|
$(GTKHTML_LIBS)
|
|
|
|
libevolution_module_mailto_handler_la_LDFLAGS = \
|
|
-module -avoid-version $(NO_UNDEFINED)
|
|
|
|
schemadir = $(GCONF_SCHEMA_FILE_DIR)
|
|
schema_in_files = apps-evolution-mail-prompts-checkdefault.schemas.in
|
|
schema_DATA = $(schema_in_files:.schemas.in=.schemas)
|
|
|
|
@INTLTOOL_SCHEMAS_RULE@
|
|
|
|
if GCONF_SCHEMAS_INSTALL
|
|
|
|
if OS_WIN32
|
|
install-data-local:
|
|
if test -z "$(DESTDIR)" ; then \
|
|
for p in $(schema_DATA) ; do \
|
|
(echo set GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE); \
|
|
echo $(GCONFTOOL) --makefile-install-rule $$p) >_temp.bat; \
|
|
cmd /c _temp.bat; \
|
|
rm _temp.bat; \
|
|
done \
|
|
fi
|
|
else
|
|
install-data-local:
|
|
if test -z "$(DESTDIR)" ; then \
|
|
for p in $(schema_DATA) ; do \
|
|
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) \
|
|
$(GCONFTOOL) --makefile-install-rule $$p; \
|
|
done \
|
|
fi
|
|
endif
|
|
|
|
endif
|
|
|
|
EXTRA_DIST = $(schema_in_files)
|
|
|
|
DISTCLEANFILES = $(schema_DATA)
|
|
|
|
-include $(top_srcdir)/git.mk
|