diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-11-21 00:56:40 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-11-21 00:57:38 +0100 |
commit | a2541298c6fe7a23202808a8da39063fef005f07 (patch) | |
tree | b9fc83871239093656d2a68b346e9579342b0683 /Makefile.in | |
parent | d47e869c7ef1d573d1f7107150ca448f86d292b3 (diff) |
move finunusedcode to a script
Change-Id: Ie4a422a818095313d9765a4c5e9ebba838eed76d
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 44 |
1 files changed, 1 insertions, 43 deletions
diff --git a/Makefile.in b/Makefile.in index e6cba7d079a4..88c56e4eeca5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -312,49 +312,7 @@ docs: @mkdocs.sh $(SRCDIR)/docs $(SRCDIR)/solenv/inc/doxygen.cfg findunusedcode: - @which callcatcher > /dev/null 2>&1 || \ - (echo "callcatcher not installed" && false) - @mkdir -p $(SRCDIR)/callcatcher/config_host - @cp config_host/* callcatcher/config_host - @cp config_host.mk* callcatcher - @cat config_host.mk | sed -e s,"export OOO_JUNIT_JAR=.*","export OOO_JUNIT_JAR=",g > $(SRCDIR)/callcatcher/config_host.mk - @sed -i -e s,g++,"callcatcher g++",g $(SRCDIR)/callcatcher/config_host.mk - @sed -i -e s,gcc,"callcatcher gcc",g $(SRCDIR)/callcatcher/config_host.mk - @echo unexport ARCH_FLAGS >> $(SRCDIR)/callcatcher/config_host.mk - @echo unexport CFLAGS >> $(SRCDIR)/callcatcher/config_host.mk - @echo unexport CXXFLAGS >> $(SRCDIR)/callcatcher/config_host.mk - $(GNUMAKE) -f $(SRCDIR)/solenv/bin/callcatcher.Makefile findunusedcode - @grep ::.*\( unusedcode.all \ - | grep -v ^Atom \ - | grep -v ^atom:: \ - | grep -v ^boost:: \ - | grep -v ^CIcc \ - | grep -v ^CLuceneError:: \ - | grep -v ^cppu:: \ - | grep -v ^CppUnit:: \ - | grep -v ^Dde \ - | grep -v ^graphite2:: \ - | grep -v ^jvmaccess:: \ - | grep -v ^libcdr:: \ - | grep -v ^libcmis:: \ - | grep -v ^libmspub:: \ - | grep -v ^libvisio:: \ - | grep -v ^libwpg:: \ - | grep -v ^libwps_tools_win:: \ - | grep -v ^lucene:: \ - | grep -v ^Matrix3d:: \ - | grep -v ^RelatedMultipart:: \ - | grep -v ^salhelper:: \ - | grep -v ^VSDInternalStream:: \ - | grep -v ^WP1 \ - | grep -v ^WP3 \ - | grep -v ^WP42 \ - | grep -v ^WP6 \ - | grep -v ^WPG \ - | grep -v ^WPS \ - | grep -v WPX \ - | grep -v ^WSObject \ - > unusedcode.easy + @$(SRCDIR)/bin/findunusedcode $(SRCDIR) $(GNUMAKE) findunusedheaders: $(SRCDIR)/bin/find-unusedheaders.pl |