summaryrefslogtreecommitdiff
path: root/contrib/Makefile
diff options
context:
space:
mode:
authorGeorge Joseph <gjoseph@digium.com>2017-01-13 10:03:15 -0700
committerKevin Harwell <kharwell@digium.com>2017-01-20 11:20:22 -0600
commitd16b3a99171338264f9d7aa15819ed6d9c9b1d85 (patch)
treed6bc8053382015c527827d732483259798d0714c /contrib/Makefile
parentfb02cc5a8bae22f2eca4f60d84550b30a19d723a (diff)
debug_utilities: Create ast_loggrabber
ast_loggrabber gathers log files from customizable search patterns, optionally converts POSIX timestamps to a readable format and tarballs the results. Also a few tweaks were made to ast_coredumper. Change-Id: I8bfe1468ada24c1344ce4abab7b002a59a659495 (cherry picked from commit c70915287837704090d75f181525765de7a17221)
Diffstat (limited to 'contrib/Makefile')
-rw-r--r--contrib/Makefile10
1 files changed, 6 insertions, 4 deletions
diff --git a/contrib/Makefile b/contrib/Makefile
index a5775cb82..a66724311 100644
--- a/contrib/Makefile
+++ b/contrib/Makefile
@@ -20,10 +20,12 @@ clean:
include $(ASTTOPDIR)/Makefile.rules
install:
- $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/scripts"; \
- $(INSTALL) -m 755 scripts/refcounter.py "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"; \
+ $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/scripts"
+ $(INSTALL) -m 755 scripts/ast_loggrabber "$(DESTDIR)$(ASTDATADIR)/scripts/ast_loggrabber"
$(INSTALL) -m 755 scripts/ast_coredumper "$(DESTDIR)$(ASTDATADIR)/scripts/ast_coredumper"
+ $(INSTALL) -m 755 scripts/refcounter.py "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"
uninstall:
- rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"
- rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/ast_coredumper"
+ -rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/ast_loggrabber"
+ -rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/ast_coredumper"
+ -rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"