Files
evolution/Makefile.am
Ettore Perazzoli fbc229598c New. New. New. New. New. New. New. New. New. New.
* data/cde_app_root/Makefile.am: New.
* data/cde_app_root/dt/Makefile.am: New.
* data/cde_app_root/dt/appconfig/Makefile.am: New.
* data/cde_app_root/dt/appconfig/appmanager/Makefile.am: New.
* data/cde_app_root/dt/appconfig/appmanager/C/Makefile.am: New.
* data/cde_app_root/dt/appconfig/appmanager/C/Ximian/Makefile.am: New.
* data/cde_app_root/dt/appconfig/icons/Makefile.am: New.
* data/cde_app_root/dt/appconfig/icons/C/Makefile.am: New.
* data/cde_app_root/dt/appconfig/types/Makefile.am: New.
* data/cde_app_root/dt/appconfig/types/C/Makefile.am: New.

* configure.in: Add a `--with-cde-path' option.  Check for
dtappintegrate in that path.  Define HAVE_DTAPPINTEGRATE and
GNOME_PREFIX.  Also, generate
data/cde_app_root/dt/appconfig/types/C/Ximian.dt.in and
shell/evolution-nognome.

svn path=/trunk/; revision=18083
2002-09-16 21:01:46 +00:00

92 lines
2.4 KiB
Makefile

changelogs = \
ChangeLog
confexecdir = $(libdir)
confexec_DATA = \
camelConf.sh \
evolution_shellConf.sh \
evolution_addressbookConf.sh \
evolution_calendarConf.sh
EXTRA_DIST = \
AUTHORS \
$(changelogs) \
COPYING-DOCS \
README \
HACKING \
MAINTAINERS \
NEWS \
NEWS-1.0 \
xml-i18n-merge.in \
xml-i18n-update.in \
xml-i18n-extract.in \
$(confexec_DATA:.sh=.sh.in)
SUBDIRS = \
intl \
macros \
data \
po \
e-util \
libical \
widgets \
shell \
camel \
filter \
libversit \
libwombat \
addressbook \
composer \
mail \
calendar \
wombat \
importers \
my-evolution \
art \
sounds \
ui \
default_user \
views \
tools \
doc \
help \
omf-install
%Conf.sh: %Conf.sh.in Makefile
sed -e 's?\@EVOLUTION_LIBDIR\@?$(EVOLUTION_LIBDIR)?g' \
-e 's?\@EVOLUTION_DATADIR\@?$(EVOLUTION_DATADIR)?g' \
-e 's?\@EVOLUTION_INCLUDEDIR\@?$(EVOLUTION_INCLUDEDIR)?g' \
-e 's?\@CAMEL_INCLUDEDIR\@?$(CAMEL_INCLUDEDIR)?g' \
-e 's?\@VERSION\@?$(VERSION)?g' \
-e 's?\@privlibdir\@?$(privlibdir)?g' \
-e 's?\@SHELL_LIBS\@?$(SHELL_LIBS)?g' \
-e 's?\@SHELL_CFLAGS\@?$(SHELL_CFLAGS)?g' \
-e 's?\@CAMEL_LIBS\@?$(CAMEL_LIBS)?g' \
-e 's?\@CAMEL_CFLAGS\@?$(CAMEL_CFLAGS)?g' \
-e 's?\@LDAP_LIBS\@?$(LDAP_LIBS)?g' \
-e 's?\@LDAP_CFLAGS\@?$(LDAP_CFLAGS)?g' \
-e 's?\@EVOLUTION_ADDRESSBOOK_LIBS\@?$(EVOLUTION_ADDRESSBOOK_LIBS)?g' \
-e 's?\@EVOLUTION_ADDRESSBOOK_CFLAGS\@?$(EVOLUTION_ADDRESSBOOK_CFLAGS)?g' \
-e 's?\@EVOLUTION_CALENDAR_LIBS\@?$(EVOLUTION_CALENDAR_LIBS)?g' \
-e 's?\@EVOLUTION_CALENDAR_CFLAGS\@?$(EVOLUTION_CALENDAR_CFLAGS)?g' \
< $(srcdir)/$< > $@.tmp \
&& mv $@.tmp $@
# 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