diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/pcs/.cvsignore | 1 | ||||
-rw-r--r-- | calendar/pcs/Makefile.am | 18 |
3 files changed, 24 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 951063b456..9a51ce0df5 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2000-03-28 Matt Loper <matt@helixcode.com> + + * pcs/Makefile.am: create a libpcs.la library, for use in the + wombat. + 2000-03-28 Seth Alves <alves@hungry.com> * gui/Makefile.am (LINK_FLAGS): added libeutil.la and libetext.a 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 |