diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/pcs/Makefile.am | 15 |
2 files changed, 16 insertions, 4 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ecf7de001c..4ebfac9422 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -18,6 +18,11 @@ * pcs/cal-backend-file.c (cal_backend_file_get_changes): Update for that + * pcs/Makefile.am: build libpcs.la and libpcsfile.la instead of + just .a. + (libpcs_la_LIBADD): depend on libcal-util.la and libeutil.la + (libpcsfile_la_LIBADD): depend on libpcs.la + 2003-10-24 Rodrigo Moya <rodrigo@ximian.com> * cal-util/cal-util.[ch] (cal_util_construct_instance, diff --git a/calendar/pcs/Makefile.am b/calendar/pcs/Makefile.am index 9287ee6a87..921ac896d6 100644 --- a/calendar/pcs/Makefile.am +++ b/calendar/pcs/Makefile.am @@ -37,8 +37,8 @@ $(CORBA_GENERATED_C): $(CORBA_GENERATED_H) pcsincludedir = $(privincludedir)/pcs -privlib_LIBRARIES = libpcs.a -noinst_LIBRARIES = libpcsfile.a +privlib_LTLIBRARIES = libpcs.la +noinst_LTLIBRARIES = libpcsfile.la pcsinclude_HEADERS = \ $(CORBA_GENERATED_H) \ @@ -51,7 +51,7 @@ pcsinclude_HEADERS = \ cal-factory.h \ query.h -libpcs_a_SOURCES = \ +libpcs_la_SOURCES = \ $(pcsinclude_HEADERS) \ $(CORBA_GENERATED_C) \ cal.c \ @@ -62,7 +62,11 @@ libpcs_a_SOURCES = \ cal-factory.c \ query.c -libpcsfile_a_SOURCES = \ +libpcs_la_LIBADD = \ + $(top_builddir)/calendar/cal-util/libcal-util.la \ + $(top_builddir)/e-util/libeutil.la + +libpcsfile_la_SOURCES = \ cal-backend-file-events.c\ cal-backend-file-events.h\ cal-backend-file-todos.c\ @@ -70,6 +74,9 @@ libpcsfile_a_SOURCES = \ cal-backend-file.c \ cal-backend-file.h +libpcsfile_la_LIBADD = \ + libpcs.la + BUILT_SOURCES = $(CORBA_GENERATED) CLEANFILES = $(BUILT_SOURCES) |