summaryrefslogtreecommitdiff
path: root/verilator_example_systemc/Makefile
blob: d2925ac55f36304b610c2a67a64752276b43fcac (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 sc_main.cc
	verilator --sc --exe --build -j 0 -Wall sc_main.cc hello.v