summaryrefslogtreecommitdiffstats
path: root/payloads/nvramcui/Makefile
diff options
context:
space:
mode:
authorNico Huber <nico.huber@secunet.com>2020-08-04 17:07:18 +0200
committerNico Huber <nico.h@gmx.de>2020-08-18 10:24:01 +0000
commit31206c7156bc17239f5c5aa801cd322a8fa5d387 (patch)
tree27d8bd69a35773fe4f9f10b55769447355f1cacb /payloads/nvramcui/Makefile
parent3bc42efb45d4b52e0c30148f3a34c135ec3bf25f (diff)
downloadcoreboot-31206c7156bc17239f5c5aa801cd322a8fa5d387.tar.gz
coreboot-31206c7156bc17239f5c5aa801cd322a8fa5d387.tar.bz2
coreboot-31206c7156bc17239f5c5aa801cd322a8fa5d387.zip
payloads/nvramcui: Fix `make clean`
After `make clean` a new build should not be based on stale artifacts. Hence we have to remove them. Change-Id: I540a83a6c87b843b1c4c9c55990bf3e91fe90d79 Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44180 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'payloads/nvramcui/Makefile')
-rw-r--r--payloads/nvramcui/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/payloads/nvramcui/Makefile b/payloads/nvramcui/Makefile
index bf7053b9a6be..269d558d19bc 100644
--- a/payloads/nvramcui/Makefile
+++ b/payloads/nvramcui/Makefile
@@ -26,9 +26,9 @@ else
endif
clean:
- rm -f nvramcui.elf
+ rm -rf build libpayload nvramcui.elf
distclean: clean
- rm -rf build libpayload .config .config.old
+ rm -rf .config .config.old
.PHONY: all clean distclean