blob: 9a90c99794c207bffc1b9b8ec8827b860dc81e0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
INCLUDES = \
-DG_LOG_DOMAIN=\"calendar-modules\" \
-I$(top_srcdir) \
-I$(top_srcdir)/widgets \
-DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \
$(EVOLUTION_CALENDAR_CFLAGS)
#module_LTLIBRARIES = \
# libevolution-module-memos.la \
# libevolution-module-tasks.la
module_LTLIBRARIES = \
libevolution-module-calendars.la \
libevolution-module-memos.la \
libevolution-module-tasks.la
libevolution_module_calendars_la_SOURCES = \
e-cal-shell-module.c \
e-cal-shell-module-migrate.c \
e-cal-shell-module-migrate.h \
e-cal-shell-module-settings.c \
e-cal-shell-module-settings.h \
e-cal-shell-content.c \
e-cal-shell-content.h \
e-cal-shell-sidebar.c \
e-cal-shell-sidebar.h \
e-cal-shell-view.c \
e-cal-shell-view.h \
e-cal-shell-view-actions.c \
e-cal-shell-view-actions.h \
e-cal-shell-view-memopad.c \
e-cal-shell-view-private.c \
e-cal-shell-view-private.h \
e-cal-shell-view-taskpad.c
libevolution_module_memos_la_SOURCES = \
e-memo-shell-module.c \
e-memo-shell-module-migrate.c \
e-memo-shell-module-migrate.h \
e-memo-shell-content.c \
e-memo-shell-content.h \
e-memo-shell-sidebar.c \
e-memo-shell-sidebar.h \
e-memo-shell-view.c \
e-memo-shell-view.h \
e-memo-shell-view-actions.c \
e-memo-shell-view-actions.h \
e-memo-shell-view-private.c \
e-memo-shell-view-private.h
libevolution_module_tasks_la_SOURCES = \
e-task-shell-module.c \
e-task-shell-module-migrate.c \
e-task-shell-module-migrate.h \
e-task-shell-content.c \
e-task-shell-content.h \
e-task-shell-sidebar.c \
e-task-shell-sidebar.h \
e-task-shell-view.c \
e-task-shell-view.h \
e-task-shell-view-actions.c \
e-task-shell-view-actions.h \
e-task-shell-view-private.c \
e-task-shell-view-private.h
# Removed from all three
# $(top_builddir)/a11y/calendar/libevolution-calendar-a11y.la
libevolution_module_calendars_la_LIBADD = \
$(WIN32_BOOTSTRAP_LIBS) \
$(top_builddir)/shell/libeshell.la \
$(top_builddir)/calendar/gui/libcal-gui.la \
$(top_builddir)/mail/libevolution-module-mail.la \
$(top_builddir)/addressbook/gui/contact-editor/libecontacteditor.la
libevolution_module_memos_la_LIBADD = \
$(WIN32_BOOTSTRAP_LIBS) \
$(top_builddir)/shell/libeshell.la \
$(top_builddir)/calendar/gui/libcal-gui.la
libevolution_module_tasks_la_LIBADD = \
$(WIN32_BOOTSTRAP_LIBS) \
$(top_builddir)/shell/libeshell.la \
$(top_builddir)/calendar/gui/libcal-gui.la
|