mirror of
https://github.com/lowobservable/coax.git
synced 2026-03-03 10:23:39 +00:00
18 lines
164 B
Makefile
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
|