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 | |
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
-rw-r--r-- | ChangeLog | 15 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | configure.in | 1 | ||||
-rw-r--r-- | tools/.cvsignore | 3 | ||||
-rw-r--r-- | tools/Makefile.am | 1 | ||||
-rwxr-xr-x | tools/killev | 11 |
6 files changed, 32 insertions, 0 deletions
@@ -1,3 +1,18 @@ +2000-04-27 Matt Loper <matt@helixcode.com> + + * 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. + 2000-04-26 NotZed <NotZed@HelixCode.com> * tests/test13.c (main): And here too. diff --git a/Makefile.am b/Makefile.am index 84a282bb0f..62ebf01a4e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,6 +28,7 @@ SUBDIRS = \ wombat \ art \ default_user \ + tools \ po dist-hook: diff --git a/configure.in b/configure.in index b799033291..cdc5cf7a46 100644 --- a/configure.in +++ b/configure.in @@ -376,4 +376,5 @@ filter/Makefile wombat/Makefile art/Makefile default_user/Makefile +tools/Makefile ]) 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 |