yosys/manual/CHAPTER_Prog/Makefile

13 lines
438 B
Makefile
Raw Permalink Normal View History

2013-07-20 15:19:12 +02: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 15:19:12 +02:00
tail test1.log test2.log test3.log
stubnets.so: stubnets.cc
2013-11-19 22:48:48 +01:00
yosys-config --exec --cxx --cxxflags --ldflags -o $@ -shared $^ --ldlibs
2013-07-20 15:19:12 +02:00
clean:
rm -f test1.log test2.log test3.log
rm -f stubnets.so stubnets.d