2002-11-12 Chris Toshok <toshok@ximian.com> * Makefile.am (eutilinclude_HEADERS): add e-password.h (libeutil_la_SOURCES): add e-password.c * e-passwords.[ch]: port this to gnome2's gnome-config-private. svn path=/trunk/; revision=18727
138 lines
3.1 KiB
Makefile
138 lines
3.1 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-categories-config.h \
|
|
e-categories-master-list-wombat.h \
|
|
e-component-listener.h \
|
|
e-config-listener.h \
|
|
e-corba-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-proxy.h \
|
|
e-request.h \
|
|
e-sexp.h \
|
|
e-time-utils.h \
|
|
e-url.h \
|
|
md5-utils.h
|
|
|
|
libeutil_la_SOURCES = \
|
|
$(eutilinclude_HEADERS) \
|
|
e-categories-config.c \
|
|
e-categories-master-list-wombat.c \
|
|
e-component-listener.c \
|
|
e-config-listener.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-proxy.c \
|
|
e-request.c \
|
|
e-sexp.c \
|
|
e-time-utils.c \
|
|
e-url.c \
|
|
e-util-marshal.c \
|
|
md5-utils.c
|
|
|
|
# GLib marshalling cruft
|
|
|
|
e-util-marshal.h: e-util-marshal.list
|
|
( @GLIB_GENMARSHAL@ --prefix=e_util_marshal e-util-marshal.list --header > e-util-marshal.tmp \
|
|
&& mv e-util-marshal.tmp e-util-marshal.h ) \
|
|
|| ( rm -f e-util-marshal.tmp && exit 1 )
|
|
|
|
e-util-marshal.c: e-util-marshal.h
|
|
( @GLIB_GENMARSHAL@ --prefix=e_util_marshal e-util-marshal.list --body > e-util-marshal.tmp \
|
|
&& mv e-util-marshal.tmp e-util-marshal.c ) \
|
|
|| ( rm -f e-util-marshal.tmp && exit 1 )
|
|
|
|
MARSHAL_GENERATED = e-util-marshal.c e-util-marshal.h
|
|
|
|
|
|
# FIXME TODO
|
|
# e-passwords.c
|
|
# bonobo-factory-util.[ch]
|
|
|
|
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) e-util-marshal.list
|
|
|
|
edb3include_HEADERS = \
|
|
e-db3-utils.h \
|
|
e-dbhash.h
|
|
|
|
libedb3util_la_SOURCES = \
|
|
$(edb3include_HEADERS) \
|
|
e-db3-utils.c \
|
|
e-dbhash.c
|
|
|
|
BUILT_SOURCES = $(MARSHAL_GENERATED)
|
|
CLEANFILES = $(BUILT_SOURCES)
|