blob: 9688fc7eadc1bfeb1239bd28fbf27fe73905286f (
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
|
# Calendar IDL files
# for debug
#A11Y_CFLAGS += -pedantic -ansi -DACC_DEBUG -Werror
privlib_LTLIBRARIES = libevolution-calendar-a11y.la
INCLUDES = \
-DG_LOG_DOMAIN=\"evolution-a11y\" \
-I$(top_srcdir) \
-I$(top_srcdir)/shell \
-I$(top_srcdir)/calendar \
-I$(top_srcdir)/calendar/cal-client \
-I$(top_srcdir)/calendar/gui \
-I$(top_srcdir)/widgets \
-I$(top_srcdir)/widgets/misc \
-I$(top_srcdir)/a11y \
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
-DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \
-DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \
-DEVOLUTION_GALVIEWSDIR=\""$(viewsdir)"\" \
-DEVOLUTION_UIDIR=\""$(evolutionuidir)"\" \
-DPREFIX=\""$(prefix)"\" \
$(A11Y_CFLAGS) \
$(EVOLUTION_CALENDAR_CFLAGS)
libevolution_calendar_a11y_la_SOURCES = \
ea-calendar.c \
ea-calendar.h \
ea-calendar-helpers.c \
ea-calendar-helpers.h \
ea-cal-view.c \
ea-cal-view.h \
ea-cal-view-event.c \
ea-cal-view-event.h \
ea-day-view.c \
ea-day-view.h \
ea-day-view-main-item.c \
ea-day-view-main-item.h \
ea-day-view-cell.c \
ea-day-view-cell.h \
ea-week-view.c \
ea-week-view.h \
ea-week-view-main-item.c \
ea-week-view-main-item.h \
ea-week-view-cell.c \
ea-week-view-cell.h \
ea-jump-button.c \
ea-jump-button.h \
ea-gnome-calendar.c \
ea-gnome-calendar.h
libevolution_calendar_a11y_la_LIBADD = \
$(top_builddir)/a11y/libevolution-a11y.la
|