aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lib/api/Makefile
diff options
context:
space:
mode:
authorRiku Voipio <riku.voipio@linaro.org>2015-06-18 15:52:18 +0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2015-07-08 17:56:13 -0300
commitc867b150de8514d8682978d8e8874c3940ae781b (patch)
tree805693d0b4cc66aea4bec8a385d475a164868f2f /tools/lib/api/Makefile
parentperf stat: Fix shadow declaration of close (diff)
downloadlinux-dev-c867b150de8514d8682978d8e8874c3940ae781b.tar.xz
linux-dev-c867b150de8514d8682978d8e8874c3940ae781b.zip
tools lib: Improve clean target
The clean targets miss some .cmd and .d files. Signed-off-by: Riku Voipio <riku.voipio@linaro.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Cc: linux-kbuild@vger.kernel.org Link: http://lkml.kernel.org/r/1434631938-12681-1-git-send-email-riku.voipio@linaro.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/lib/api/Makefile')
-rw-r--r--tools/lib/api/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/api/Makefile b/tools/lib/api/Makefile
index 8bd960658463..fe1b02c2c95b 100644
--- a/tools/lib/api/Makefile
+++ b/tools/lib/api/Makefile
@@ -36,7 +36,7 @@ $(LIBFILE): $(API_IN)
clean:
$(call QUIET_CLEAN, libapi) $(RM) $(LIBFILE); \
- find $(if $(OUTPUT),$(OUTPUT),.) -name \*.o | xargs $(RM)
+ find $(if $(OUTPUT),$(OUTPUT),.) -name \*.o -or -name \*.o.cmd -or -name \*.o.d | xargs $(RM)
FORCE: