diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2008-06-06 17:47:09 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2008-07-25 16:12:17 -0400 |
commit | 6b36ab27d7161bc233e014ff38d8b17ae9975dee (patch) | |
tree | a330da3151bbc2e7a2cc535aa37f78bac9d85c8d /Makefile | |
parent | 7712401ae9006fc9d9b9a3e7861dc73781429a89 (diff) |
kbuild: make clean removes *.o.* as well
Those are left presumably from aborted ccache(1) compilations:
arch/x86/kernel/.tmp_io_apic_64.o.T5veul
arch/x86/kvm/.tmp_x86.o.SZWn69
arch/x86/mm/.tmp_pgtable.o.sL1LTf
drivers/ieee1394/.tmp_ieee1394_transactions.o.bUj6o1
drivers/infiniband/hw/mlx4/.tmp_main.o.vy0ep6
BTW, with git there is nice way to check for such nuisainces:
make mrproper
git-ls-files -o
should give empty output.
More precise wildcard spec from: Jan Engelhardt <jengelh@medozas.de>
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1160,7 +1160,7 @@ clean: archclean $(clean-dirs) | |||
1160 | \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ | 1160 | \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ |
1161 | -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ | 1161 | -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \ |
1162 | -o -name '*.symtypes' -o -name 'modules.order' \ | 1162 | -o -name '*.symtypes' -o -name 'modules.order' \ |
1163 | -o -name 'Module.markers' \) \ | 1163 | -o -name 'Module.markers' -o -name '.tmp_*.o.*' \) \ |
1164 | -type f -print | xargs rm -f | 1164 | -type f -print | xargs rm -f |
1165 | 1165 | ||
1166 | # mrproper - Delete all generated files, including .config | 1166 | # mrproper - Delete all generated files, including .config |