Attention is currently required from: Arthur Heymans. Hello Arthur Heymans,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/coreboot/+/63117
to review the following change.
Change subject: Makefile: Clean up old targets ......................................................................
Makefile: Clean up old targets
Some of these targets seem to come from a long time ago. Now just rm -rf $(obj) is all that is needed for a clean.
Change-Id: Iccc62b3c54ee2a074c25674715403c1457f6aad3 Signed-off-by: Arthur Heymans arthur@aheymans.xyz --- M Makefile M Makefile.inc 2 files changed, 2 insertions(+), 15 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/17/63117/1
diff --git a/Makefile b/Makefile index 82f6458..8c0369c 100644 --- a/Makefile +++ b/Makefile @@ -470,10 +470,10 @@ doxygen-clean: rm -rf $(DOXYGEN_OUTPUT_DIR)
-clean-for-update: doxygen-clean clean-for-update-target +clean-for-update: doxygen-clean rm -rf $(obj) .xcompile
-clean: clean-for-update clean-target clean-utils +clean: clean-for-update clean-utils clean-payloads rm -f .ccwrap
clean-cscope: diff --git a/Makefile.inc b/Makefile.inc index ec2d097..96be63f 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -675,19 +675,6 @@ clean-abuild: rm -rf coreboot-builds
-clean-for-update-target: clean-payloads - rm -f $(obj)/ramstage?* $(obj)/coreboot.romstage $(obj)/coreboot.pre* $(obj)/coreboot.bootblock $(obj)/coreboot.a - rm -rf $(obj)/bootblock?* $(obj)/romstage?* $(obj)/location.* - rm -f $(obj)/option_table.* $(obj)/crt0.S $(obj)/ldscript - rm -f $(obj)/mainboard/$(MAINBOARDDIR)/static.c $(obj)/mainboard/$(MAINBOARDDIR)/config.py $(obj)/mainboard/$(MAINBOARDDIR)/static.dot - rm -f $(obj)/mainboard/$(MAINBOARDDIR)/crt0.s $(obj)/mainboard/$(MAINBOARDDIR)/crt0.disasm - rm -f $(obj)/mainboard/$(MAINBOARDDIR)/romstage.inc - rm -f $(obj)/mainboard/$(MAINBOARDDIR)/bootblock.* $(obj)/dsdt.* - rm -f $(obj)/cpu/x86/smm/smm_bin.c $(obj)/cpu/x86/smm/smm.* $(obj)/cpu/x86/smm/smm - -clean-target: - rm -f $(obj)/coreboot* - ####################################################################### # Development utilities printcrt0s: