diff options
author | Riku Voipio <riku.voipio@linaro.org> | 2015-06-18 15:52:18 +0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2015-07-08 17:56:13 -0300 |
commit | c867b150de8514d8682978d8e8874c3940ae781b (patch) | |
tree | 805693d0b4cc66aea4bec8a385d475a164868f2f /tools/lib/api/Makefile | |
parent | 5fc472a628edb8ad83016a063329e8b589a04060 (diff) | |
download | op-kernel-dev-c867b150de8514d8682978d8e8874c3940ae781b.zip op-kernel-dev-c867b150de8514d8682978d8e8874c3940ae781b.tar.gz |
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/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/api/Makefile b/tools/lib/api/Makefile index 8bd9606..fe1b02c 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: |