mirror of
https://github.com/Silicon1602/srdl2sv.git
synced 2024-12-22 15:08:39 +00:00
12 lines
220 B
Makefile
12 lines
220 B
Makefile
|
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
|