Files
lowobservable.coax/interface2/tests/Makefile
Andrew Kay 03af715ec5 Start over
2020-06-14 10:05:02 -05:00

18 lines
164 B
Makefile

IVERILOG ?= iverilog
VVP ?= vvp
RTL = ../rtl
all:
clean:
rm -f *_tb *.vcd
%_tb:
$(IVERILOG) -o $@ $^
%_tb.vcd: %_tb
$(VVP) -N $< -lxt2
.PHONY: all, clean