From fb018ece43a8d01493e3260454044e20e3e281e2 Mon Sep 17 00:00:00 2001 From: Joachim Wiberg Date: Mon, 16 May 2022 08:23:10 +0200 Subject: [PATCH] Minor fixups, make buildroot/Makefile and order-only dep Signed-off-by: Joachim Wiberg --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index dfa15477..98c472a2 100644 --- a/Makefile +++ b/Makefile @@ -13,12 +13,12 @@ all: $(config) buildroot/Makefile $(config): @+$(call bmake,list-defconfigs) - @echo "ERROR: No configuration selected." + @echo "\e[7mERROR: No configuration selected.\e[0m" @echo "Please choose a configuration from the list above by running" @echo "'make _defconfig' before building an image." @exit 1 -%: buildroot/Makefile +%: | buildroot/Makefile @+$(call bmake,$@) buildroot/Makefile: @@ -28,3 +28,4 @@ run: @echo "Starting Qemu :: Ctrl-a x -- exit | Ctrl-a c -- toggle console/monitor" @(cd $(O)/images && ./qemu.sh) +.PHONY: all run