mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 03:20:57 +00:00
* The REF_DEBUG compiler flag no longer has any effect on code that uses Astobj2. It is used to determine if reference debugging is enabled by default. Reference debugging can be enabled or disabled in asterisk.conf. * Caller information is provided in logger errors for ao2 bad magic numbers. * Optimizes AO2 by merging internal functions with the public counterpart. This was possible now that we no longer require a dual ABI. ASTERISK-24974 #close Reported by: Corey Farrell Change-Id: Icf3552721fe999365ba8a8cf00a965aa6b897cc1
28 lines
575 B
Makefile
28 lines
575 B
Makefile
#
|
|
# 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:
|
|
$(INSTALL) -d "$(DESTDIR)$(ASTDATADIR)/scripts"; \
|
|
$(INSTALL) -m 755 scripts/refcounter.py "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"; \
|
|
|
|
uninstall:
|
|
rm -f "$(DESTDIR)$(ASTDATADIR)/scripts/refcounter.py"
|