Makefile: add gen-device-stm32 to gen-device target

This commit is contained in:
Ayke van Laethem
2018-10-02 13:29:40 +02:00
parent ffa6d562a9
commit bdcac9ae42
+5 -5
View File
@@ -60,16 +60,16 @@ fmt:
test:
@go test -v .
gen-device: gen-device-nrf gen-device-avr
gen-device-nrf:
./tools/gen-device-svd.py lib/nrfx/mdk/ src/device/nrf/ --source=https://github.com/NordicSemiconductor/nrfx/tree/master/mdk
go fmt ./src/device/nrf
gen-device: gen-device-avr gen-device-nrf gen-device-stm32
gen-device-avr:
./tools/gen-device-avr.py lib/avr/packs/atmega src/device/avr/
go fmt ./src/device/avr
gen-device-nrf:
./tools/gen-device-svd.py lib/nrfx/mdk/ src/device/nrf/ --source=https://github.com/NordicSemiconductor/nrfx/tree/master/mdk
go fmt ./src/device/nrf
gen-device-stm32:
./tools/gen-device-svd.py lib/cmsis-svd/data/STMicro/ src/device/stm32/ --source=https://github.com/posborne/cmsis-svd/tree/master/data/STMicro
go fmt ./src/device/stm32