aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSam Protsenko <semen.protsenko@linaro.org>2024-03-07 21:38:22 -0600
committerTom Rini <trini@konsulko.com>2024-03-13 18:47:11 -0400
commit56041aa545df550134a97aa172645bd718e4e586 (patch)
treefd1d5b7297d723f7e848321ccdd91a74660e886d /Makefile
parent6d1734f0056720c51a3907ece934a5fbb0fbb0cb (diff)
downloadu-boot-56041aa545df550134a97aa172645bd718e4e586.zip
u-boot-56041aa545df550134a97aa172645bd718e4e586.tar.gz
u-boot-56041aa545df550134a97aa172645bd718e4e586.tar.bz2
Makefile: Improve generated_defconfig file handling
Commit 2027e99e61aa ("Makefile: Run defconfig files through the C preprocessor") adds `generated_defconfig' file, but fails to clean that up. It might be useful to have that file around after `make' is done, but it's better to clean that up on `make clean'. Also we probably want to hide it in `git status' list. This patch makes the described changes, and also adds `-P' parameter to the CPP command that produces the `generated_defconfig' to avoid generating linemarkers. Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org> Fixes: 2027e99e61aa ("Makefile: Run defconfig files through the C preprocessor") Acked-by: Andrew Davis <afd@ti.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 28a2a1d..91afee6 100644
--- a/Makefile
+++ b/Makefile
@@ -2233,6 +2233,7 @@ clean: $(clean-dirs)
-o -name modules.builtin -o -name '.tmp_*.o.*' \
-o -name 'dsdt_generated.aml' -o -name 'dsdt_generated.asl.tmp' \
-o -name 'dsdt_generated.c' \
+ -o -name 'generated_defconfig' \
-o -name '*.efi' -o -name '*.gcno' -o -name '*.so' \) \
-type f -print | xargs rm -f