2014-10-31 03:09:48 +00:00
|
|
|
#
|
|
|
|
# Asterisk -- A telephony toolkit for Linux.
|
|
|
|
#
|
|
|
|
# Contrib scripts
|
|
|
|
#
|
|
|
|
# Copyright (C) 1999-2014, Digium, Inc.
|
|
|
|
#
|
|
|
|
# This program is free software, distributed under the terms of
|
|
|
|
# the GNU General Public License
|
|
|
|
#
|
|
|
|
|
|
|
|
ASTTOPDIR?=..
|
|
|
|
-include $(ASTTOPDIR)/menuselect.makeopts
|
|
|
|
|
|
|
|
.PHONY: all clean install uninstall
|
|
|
|
|
|
|
|
all:
|
|
|
|
clean:
|
|
|
|
|
|
|
|
include $(ASTTOPDIR)/Makefile.rules
|
|
|
|
|
|
|
|
install:
|
2015-04-17 03:16:59 -04:00
|
|
|
$(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/scripts"; \
|
|
|
|
$(INSTALL) -m 755 scripts/refcounter.py "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"; \
|
2014-10-31 03:09:48 +00:00
|
|
|
|
|
|
|
uninstall:
|
|
|
|
rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"
|