summaryrefslogtreecommitdiff
path: root/verilator_example_binary/Makefile
blob: 6f95089b2a7908ed12a5b4f6dc32987ba506bcb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
TOP = hello

all: obj_dir/Vhello

check: all
	obj_dir/Vhello

clean:
	rm -fr obj_dir

.PHONY: all check clean

obj_dir/Vhello: hello.v
	verilator --binary -j 0 -Wall hello.v