Skip to content
This repository was archived by the owner on Feb 10, 2021. It is now read-only.

Commit eaf8cb4

Browse files
committed
Makefile
1 parent 81e08da commit eaf8cb4

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

cores/IPA/Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
help:
2+
@echo "make ipa.waves Run gtkwave on results from simulationg IPA"
3+
@echo
4+
@echo "make clean remove output files"
5+
@echo
6+
7+
ipa.waves:
8+
iverilog -s ipa_tb ../common/*.v bench/verilog/*.v rtl/verilog/*.v -I../common && vvp -n a.out && gtkwave ipa.vcd
9+
10+
clean:
11+
rm -f *.blif *.asc *.bin *.vcd
12+
13+
.PHONY: clean ipa.waves
14+

0 commit comments

Comments
 (0)