From e4fbcc549a143992f72333404adb0180afa69e1a Mon Sep 17 00:00:00 2001 From: Bjoern Michaelsen Date: Tue, 15 Oct 2013 10:18:29 +0200 Subject: [PATCH] fdo#70371: create findunusedheaders target - you can now do "make unusedheaders" to look for headers that seem to be used - also renamed the script in ./bin to follow the conventions there Change-Id: Ia9487af02effd05bfbc5c3f5c04b928a407b0fa4 --- Makefile.in | 3 +++ bin/{find_unusedheaders.pl => find-unusedheaders.pl} | 0 2 files changed, 3 insertions(+) rename bin/{find_unusedheaders.pl => find-unusedheaders.pl} (100%) diff --git a/Makefile.in b/Makefile.in index a9764bf378d9..e417670feae5 100644 --- a/Makefile.in +++ b/Makefile.in @@ -376,6 +376,9 @@ findunusedcode: | grep -v ^WSObject \ > unusedcode.easy +findunusedheaders: + $(SRCDIR)/bin/find-unusedheaders.pl + # the actual running of subsequentcheck is now done in "build" target => faster check: build diff --git a/bin/find_unusedheaders.pl b/bin/find-unusedheaders.pl similarity index 100% rename from bin/find_unusedheaders.pl rename to bin/find-unusedheaders.pl