* tools/evolution-addressbook-export.c: #include bonobo-activation instead of oaf. (main): Initialize using gnome_program_init(). (save_cards): Use g_main_loop_quit() instead of gtk_exit(). * tools/evolution-addressbook-import.c: Update include list for GNOME 2. (main): Initialize using gnome_program_init(). (unref_executable): Use g_main_loop_quit() instead of gtk_exit(). (add_cb): Likewise. * tools/evolution-addressbook-abuse.c: Update include list for GNOME 2. (main): Initialize using gnome_program_init(). (use_addressbook): Use g_object_unref() instead of gtk_object_unref(). (main): Use g_timeout_add() instead of gtk_timeout_add(). (add_cb): Use g_main_loop_quit() instead of gtk_exit(). * configure.in (AC_SUBST): Add tools/Makefile. * Makefile.am (SUBDIRS): Add tools/ back into the list. * tools/Makefile.am: Install everything in $(datadir)/evolution-$(BASE_VERSION)/tools. (INCLUDES): Add the defines that gnome_program_init() likes and also add the _DISABLE_DEPRECATED stuff. svn path=/trunk/; revision=19656
68 lines
1.1 KiB
Makefile
68 lines
1.1 KiB
Makefile
changelogs = \
|
|
ChangeLog
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = \
|
|
camel.pc \
|
|
evolution-shell.pc \
|
|
evolution-addressbook.pc \
|
|
evolution-calendar.pc
|
|
|
|
EXTRA_DIST = \
|
|
AUTHORS \
|
|
$(changelogs) \
|
|
COPYING-DOCS \
|
|
README \
|
|
HACKING \
|
|
MAINTAINERS \
|
|
NEWS \
|
|
NEWS-1.0 \
|
|
intltool-merge.in \
|
|
intltool-update.in \
|
|
intltool-extract.in \
|
|
$(pkgconfig_DATA:.pc=.pc.in)
|
|
|
|
SUBDIRS = \
|
|
data \
|
|
e-util \
|
|
libical \
|
|
libversit \
|
|
widgets \
|
|
shell \
|
|
camel \
|
|
filter \
|
|
libwombat \
|
|
addressbook \
|
|
calendar \
|
|
my-evolution \
|
|
art \
|
|
composer \
|
|
mail \
|
|
ui \
|
|
default_user \
|
|
views \
|
|
wombat \
|
|
tools \
|
|
po
|
|
|
|
|
|
# CDE Stuff
|
|
|
|
if HAVE_DTAPPINTEGRATE
|
|
|
|
# This installs Evolution into the Application Manager on CDE
|
|
dtappintegrate:
|
|
( cd data && make dtappintegrate )
|
|
|
|
# ...And this uninstalls it
|
|
dtappunintegrate:
|
|
( cd data ; make dtappunintegrate )
|
|
|
|
# Install/uninstall for CDE
|
|
cde-install: install dtappintegrate
|
|
cde-uninstall: dtappunintegrate uninstall
|
|
|
|
endif
|
|
|
|
ACLOCAL_AMFLAGS = -I m4
|