summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMatt Jordan <mjordan@digium.com>2015-06-27 18:47:19 -0500
committerMatt Jordan <mjordan@digium.com>2015-07-04 07:29:53 -0500
commit49f81ddb85a4460ae69569a87a0ea1ae264e3019 (patch)
tree52de70b49317f74c4d04474a232c282424953b9a /apps
parenta9f721303d1ec80b06d4f6852ffbd0b558b06e0d (diff)
Makefile: Remove coverage files on 'make clean'
This patch updates a variety of Makefiles in Asterisk's build system to remove .gcda and .gcno files when 'make clean' is executed. These files are generated when '--enable-coverage' is passed to the Asterisk configure script. Change-Id: Ib70b41eea2ee2908885bff02e80faf9f40c84602
Diffstat (limited to 'apps')
-rw-r--r--apps/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/Makefile b/apps/Makefile
index 1dfe8c838..1e8be04d4 100644
--- a/apps/Makefile
+++ b/apps/Makefile
@@ -28,7 +28,7 @@ all: _all
include $(ASTTOPDIR)/Makefile.moddir_rules
clean::
- rm -f confbridge/*.o confbridge/*.i
+ rm -f confbridge/*.o confbridge/*.i confbridge/*.gcda confbridge/*.gcno
$(if $(filter app_confbridge,$(EMBEDDED_MODS)),modules.link,app_confbridge.so): $(subst .c,.o,$(wildcard confbridge/*.c))
$(subst .c,.o,$(wildcard confbridge/*.c)): _ASTCFLAGS+=$(call MOD_ASTCFLAGS,app_confbridge)