1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 11:29:58 +03:00

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 <mark@numloq.nl>

---------

Co-authored-by: Mark Haslinghuis <mark@numloq.nl>
This commit is contained in:
Steve Evans 2024-07-27 16:54:58 +01:00 committed by GitHub
parent e43b33a02a
commit 7ee2c99cd4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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))
## <TARGET>_flash : build and flash a target