aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@src.gnome.org>2000-03-04 05:45:49 +0800
committerFederico Mena Quintero <federico@src.gnome.org>2000-03-04 05:45:49 +0800
commitc82484319fa3173f4a2700314749b5f24ddaeb03 (patch)
tree668378e237976e735b3cc96b34a8e8a8c47b6c99
parent24adae8e2a5be406b069c91afee2d6eabfa2d589 (diff)
downloadgsoc2013-evolution-c82484319fa3173f4a2700314749b5f24ddaeb03.tar
gsoc2013-evolution-c82484319fa3173f4a2700314749b5f24ddaeb03.tar.gz
gsoc2013-evolution-c82484319fa3173f4a2700314749b5f24ddaeb03.tar.bz2
gsoc2013-evolution-c82484319fa3173f4a2700314749b5f24ddaeb03.tar.lz
gsoc2013-evolution-c82484319fa3173f4a2700314749b5f24ddaeb03.tar.xz
gsoc2013-evolution-c82484319fa3173f4a2700314749b5f24ddaeb03.tar.zst
gsoc2013-evolution-c82484319fa3173f4a2700314749b5f24ddaeb03.zip
I always forget to add the stupid files - Federico
svn path=/trunk/; revision=2028
-rw-r--r--calendar/pcs/Makefile.am66
1 files changed, 66 insertions, 0 deletions
diff --git a/calendar/pcs/Makefile.am b/calendar/pcs/Makefile.am
new file mode 100644
index 0000000000..dd9e3302b9
--- /dev/null
+++ b/calendar/pcs/Makefile.am
@@ -0,0 +1,66 @@
+#
+# Tlacuache personal calendar server
+#
+
+bin_PROGRAMS = tlacuache
+
+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
+
+tlacuache_INCLUDES = \
+ -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \
+ -I$(srcdir) -I$(top_srcdir) \
+ -I. \
+ -I.. \
+ -I$(top_builddir) \
+ -I$(includedir) \
+ $(GNOME_INCLUDEDIR)
+
+tlacuache_SOURCES = \
+ $(CORBA_GENERATED) \
+ alarm.c \
+ alarm.h \
+ cal.c \
+ cal.h \
+ cal-backend.c \
+ cal-backend.h \
+ cal-common.h \
+ cal-factory.c \
+ cal-factory.h \
+ cal-util.c \
+ cal-util.h \
+ calobj.c \
+ calobj.h \
+ icalendar.c \
+ icalendar.h \
+ job.c \
+ job.h \
+ timeutil.c \
+ timeutil.h \
+ tlacuache.c
+
+ICAL_LINK_FLAGS = $(top_builddir)/libical/src/libical/libical.la
+
+tlacuache_LDADD = \
+ $(BONOBO_VFS_GNOME_LIBS) \
+ ../libversit/libversit.la \
+ $(ICAL_LINK_FLAGS)
+
+gnorbadir = $(sysconfdir)/CORBA/servers
+
+gnorba_DATA = \
+ tlacuache.gnorba
+
+EXTRA_DIST = \
+ $(gnorba_DATA)