summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2010-07-27 21:16:39 +0000
committerRussell Bryant <russell@russellbryant.com>2010-07-27 21:16:39 +0000
commit0aff0b8e732b051a751a1a3fc7759669e34b1757 (patch)
tree39fd9acc8f55217b6af6550229105c21e0db8f29 /Makefile.rules
parent395a35900aaf8a3ccc1ef0de0c37cc462b4700f4 (diff)
Merged revisions 279953 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r279953 | russell | 2010-07-27 16:16:05 -0500 (Tue, 27 Jul 2010) | 5 lines Add --enable-coverage option to configure script. This option enables the proper compiler flags for tracking code coverage, which is useful along side automated testing. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@279954 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 03bc7e81a..45f7e4bb0 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -43,12 +43,17 @@ ifneq ($(findstring darwin,$(OSARCH)),)
endif
endif
-ifeq ($(findstring DONT_OPTIMIZE,$(MENUSELECT_CFLAGS)),)
+ifeq ($(findstring DONT_OPTIMIZE,$(MENUSELECT_CFLAGS))$(AST_CODE_COVERAGE),no)
_ASTCFLAGS+=$(OPTIMIZE)
else
_ASTCFLAGS+=-O0
endif
+ifeq ($(AST_CODE_COVERAGE),yes)
+ _ASTCFLAGS+=-ftest-coverage -fprofile-arcs
+ _ASTLDFLAGS+=-ftest-coverage -fprofile-arcs
+endif
+
ifeq ($(findstring $(CONFIG_CFLAGS),$(_ASTCFLAGS)),)
_ASTCFLAGS+=$(CONFIG_CFLAGS)
endif