2023-08-07 18:53:36 -05:00
|
|
|
PROGRAM_PREFIX :=
|
|
|
|
|
|
|
|
YOSYS ?= ../../../$(PROGRAM_PREFIX)yosys
|
2014-06-22 05:50:29 -05:00
|
|
|
|
|
|
|
all: test0.log test1.log test2.log
|
|
|
|
|
2023-08-07 18:53:36 -05:00
|
|
|
CXXFLAGS=$(shell $(YOSYS)-config --cxxflags)
|
|
|
|
DATDIR=$(shell $(YOSYS)-config --datdir)
|
2020-05-30 04:21:40 -05:00
|
|
|
|
2014-06-22 05:50:29 -05:00
|
|
|
my_cmd.so: my_cmd.cc
|
2023-08-07 18:53:36 -05:00
|
|
|
$(YOSYS)-config --exec --cxx $(subst $(DATDIR),../../share,$(CXXFLAGS)) --ldflags -o my_cmd.so -shared my_cmd.cc --ldlibs
|
2014-06-22 05:50:29 -05:00
|
|
|
|
|
|
|
test0.log: my_cmd.so
|
2023-08-07 18:53:36 -05:00
|
|
|
$(YOSYS) -Ql test0.log_new -m ./my_cmd.so -p 'my_cmd foo bar' absval_ref.v
|
2014-06-22 05:50:29 -05:00
|
|
|
mv test0.log_new test0.log
|
|
|
|
|
|
|
|
test1.log: my_cmd.so
|
2023-08-07 18:53:36 -05:00
|
|
|
$(YOSYS) -Ql test1.log_new -m ./my_cmd.so -p 'clean; test1; dump' absval_ref.v
|
2014-06-22 05:50:29 -05:00
|
|
|
mv test1.log_new test1.log
|
|
|
|
|
|
|
|
test2.log: my_cmd.so
|
2023-08-07 18:53:36 -05:00
|
|
|
$(YOSYS) -Ql test2.log_new -m ./my_cmd.so -p 'hierarchy -top test; test2' sigmap_test.v
|
2014-06-22 05:50:29 -05:00
|
|
|
mv test2.log_new test2.log
|
|
|
|
|