mirror of
https://gitlab.com/brendanhaines/cpu.git
synced 2024-11-09 21:14:57 -07:00
24 lines
430 B
Makefile
24 lines
430 B
Makefile
all: verify
|
|
|
|
TESTBENCH_V = $(wildcard *_tb.sv)
|
|
SOURCE_V = $(wildcard ../*.v ../*.sv)
|
|
LOGS = $(TESTBENCH_V:.sv=.log)
|
|
|
|
# Hardware compilation
|
|
%.out: %.sv $(SOURCE_V)
|
|
iverilog -g2012 -o $@ $< -y ../ -Y .sv -I ../
|
|
|
|
# Run test
|
|
%.vcd %.log: %.out
|
|
./$< | tee $(patsubst %.out, %.log, $<)
|
|
|
|
verify: $(LOGS)
|
|
@! grep -q "ERROR" $^
|
|
@grep -q "SUCCESS" $^
|
|
|
|
clean:
|
|
rm -rf *.vcd *.log *.out
|
|
|
|
.SECONDARY: %.log %.vcd
|
|
.PHONY: all clean verify
|