diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-06-22 12:50:29 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-06-22 12:50:29 +0200 |
commit | a7aea179599045feafcaf26f5ed334a7318a69b4 (patch) | |
tree | 2033072706700930a5150c04814851ded086ecc0 /manual/PRESENTATION_Prog/Makefile | |
parent | 3345fa0bab5d343a9cd5a9dde6486e4e876fe8da (diff) | |
download | yosys-a7aea179599045feafcaf26f5ed334a7318a69b4.tar.gz yosys-a7aea179599045feafcaf26f5ed334a7318a69b4.tar.bz2 yosys-a7aea179599045feafcaf26f5ed334a7318a69b4.zip |
Progress in presentation
Diffstat (limited to 'manual/PRESENTATION_Prog/Makefile')
-rw-r--r-- | manual/PRESENTATION_Prog/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/manual/PRESENTATION_Prog/Makefile b/manual/PRESENTATION_Prog/Makefile new file mode 100644 index 000000000..8da6bcd63 --- /dev/null +++ b/manual/PRESENTATION_Prog/Makefile @@ -0,0 +1,18 @@ + +all: test0.log test1.log test2.log + +my_cmd.so: my_cmd.cc + ../../yosys-config --exec --cxx --cxxflags --ldflags -o my_cmd.so -shared my_cmd.cc --ldlibs + +test0.log: my_cmd.so + ../../yosys -l test0.log_new -m ./my_cmd.so -p 'my_cmd foo bar' absval_ref.v + mv test0.log_new test0.log + +test1.log: my_cmd.so + ../../yosys -l test1.log_new -m ./my_cmd.so -p 'clean; test1; dump' absval_ref.v + mv test1.log_new test1.log + +test2.log: my_cmd.so + ../../yosys -l test2.log_new -m ./my_cmd.so -p 'test2' sigmap_test.v + mv test2.log_new test2.log + |