diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-03-29 11:05:07 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-03-29 11:05:07 +0800 |
commit | a74313d1afe18b36eaddeda4ad35b8442354e8b7 (patch) | |
tree | cc260d676959c44da259fb10e35d7c44173188eb /calendar/pcs | |
parent | c169edca762daf6d56dd1b48d738b9c37f0b5028 (diff) | |
download | gsoc2013-evolution-a74313d1afe18b36eaddeda4ad35b8442354e8b7.tar gsoc2013-evolution-a74313d1afe18b36eaddeda4ad35b8442354e8b7.tar.gz gsoc2013-evolution-a74313d1afe18b36eaddeda4ad35b8442354e8b7.tar.bz2 gsoc2013-evolution-a74313d1afe18b36eaddeda4ad35b8442354e8b7.tar.lz gsoc2013-evolution-a74313d1afe18b36eaddeda4ad35b8442354e8b7.tar.xz gsoc2013-evolution-a74313d1afe18b36eaddeda4ad35b8442354e8b7.tar.zst gsoc2013-evolution-a74313d1afe18b36eaddeda4ad35b8442354e8b7.zip |
+ * wombat/wombat.gnorba: new file.
+
+ * wombat/.cvsignore: new file.
+
+ * wombat/wombat.c (setup_pcs): fill out this function some.
+
+ * configure.in: added wombat.
+
+ * pcs/Makefile.am: create a libpcs.la library, for use in the
+ wombat.
svn path=/trunk/; revision=2241
Diffstat (limited to 'calendar/pcs')
-rw-r--r-- | calendar/pcs/.cvsignore | 1 | ||||
-rw-r--r-- | calendar/pcs/Makefile.am | 18 |
2 files changed, 19 insertions, 0 deletions
diff --git a/calendar/pcs/.cvsignore b/calendar/pcs/.cvsignore index 46467e3f77..d176ba6089 100644 --- a/calendar/pcs/.cvsignore +++ b/calendar/pcs/.cvsignore @@ -7,3 +7,4 @@ evolution-calendar-common.c evolution-calendar.h tlacuache .libs +*.la diff --git a/calendar/pcs/Makefile.am b/calendar/pcs/Makefile.am index 269ba2f5c6..a567597975 100644 --- a/calendar/pcs/Makefile.am +++ b/calendar/pcs/Makefile.am @@ -3,6 +3,7 @@ # bin_PROGRAMS = tlacuache +lib_LTLIBRARIES = libpcs.la #INCLUDES = \ # -DGNOMELOCALEDIR=\""$(datadir)/locale"\" \ @@ -65,6 +66,23 @@ tlacuache_SOURCES = \ # cal-util.c \ # cal-util.h \ +libpcs_la_SOURCES = \ + $(CORBA_GENERATED) \ + cal.c \ + cal-backend.c \ + cal-factory.c \ + icalendar.c \ + job.c + +libpcsincludedir = $(includedir)/calendar/pcs + +libpcsinclude_HEADERS = \ + cal.h \ + cal-backend.h \ + cal-common.h \ + cal-factory.h \ + icalendar.h \ + job.h ICAL_LINK_FLAGS = $(top_builddir)/libical/src/libical/libical.la |