Skip to content

Commit 3bb092d

Browse files
QuLogicdeadprogram
authored andcommitted
Add flag to skip Renesas SVD builds
Much like the STMicro SVDs, Renesas SVDs are fully proprietary and not under an FOSS license.
1 parent 20e62de commit 3bb092d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

GNUmakefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,10 @@ fmt-check: ## Warn if any source needs reformatting
187187
@unformatted=$$(gofmt -l $(FMT_PATHS)); [ -z "$$unformatted" ] && exit 0; echo "Unformatted:"; for fn in $$unformatted; do echo " $$fn"; done; exit 1
188188

189189

190-
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
190+
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
191+
ifneq ($(RENESAS), 0)
192+
gen-device: gen-device-renesas
193+
endif
191194
ifneq ($(STM32), 0)
192195
gen-device: gen-device-stm32
193196
endif

0 commit comments

Comments
 (0)