diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-17 05:01:46 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-09-17 05:01:46 +0800 |
commit | fbc229598cebbe3dc971b91d5302b7bca17e6688 (patch) | |
tree | 77393dc1064d61561619eda27e01482d0c97e737 /Makefile.am | |
parent | aa526a8c07d7cb2ee018b7b6e6793ecdcb21178a (diff) | |
download | gsoc2013-evolution-fbc229598cebbe3dc971b91d5302b7bca17e6688.tar.gz gsoc2013-evolution-fbc229598cebbe3dc971b91d5302b7bca17e6688.tar.zst gsoc2013-evolution-fbc229598cebbe3dc971b91d5302b7bca17e6688.zip |
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
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index a9c2000693..c66a8aaff6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -72,3 +72,20 @@ SUBDIRS = \ < $(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 |