blob: 972cb893fd8ffb75d0d564348c811d0eb1a3b529 (
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
SUBDIRS = dialogs
help_base = $(datadir)/gnome/help/cal
CPPFLAGS = \
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\"
INCLUDES = \
-DG_LOG_DOMAIN=\"calendar-gui\" \
-I$(top_srcdir) \
-I$(top_srcdir)/calendar \
-I$(top_srcdir)/libical/src/libical \
-I$(includedir) \
$(BONOBO_VFS_GNOME_CFLAGS) \
$(GNOME_CONDUIT_INCLUDEDIR) \
$(PISOCK_INCLUDEDIR) \
-DEVOLUTION_GLADEDIR=\""$(gladedir)"\" \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\"
LINK_FLAGS = \
$(BONOBO_VFS_GNOME_LIBS) \
$(INTLLIBS) \
dialogs/libcal-dialogs.a \
$(top_builddir)/calendar/cal-client/libcal-client.la \
$(top_builddir)/calendar/cal-util/libcal-util.la \
$(top_builddir)/e-util/libeutil.la \
$(top_builddir)/widgets/e-paned/libepaned.a \
$(top_builddir)/widgets/e-text/libetext.a \
$(top_builddir)/libversit/libversit.la \
$(top_builddir)/libical/src/libical/libical.la
gladedir = $(datadir)/evolution/glade
glade_DATA = event-editor-dialog.glade
bin_PROGRAMS = evolution-calendar
evolution_calendar_SOURCES = \
alarm.c \
alarm.h \
calendar-commands.c \
calendar-commands.h \
e-day-view-main-item.c \
e-day-view-main-item.h \
e-day-view-time-item.c \
e-day-view-time-item.h \
e-day-view-top-item.c \
e-day-view-top-item.h \
e-day-view.c \
e-day-view.h \
e-week-view-event-item.c \
e-week-view-event-item.h \
e-week-view-main-item.c \
e-week-view-main-item.h \
e-week-view-titles-item.c \
e-week-view-titles-item.h \
e-week-view.c \
e-week-view.h \
event-editor.c \
event-editor.h \
event-editor-utils.c \
event-editor-utils.h \
evolution-calendar-control.c \
getdate.y \
gncal-todo.c \
gncal-todo.h \
gnome-month-item.c \
gnome-month-item.h \
gnome-cal.c \
gnome-cal.h \
goto.c \
layout.c \
layout.h \
mark.c \
mark.h \
popup-menu.c \
popup-menu.h \
print.c \
print.h \
prop.c
evolution_calendar_LDADD = \
$(EXTRA_GNOME_LIBS) \
$(BONOBO_HTML_GNOME_LIBS) \
$(top_builddir)/widgets/e-text/libetext.a \
$(top_builddir)/e-util/libeutil.la \
$(LINK_FLAGS)
evolution_calendar_LDFLAGS = `gnome-config --libs gdk_pixbuf`
if USING_OAF
oafdir = $(datadir)/oaf
oaf_DATA = calendar-control.oafinfo
else
gnorbadir = $(sysconfdir)/CORBA/servers
gnorba_DATA = calendar-control.gnorba
endif
EXTRA_DIST = \
bell.xpm \
recur.xpm \
dayview.xpm \
workweekview.xpm \
weekview.xpm \
monthview.xpm \
yearview.xpm \
calendar-control.gnorba \
calendar-control.oafinfo
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(help_base)/C
if ENABLE_PURIFY
PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
all-local: evolution-calendar.pure
evolution-calendar.pure: evolution-calendar
@rm -f evolution-calendar.pure
$(PLINK) $(evolution_calendar_LDFLAGS) $(evolution_calendar_OBJECTS) $(evolution_calendar_LDADD) $(LIBS)
endif
|