summaryrefslogtreecommitdiff
path: root/verilator_example_binary/Makefile
blob: 7381e58d479274436d1aa1a8cc87ee9ce4ea2f59 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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