x86/build: Clean auto-generated processor feature files

Commit 9def39be4e96 ("x86: Support compiling out human-friendly
processor feature names") made two source file targets
conditional. Such conditional targets will not be cleaned
automatically by make mrproper.

Fix by adding explicit clean-files targets for the two files.

Fixes: 9def39be4e96 ("x86: Support compiling out human-friendly processor feature names")
Signed-off-by: Bjørn Mork <bjorn@mork.no>
Cc: Josh Triplett <josh@joshtriplett.org>
Link: http://lkml.kernel.org/r/1419335863-10608-1-git-send-email-bjorn@mork.no
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Bjørn Mork and committed by
Ingo Molnar
280dbc57 ea174f4c

+2
+1
arch/x86/boot/Makefile
··· 51 $(obj)/cpustr.h: $(obj)/mkcpustr FORCE 52 $(call if_changed,cpustr) 53 endif 54 55 # --------------------------------------------------------------------------- 56
··· 51 $(obj)/cpustr.h: $(obj)/mkcpustr FORCE 52 $(call if_changed,cpustr) 53 endif 54 + clean-files += cpustr.h 55 56 # --------------------------------------------------------------------------- 57
+1
arch/x86/kernel/cpu/Makefile
··· 66 $(obj)/capflags.c: $(cpufeature) $(src)/mkcapflags.sh FORCE 67 $(call if_changed,mkcapflags) 68 endif
··· 66 $(obj)/capflags.c: $(cpufeature) $(src)/mkcapflags.sh FORCE 67 $(call if_changed,mkcapflags) 68 endif 69 + clean-files += capflags.c