mirror of
https://github.com/lowobservable/coax.git
synced 2026-02-28 09:37:40 +00:00
20 lines
255 B
Makefile
20 lines
255 B
Makefile
IVERILOG ?= iverilog
|
|
VVP ?= vvp
|
|
|
|
RTL = ../rtl
|
|
|
|
all: coax_rx_bit_timer_tb.vcd
|
|
|
|
coax_rx_bit_timer_tb: coax_rx_bit_timer_tb.v $(RTL)/coax_rx_bit_timer.v
|
|
|
|
clean:
|
|
rm -f *_tb *.vcd
|
|
|
|
%_tb:
|
|
$(IVERILOG) -o $@ $^
|
|
|
|
%_tb.vcd: %_tb
|
|
$(VVP) -N $<
|
|
|
|
.PHONY: all, clean
|