diff options
author | Matthew Loper <mloper@src.gnome.org> | 2000-04-27 08:27:50 +0800 |
---|---|---|
committer | Matthew Loper <mloper@src.gnome.org> | 2000-04-27 08:27:50 +0800 |
commit | e3f95dc9d46d8feff06ee81767cf4785286aa7cf (patch) | |
tree | 0743ce7d8719a989121fdc47afb02de264e1fbb7 /tools | |
parent | e71125295c1a0d0566b9819bc6a02cd4c141376c (diff) | |
download | gsoc2013-evolution-e3f95dc9d46d8feff06ee81767cf4785286aa7cf.tar gsoc2013-evolution-e3f95dc9d46d8feff06ee81767cf4785286aa7cf.tar.gz gsoc2013-evolution-e3f95dc9d46d8feff06ee81767cf4785286aa7cf.tar.bz2 gsoc2013-evolution-e3f95dc9d46d8feff06ee81767cf4785286aa7cf.tar.lz gsoc2013-evolution-e3f95dc9d46d8feff06ee81767cf4785286aa7cf.tar.xz gsoc2013-evolution-e3f95dc9d46d8feff06ee81767cf4785286aa7cf.tar.zst gsoc2013-evolution-e3f95dc9d46d8feff06ee81767cf4785286aa7cf.zip |
+ * configure.in: added tools/Makefile.
+
+ * Makefile.am: Added tools.
+
+ * tools/: New directory for tools relating to evolution.
+
+ * tools/killev: New script for killing all evolution-related
+ stuff.
+
+ * tools/Makefile.am: New file.
+
+ * tools/.cvsignore: New file.
svn path=/trunk/; revision=2652
Diffstat (limited to 'tools')
-rw-r--r-- | tools/.cvsignore | 3 | ||||
-rw-r--r-- | tools/Makefile.am | 1 | ||||
-rwxr-xr-x | tools/killev | 11 |
3 files changed, 15 insertions, 0 deletions
diff --git a/tools/.cvsignore b/tools/.cvsignore new file mode 100644 index 0000000000..36a2ee1e24 --- /dev/null +++ b/tools/.cvsignore @@ -0,0 +1,3 @@ +Makefile +Makefile.in +.deps
\ No newline at end of file diff --git a/tools/Makefile.am b/tools/Makefile.am new file mode 100644 index 0000000000..bca2f2c87c --- /dev/null +++ b/tools/Makefile.am @@ -0,0 +1 @@ +bin_SCRIPTS = killev
\ No newline at end of file diff --git a/tools/killev b/tools/killev new file mode 100755 index 0000000000..4770f8a4bf --- /dev/null +++ b/tools/killev @@ -0,0 +1,11 @@ +killall -9 wombat 2>/dev/null +killall -9 lt-wombat 2>/dev/null +killall -9 tlacuache 2>/dev/null +killall -9 evolution-addressbook 2>/dev/null +killall -9 lt-evolution-addressbook 2>/dev/null +killall -9 evolution-calendar 2>/dev/null +killall -9 lt-evolution-calendar 2>/dev/null +killall -9 lt-gnomecal 2>/dev/null +killall -9 evolution-mail 2>/dev/null +killall -9 lt-evolution-mail 2>/dev/null +killall -9 evolution 2>/dev/null |