From 4143d8b5a12b0a2ec3a38c7f8f0a6ea6e10d0661 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 22 Jul 2002 18:23:48 +0000 Subject: Split pcs-backend-file out of libpcs and build it as a separate (noinst) * pcs/Makefile.am: Split pcs-backend-file out of libpcs and build it as a separate (noinst) library libpcsfile.a. This gets the db3 dependencies out of libpcs, and people trying to create a calendar backend shouldn't be calling functions from the existing backends anyway so there's no reason to install them. svn path=/trunk/; revision=17529 --- calendar/pcs/Makefile.am | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'calendar/pcs') diff --git a/calendar/pcs/Makefile.am b/calendar/pcs/Makefile.am index 0c9800bd4d..0c7590f91a 100644 --- a/calendar/pcs/Makefile.am +++ b/calendar/pcs/Makefile.am @@ -31,12 +31,12 @@ $(CORBA_GENERATED): $(idls) pcsincludedir = $(includedir)/evolution/pcs privlib_LIBRARIES = libpcs.a +noinst_LIBRARIES = libpcsfile.a pcsinclude_HEADERS = \ $(CORBA_GENERATED_H) \ cal.h \ cal-backend.h \ - cal-backend-file.h \ cal-backend-util.h \ cal-common.h \ cal-factory.h \ @@ -48,12 +48,15 @@ libpcs_a_SOURCES = \ $(CORBA_GENERATED_C) \ cal.c \ cal-backend.c \ - cal-backend-file.c \ cal-backend-util.c \ cal-factory.c \ job.c \ query.c +libpcsfile_a_SOURCES = \ + cal-backend-file.c \ + cal-backend-file.h + BUILT_SOURCES = $(CORBA_GENERATED) CLEANFILES = $(BUILT_SOURCES) -- cgit