yosys/docs/source/code_examples/extensions/Makefile

33 lines
907 B
Makefile
Raw Normal View History

PROGRAM_PREFIX :=
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
2014-06-22 05:50:29 -05:00
2024-01-24 17:35:03 -06:00
.PHONY: all dots
all: dots test0.log test1.log test2.log
dots: test1.dot
CXXFLAGS=$(shell $(YOSYS)-config --cxxflags)
DATDIR=$(shell $(YOSYS)-config --datdir)
2014-06-22 05:50:29 -05:00
my_cmd.so: my_cmd.cc
2024-01-24 17:35:03 -06: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
2024-04-12 18:29:11 -05:00
$(YOSYS) -QTl 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
2024-04-12 18:29:11 -05:00
$(YOSYS) -QTl 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
2024-01-24 17:35:03 -06:00
test1.dot: my_cmd.so
$(YOSYS) -m ./my_cmd.so -p 'test1; show -format dot -prefix test1'
2014-06-22 05:50:29 -05:00
test2.log: my_cmd.so
2024-04-12 18:29:11 -05:00
$(YOSYS) -QTl 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
2024-01-24 17:35:03 -06:00
.PHONY: clean
clean:
rm -f *.d *.so *.dot