Evolution maintainers should install this so they can safely open GtkBuilder files in Glade 3 without Glade silently deleting custom widgets it doesn't understand. The catalog makes it understand.
26 lines
703 B
Makefile
26 lines
703 B
Makefile
### Process this file with automake to produce Makefile.in
|
|
|
|
gladecatalog_DATA = evolution.xml
|
|
gladecatalogdir = `$(PKG_CONFIG) --variable=catalogdir gladeui-1.0`
|
|
|
|
gladeevolution_LTLIBRARIES = libgladeevolution.la
|
|
gladeevolutiondir = `$(PKG_CONFIG) --variable=moduledir gladeui-1.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_CALENDAR_LIBS) \
|
|
$(EVOLUTION_MAIL_LIBS) \
|
|
$(GNOME_PLATFORM_LIBS)
|
|
|
|
EXTRA_DIST = \
|
|
$(gladecatalog_DATA)
|
|
|
|
-include $(top_srcdir)/git.mk
|