From 3871b831af8ccbfc0088228ccbcdb7b898303b59 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Sun, 14 May 2023 18:48:55 +0200 Subject: [PATCH] make: add make task to generate Renesas device wrappers Signed-off-by: deadprogram --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 792cc53c..d1e37dd8 100644 --- a/Makefile +++ b/Makefile @@ -232,6 +232,10 @@ gen-device-rp: build/gen-device-svd ./build/gen-device-svd -source=https://github.com/posborne/cmsis-svd/tree/master/data/RaspberryPi lib/cmsis-svd/data/RaspberryPi/ src/device/rp/ GO111MODULE=off $(GO) fmt ./src/device/rp +gen-device-renesas: build/gen-device-svd + ./build/gen-device-svd -source=https://github.com/tinygo-org/renesas-svd lib/renesas-svd/ src/device/renesas/ + GO111MODULE=off $(GO) fmt ./src/device/renesas + # Get LLVM sources. $(LLVM_PROJECTDIR)/llvm: git clone -b xtensa_release_15.x --depth=1 https://github.com/espressif/llvm-project $(LLVM_PROJECTDIR)