Add flag to skip Renesas SVD builds

Much like the STMicro SVDs, Renesas SVDs are fully proprietary and not
under an FOSS license.
This commit is contained in:
Elliott Sales de Andrade
2024-12-31 00:34:13 -05:00
committed by Ron Evans
parent 20e62dea6f
commit 3bb092d4d4
+4 -1
View File
@@ -187,7 +187,10 @@ fmt-check: ## Warn if any source needs reformatting
@unformatted=$$(gofmt -l $(FMT_PATHS)); [ -z "$$unformatted" ] && exit 0; echo "Unformatted:"; for fn in $$unformatted; do echo " $$fn"; done; exit 1
gen-device: gen-device-avr gen-device-esp gen-device-nrf gen-device-sam gen-device-sifive gen-device-kendryte gen-device-nxp gen-device-rp gen-device-renesas ## Generate microcontroller-specific sources
gen-device: gen-device-avr gen-device-esp gen-device-nrf gen-device-sam gen-device-sifive gen-device-kendryte gen-device-nxp gen-device-rp ## Generate microcontroller-specific sources
ifneq ($(RENESAS), 0)
gen-device: gen-device-renesas
endif
ifneq ($(STM32), 0)
gen-device: gen-device-stm32
endif