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
This commit is contained in:
Dan Winship
2003-10-24 15:35:50 +00:00
parent d965dbd839
commit 8fcca0ed99
2 changed files with 16 additions and 4 deletions

View File

@ -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,

View File

@ -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)