Makefile 647 B

123456789101112131415161718192021222324252627282930
  1. #
  2. # Asterisk -- A telephony toolkit for Linux.
  3. #
  4. # Contrib scripts
  5. #
  6. # Copyright (C) 1999-2014, Digium, Inc.
  7. #
  8. # This program is free software, distributed under the terms of
  9. # the GNU General Public License
  10. #
  11. ASTTOPDIR?=..
  12. -include $(ASTTOPDIR)/menuselect.makeopts
  13. .PHONY: all clean install uninstall
  14. all:
  15. clean:
  16. include $(ASTTOPDIR)/Makefile.rules
  17. install:
  18. if [ -n "$(findstring REF_DEBUG,$(MENUSELECT_CFLAGS))" ]; then \
  19. $(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/scripts"; \
  20. $(INSTALL) -m 755 scripts/refcounter.py "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"; \
  21. fi
  22. uninstall:
  23. rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"