Also, combine calendar, memo, and task backends into a single module, similar to how it worked under Bonobo.
27 lines
671 B
Makefile
27 lines
671 B
Makefile
module_LTLIBRARIES = libevolution-module-test.la
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/shell \
|
|
-I$(top_srcdir)/widgets \
|
|
-I$(top_srcdir)/widgets/menus \
|
|
-I$(top_srcdir)/widgets/misc \
|
|
-I$(top_builddir)/shell \
|
|
-DG_LOG_DOMAIN=\"evolution-test\" \
|
|
$(EVOLUTION_TEST_CFLAGS)
|
|
|
|
libevolution_module_test_la_SOURCES = \
|
|
evolution-module-test.c \
|
|
e-test-shell-backend.c \
|
|
e-test-shell-backend.h \
|
|
e-test-shell-view.c \
|
|
e-test-shell-view.h
|
|
|
|
libevolution_module_test_la_LIBADD = \
|
|
$(top_builddir)/shell/libeshell.la \
|
|
$(EVOLUTION_TEST_LIBS)
|
|
|
|
libevolution_module_test_la_LDFLAGS = \
|
|
-avoid-version -module $(NO_UNDEFINED)
|
|
|
|
-include $(top_srcdir)/git.mk
|