53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"wombat-pcs\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/calendar \
|
|
-I$(top_srcdir)/libical/src/libical \
|
|
-I$(top_builddir)/libical/src/libical \
|
|
-I$(top_srcdir)/libwombat \
|
|
-I$(top_builddir)/libwombat \
|
|
-DGNOMELOCALEDIR=\""$(localedir)"\" \
|
|
$(EVOLUTION_CALENDAR_CFLAGS)
|
|
|
|
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 = -I $(srcdir) `$(GNOME_CONFIG) --cflags idl` -I $(datadir)/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-backend-file.c \
|
|
cal-backend-file.h \
|
|
cal-backend-util.c \
|
|
cal-backend-util.h \
|
|
cal-common.h \
|
|
cal-factory.c \
|
|
cal-factory.h \
|
|
job.c \
|
|
job.h \
|
|
query.c \
|
|
query.h
|
|
|
|
|
|
BUILT_SOURCES = $(CORBA_GENERATED)
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
dist-hook:
|
|
cd $(distdir); rm -f $(BUILT_SOURCES)
|
|
|