9 lines
104 B
Makefile
9 lines
104 B
Makefile
|
|
|
||
|
|
.PHONY: compile
|
||
|
|
|
||
|
|
compile:
|
||
|
|
rm -rf ./generated/Main/
|
||
|
|
sbt "test:runMain test.testModule \
|
||
|
|
-e verilog"
|
||
|
|
|