diff options
author | Sasha Levin <sasha.levin@oracle.com> | 2014-05-08 13:55:13 -0400 |
---|---|---|
committer | Sasha Levin <sasha.levin@oracle.com> | 2014-05-08 13:55:13 -0400 |
commit | ad3b564deb91c67ff9621255307ed31da870c8f7 (patch) | |
tree | 59e1b4ccc8337c48b7f9fac299179403d7345c85 | |
parent | 0041898ec19f10e2adf5f1245f32df88d627ae8a (diff) |
tools/liblockdep: Remove all build files when doing make clean
We forgot to remove the shared library with the version number when
'make clean' ran, fix the clean pattern.
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
-rw-r--r-- | tools/lib/lockdep/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/lockdep/Makefile b/tools/lib/lockdep/Makefile index c70919b5ebe7..bba2f5253b6e 100644 --- a/tools/lib/lockdep/Makefile +++ b/tools/lib/lockdep/Makefile @@ -230,7 +230,7 @@ install_lib: all_cmd install: install_lib clean: - $(RM) *.o *~ $(TARGETS) *.a *.so $(VERSION_FILES) .*.d + $(RM) *.o *~ $(TARGETS) *.a *liblockdep*.so* $(VERSION_FILES) .*.d $(RM) tags TAGS endif # skip-makefile |