blob: bb0778162babf320492dc59bd3801fca04b1f2a5 (
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
|
gladedir = $(datadir)/evolution/glade
INCLUDES = \
-DG_LOG_DOMAIN=\"calendar-gui\" \
-I$(top_srcdir) \
-I$(top_srcdir)/calendar \
-I$(top_srcdir)/calendar/cal-client \
-I$(top_builddir)/calendar/cal-client \
-I$(top_srcdir)/libical/src/libical \
-I$(top_builddir)/libical/src/libical \
-I$(top_builddir)/shell \
-I$(top_srcdir)/shell \
-I$(includedir) \
$(EXTRA_GNOME_CFLAGS) \
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
-DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \
$(BONOBO_VFS_GNOME_CFLAGS) \
-DGNOMELOCALEDIR=\""$(localedir)"\"
noinst_LIBRARIES = libcal-dialogs.a
libcal_dialogs_a_SOURCES = \
alarm-options.c \
alarm-options.h \
alarm-page.c \
alarm-page.h \
cal-prefs-dialog.c \
cal-prefs-dialog.h \
cancel-comp.c \
cancel-comp.h \
changed-comp.c \
changed-comp.h \
comp-editor.c \
comp-editor.h \
comp-editor-page.c \
comp-editor-page.h \
comp-editor-util.c \
comp-editor-util.h \
delete-comp.c \
delete-comp.h \
e-timezone-dialog.c \
e-timezone-dialog.h \
event-editor.c \
event-editor.h \
event-page.c \
event-page.h \
meeting-page.c \
meeting-page.h \
recurrence-page.c \
recurrence-page.h \
save-comp.c \
save-comp.h \
send-comp.c \
send-comp.h \
task-editor.c \
task-editor.h \
task-details-page.c \
task-details-page.h \
task-page.c \
task-page.h
glade_DATA = \
alarm-options.glade \
alarm-page.glade \
cal-prefs-dialog.glade \
e-timezone-dialog.glade \
event-page.glade \
meeting-page.glade \
recurrence-page.glade \
task-details-page.glade \
task-page.glade
etspecdir = $(datadir)/evolution/etspec/
etspec_DATA = meeting-page.etspec
EXTRA_DIST = \
$(glade_DATA) \
$(etspec_DATA)
|