diff options
author | Badlop <badlop@process-one.net> | 2007-12-02 01:03:18 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2007-12-02 01:03:18 +0000 |
commit | bfb7583bb287e3e4ccabdf8b7e109702366b2971 (patch) | |
tree | c76ba97a509247771f9b8c634884ada08aa6a262 | |
parent | * doc/*.html: Rebuild. (diff) |
* src/Makefile.in: New options make uninstall and
uninstall-all (EJAB-293)
SVN Revision: 1013
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/Makefile.in | 14 |
2 files changed, 19 insertions, 0 deletions
@@ -1,3 +1,8 @@ +2007-12-02 Badlop <badlop@process-one.net> + + * src/Makefile.in: New options make uninstall and + uninstall-all (EJAB-293) + 2007-12-01 Mickael Remond <mremond@process-one.net> * doc/Makefile: echo seems to interpret \n and \v under MacOSX diff --git a/src/Makefile.in b/src/Makefile.in index b327ecb54..23dfa2e47 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -107,6 +107,20 @@ install: all install -m 755 ejabberdctl.example $(SBINDIR)/ejabberdctl install -d $(LOGDIR) +uninstall: uninstall-binary + +uninstall-binary: + rm -rf $(BEAMDIR) + rm -rf $(SODIR) + rm -rf $(MSGSDIR) + rm -rf $(PRIVDIR) + rm -rf $(SBINDIR)/ejabberdctl + +uninstall-all: uninstall-binary + rm -rf $(ETCDIR) + rm -rf $(LOGDIR) + rm -rf $(EJABBERDDIR) + clean: clean-recursive clean-local clean-local: |