blob: a13df5b990b27f7521535827ebd997a302f8318f (
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
|
INCLUDES = \
-DG_LOG_DOMAIN=\"pcs\" \
-I$(top_srcdir) \
-I$(top_srcdir)/calendar \
-I$(top_srcdir)/libical/src/libical \
$(GNOME_INCLUDEDIR) \
-DGNOMELOCALEDIR=\""$(datadir)/locale"\"
CORBA_GENERATED = \
evolution-calendar.h \
evolution-calendar-common.c \
evolution-calendar-skels.c \
evolution-calendar-stubs.c
idls = \
$(srcdir)/../idl/evolution-calendar.idl
idl_flags = `$(GNOME_CONFIG) --cflags idl`
$(CORBA_GENERATED): $(idls)
$(ORBIT_IDL) $(idl_flags) $(srcdir)/../idl/evolution-calendar.idl
noinst_LIBRARIES = libpcs.a
libpcs_a_SOURCES = \
$(CORBA_GENERATED) \
cal.c \
cal.h \
cal-backend.c \
cal-backend.h \
cal-common.h \
cal-factory.c \
cal-factory.h \
icalendar.c \
icalendar.h \
job.c \
job.h
|