2002-07-09 Peter Williams <peterw@ximian.com> * libversit/Makefile.am (privlib_LIBRARIES): Install libversit.a so that people compiling against the addressbook can do so successfully. * Makefile.am: create our *Conf.sh files and dist them and install them. * configure.in: Define and subst some variables that the Conf.sh file need. 2002-07-08 Peter Williams <peterw@ximian.com> * backend/ebook/Makefile.am: Install libebook-static.la. Also change --all-static to -all-static, which is the right flag. * backend/pas/Makefile.am: Install the PAS headers in $(includedir)/evolution/pas. Install libpas.a 2002-07-08 Peter Williams <peterw@ximian.com> * cal-util/Makefile.am: Install libcal-util-static.la and fix the -all-static flag to make it install statically. * pcs/Makefile.am: Install libpcs.a and its headers. * pcs/cal-backend-util.h: Same sort of include namespacing fix, but for pcs. * pcs/cal.h: * pcs/query.h: * pcs/cal-factory.h: * pcs/cal-backend.h: * pcs/cal-backend-file.h: Same. 2002-07-17 Peter Williams <peterw@ximian.com> * calendar/cal-util/Makefile.am (GTKDOC_LIBS): Because we're using libtool as our LD, we can reference .la's and libtool will DTRT for us. * calendar/cal-client/Makefile.am (GTKDOC_LIBS): Same here. 2002-07-03 Peter Williams <peterw@ximian.com> * Makefile.am: Install libeutil, libeconduit, and libedb3util and their headers. 2002-07-08 Peter Williams <peterw@ximian.com> * Makefile.am: Reference the new libefilterbar.a. 2002-07-12 Peter Williams <peterw@ximian.com> * Makefile.am (INCLUDES): Add -I$(builddir)/libical/src/libical for the generated ical.h (some headers rely on this because they too get installed.) 2002-07-09 Peter Williams <peterw@ximian.com> * e-timezone-dialog/Makefile.am: Add -I$(top_builddir)/libical/src/libical; some headers that we rely on get installed, so they point to the ical.h that gets generated and installed; consequently we need to be able to find the generated ical.h * misc/Makefile.am: Install libemiscwidgets.a and its headers. However, break EFilterBar into a separate libefilterbar.a because we don't want the installed library to depend on libfilter. svn path=/trunk/; revision=17496
112 lines
2.4 KiB
Makefile
112 lines
2.4 KiB
Makefile
SUBDIRS = . ename
|
|
|
|
imagesdir = $(datadir)/images/evolution
|
|
|
|
eutilincludedir = $(includedir)/evolution/e-util
|
|
econdincludedir = $(includedir)/evolution/e-conduit
|
|
edb3includedir = $(includedir)/evolution/e-db3util
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-DEVOLUTION_IMAGES=\""$(imagesdir)"\" \
|
|
-DEVOLUTION_CATEGORY_ICONS=\""$(imagesdir)/categories"\" \
|
|
-DG_LOG_DOMAIN=\"e-utils\" \
|
|
$(DB3_CFLAGS) \
|
|
$(PISOCK_CFLAGS) \
|
|
$(E_UTIL_CFLAGS)
|
|
|
|
privlib_LTLIBRARIES = libeutil.la libedb3util.la libeconduit.la
|
|
noinst_LTLIBRARIES = libeutil-static.la libeconduit-static.la
|
|
|
|
eutilinclude_HEADERS = \
|
|
e-bonobo-factory-util.h \
|
|
e-categories-master-list-wombat.h \
|
|
e-categories-config.h \
|
|
e-corba-utils.h \
|
|
e-dialog-utils.h \
|
|
e-dialog-widgets.h \
|
|
e-gtk-utils.h \
|
|
e-gui-utils.h \
|
|
e-host-utils.h \
|
|
e-html-utils.h \
|
|
e-iterator.h \
|
|
e-lang-utils.h \
|
|
e-list-iterator.h \
|
|
e-list.h \
|
|
e-memory.h \
|
|
e-mktemp.h \
|
|
e-msgport.h \
|
|
e-passwords.h \
|
|
e-path.h \
|
|
e-request.h \
|
|
e-sexp.h \
|
|
e-time-utils.h \
|
|
e-url.h \
|
|
md5-utils.h
|
|
|
|
libeutil_la_SOURCES = \
|
|
$(eutilinclude_HEADERS) \
|
|
e-bonobo-factory-util.c \
|
|
e-categories-master-list-wombat.c \
|
|
e-categories-config.c \
|
|
e-corba-utils.c \
|
|
e-dialog-utils.c \
|
|
e-dialog-widgets.c \
|
|
e-gtk-utils.c \
|
|
e-gui-utils.c \
|
|
e-host-utils.c \
|
|
e-html-utils.c \
|
|
e-iterator.c \
|
|
e-lang-utils.c \
|
|
e-list-iterator.c \
|
|
e-list.c \
|
|
e-memory.c \
|
|
e-mktemp.c \
|
|
e-msgport.c \
|
|
e-passwords.c \
|
|
e-path.c \
|
|
e-request.c \
|
|
e-sexp.c \
|
|
e-time-utils.c \
|
|
e-url.c \
|
|
md5-utils.c
|
|
|
|
libeutil_la_LIBADD = $(E_UTIL_LIBS)
|
|
|
|
libeutil_static_la_SOURCES = $(libeutil_la_SOURCES)
|
|
libeutil_static_la_LIBADD = $(libeutil_la_LIBADD)
|
|
libeutil_static_la_LDFLAGS = -all-static
|
|
|
|
econdinclude_HEADERS = \
|
|
e-pilot-map.h \
|
|
e-pilot-settings.h \
|
|
e-pilot-util.h
|
|
|
|
pilot_sources = \
|
|
$(econdinclude_HEADERS) \
|
|
e-pilot-map.c \
|
|
e-pilot-settings.c \
|
|
e-pilot-util.c
|
|
|
|
if ENABLE_PILOT_CONDUITS
|
|
pilot_compile = $(pilot_sources)
|
|
else
|
|
pilot_compile =
|
|
endif
|
|
|
|
libeconduit_la_SOURCES = $(pilot_compile)
|
|
|
|
libeconduit_static_la_SOURCES = $(libeconduit_la_SOURCES)
|
|
libeconduit_static_la_LDFLAGS = -all-static
|
|
|
|
EXTRA_DIST = $(pilot_sources)
|
|
|
|
edb3include_HEADERS = \
|
|
e-db3-utils.h \
|
|
e-dbhash.h
|
|
|
|
libedb3util_la_SOURCES = \
|
|
$(edb3include_HEADERS) \
|
|
e-db3-utils.c \
|
|
e-dbhash.c
|