OSDN Git Service

full adder test
[motonesfpga/motonesfpga.git] / simulation / test / Makefile
1
2 FILES=ha.vhd testbench.vhd
3
4 all: eraborate
5
6 analyze:
7         ghdl -a $(FILES)
8
9 eraborate: analyze
10         ghdl -e testbench
11
12 run:
13         ghdl -r testbench --stop-time=500ns --vcd=testb_file.vcd
14         gtkwave testbench.vcd
15
16 clean:
17         rm *.o *.cf *.vcd testbench
18