From 4143a935e5abbb897f38f159fd0330c09b58bdda Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Sun, 3 Jun 2012 11:13:29 +1000 Subject: s3-build: Remove finddead This won't work with the new tree structure, and we have the same output at https://build.samba.org/lcov/data/coverage/samba_4_0_test/unused-fns.txt Using the callcatcher framework. Andrew Bartlett --- source3/Makefile.in | 9 --------- 1 file changed, 9 deletions(-) diff --git a/source3/Makefile.in b/source3/Makefile.in index 2405ec7748..093123c2b9 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -3253,15 +3253,6 @@ realdistclean:: distclean -rm -f include/version.h -rm -f configure -# this target is really just for my use. It only works on a limited -# range of machines and is used to produce a list of potentially -# dead (ie. unused) functions in the code. (tridge) -finddead:: - nm */*.o |grep 'U ' | awk '{print $$2}' | sort -u > nmused.txt - nm */*.o |grep 'T ' | awk '{print $$3}' | sort -u > nmfns.txt - comm -13 nmused.txt nmfns.txt - - # when configure.in is updated, reconfigure $(srcdir)/configure: $(srcdir)/configure.in @echo "WARNING: you need to rerun ./autogen.sh" -- cgit