17 lines
329 B
Makefile
17 lines
329 B
Makefile
TARGETS= timer interrupt_controller
|
|
TB=$(patsubst %, %_tb.sv, $(TARGETS))
|
|
|
|
all: $(TARGETS)
|
|
|
|
timer: timer_tb.sv
|
|
iverilog -g2005-sv -s sim -o $@ $@_tb.sv ../$@.sv
|
|
|
|
interrupt_controller: interrupt_controller_tb.sv
|
|
iverilog -g2005-sv -s sim -o $@ $@_tb.sv ../$@.sv
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
rm -f $(TARGETS)
|
|
rm -f *.vcd
|
|
rm -f *.vvp
|