aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2003-10-24 23:35:50 +0800
committerDan Winship <danw@src.gnome.org>2003-10-24 23:35:50 +0800
commit8fcca0ed99c346ee7a8a2d35921a288473b76eeb (patch)
tree818c884e3c002dab52d879fb93b84c1ad7029b97
parentd965dbd8397e5bd89a7cb84e876c8a7d392af48b (diff)
downloadgsoc2013-evolution-8fcca0ed99c346ee7a8a2d35921a288473b76eeb.tar
gsoc2013-evolution-8fcca0ed99c346ee7a8a2d35921a288473b76eeb.tar.gz
gsoc2013-evolution-8fcca0ed99c346ee7a8a2d35921a288473b76eeb.tar.bz2
gsoc2013-evolution-8fcca0ed99c346ee7a8a2d35921a288473b76eeb.tar.lz
gsoc2013-evolution-8fcca0ed99c346ee7a8a2d35921a288473b76eeb.tar.xz
gsoc2013-evolution-8fcca0ed99c346ee7a8a2d35921a288473b76eeb.tar.zst
gsoc2013-evolution-8fcca0ed99c346ee7a8a2d35921a288473b76eeb.zip
build libpcs.la and libpcsfile.la instead of just .a. (libpcs_la_LIBADD):
* 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 svn path=/trunk/; revision=23061
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/pcs/Makefile.am15
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)