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.
25 lines
680 B
Makefile
25 lines
680 B
Makefile
### Process this file with automake to produce Makefile.in
|
|
|
|
gladecatalog_DATA = evolution.xml
|
|
gladecatalogdir = `$(PKG_CONFIG) --variable=catalogdir gladeui-2.0`
|
|
|
|
gladeevolution_LTLIBRARIES = libgladeevolution.la
|
|
gladeevolutiondir = `$(PKG_CONFIG) --variable=moduledir gladeui-2.0`
|
|
|
|
libgladeevolution_la_SOURCES =
|
|
|
|
libgladeevolution_la_LDFLAGS = \
|
|
-module -avoid-version
|
|
|
|
libgladeevolution_la_LIBADD = \
|
|
$(top_srcdir)/mail/libevolution-mail.la \
|
|
$(top_srcdir)/calendar/gui/libevolution-calendar.la \
|
|
$(top_builddir)/widgets/misc/libemiscwidgets.la \
|
|
$(EVOLUTION_DATA_SERVER_LIBS) \
|
|
$(GNOME_PLATFORM_LIBS)
|
|
|
|
EXTRA_DIST = \
|
|
$(gladecatalog_DATA)
|
|
|
|
-include $(top_srcdir)/git.mk
|