From 7ee2c99cd438ab6e103812a10396ba9224bee390 Mon Sep 17 00:00:00 2001 From: Steve Evans Date: Sat, 27 Jul 2024 16:54:58 +0100 Subject: [PATCH] Add all_configs make target to build all FC configs (#13660) * Add configs_all make target to build all FC configs * Update Makefile Change from `configs_all` to `all_configs`. Co-authored-by: Mark Haslinghuis --------- Co-authored-by: Mark Haslinghuis --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 28b00947a92..11ffbcf8f33 100644 --- a/Makefile +++ b/Makefile @@ -502,6 +502,12 @@ $(CONFIGS_CLEAN): ## clean_all : clean all targets clean_all: $(TARGETS_CLEAN) test_clean +## configs : Hydrate configuration +configs: configs + +## all_configs : Build all configs +all_configs: $(BASE_CONFIGS) + TARGETS_FLASH = $(addsuffix _flash,$(BASE_TARGETS)) ## _flash : build and flash a target