Add Makefiles in example/ to easily rebuild all examples

This commit is contained in:
2021-10-31 16:38:27 -07:00
parent 82b2490256
commit 6c9df1cc02
5 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
RTL_TARGETS = $(subst .rdl,.sv,srdl2sv_out/$(shell ls *.rdl))
.PHONY: clean
default: $(RTL_TARGETS)
srdl2sv_out/%.sv: %.rdl
srdl2sv $? --out-dir $(shell dirname $@) --stdout-logging INFO
clean:
rm -rf srdl2sv_out