yosys/manual/CHAPTER_Prog/Makefile

13 lines
438 B
Makefile
Raw Normal View History

2013-07-20 08:19:12 -05:00
test: stubnets.so
yosys -ql test1.log -m ./stubnets.so test.v -p "stubnets"
yosys -ql test2.log -m ./stubnets.so test.v -p "opt; stubnets"
yosys -ql test3.log -m ./stubnets.so test.v -p "techmap; opt; stubnets -report_bits"
2013-07-20 08:19:12 -05:00
tail test1.log test2.log test3.log
stubnets.so: stubnets.cc
2013-11-19 15:48:48 -06:00
yosys-config --exec --cxx --cxxflags --ldflags -o $@ -shared $^ --ldlibs
2013-07-20 08:19:12 -05:00
clean:
rm -f test1.log test2.log test3.log
rm -f stubnets.so stubnets.d