diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-05-23 18:38:20 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-05-23 18:38:20 +0200 |
commit | dca3b3cd5f812273521928c1a1ac924d798d2920 (patch) | |
tree | ef129348675ed3e947e42ac9320e0082028528a0 /examples/osu035/Makefile | |
parent | 664ba4d80e89a97d7a6aed8bdd5b9c7570f793d2 (diff) | |
download | yosys-dca3b3cd5f812273521928c1a1ac924d798d2920.tar.gz yosys-dca3b3cd5f812273521928c1a1ac924d798d2920.tar.bz2 yosys-dca3b3cd5f812273521928c1a1ac924d798d2920.zip |
Add examples/osu035
Diffstat (limited to 'examples/osu035/Makefile')
-rw-r--r-- | examples/osu035/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/examples/osu035/Makefile b/examples/osu035/Makefile new file mode 100644 index 000000000..8d8e247e3 --- /dev/null +++ b/examples/osu035/Makefile @@ -0,0 +1,13 @@ + +example.edif: example.ys example.v osu035_stdcells.lib + yosys -l example.yslog -q example.ys + +osu035_stdcells.lib: + rm -f osu035_stdcells.lib.part osu035_stdcells.lib + wget -O osu035_stdcells.lib.part https://vlsiarch.ecen.okstate.edu/flows/MOSIS_SCMOS/latest/cadence/lib/ami035/signalstorm/osu035_stdcells.lib + mv osu035_stdcells.lib.part osu035_stdcells.lib + +clean: + rm -f osu035_stdcells.lib + rm -f example.yslog example.edif + |