diff options
author | Clifford Wolf <clifford@clifford.at> | 2013-11-24 20:44:00 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2013-11-24 20:44:00 +0100 |
commit | 1afe6589df136375c4322c9f10812e3b57f1200e (patch) | |
tree | 64f7a5a2b49bd5bbf03504f67e136a594bd33a5a /techlibs/common/Makefile.inc | |
parent | 8dafecd34d772b1d9ec190b39913b236cdc8fb17 (diff) |
Renamed stdcells_sim.v to simcells.v and fixed blackbox.v
Diffstat (limited to 'techlibs/common/Makefile.inc')
-rw-r--r-- | techlibs/common/Makefile.inc | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/techlibs/common/Makefile.inc b/techlibs/common/Makefile.inc index e81d34fb..e2e1ba25 100644 --- a/techlibs/common/Makefile.inc +++ b/techlibs/common/Makefile.inc @@ -1,13 +1,21 @@ EXTRA_TARGETS += techlibs/common/blackbox.v -techlibs/common/blackbox.v: techlibs/common/blackbox.sed techlibs/common/simlib.v techlibs/common/stdcells_sim.v - cat techlibs/common/simlib.v techlibs/common/stdcells_sim.v | sed -rf techlibs/common/blackbox.sed > techlibs/common/blackbox.v.new +techlibs/common/blackbox.v: techlibs/common/blackbox.sed techlibs/common/simlib.v techlibs/common/simcells.v + cat techlibs/common/simlib.v techlibs/common/simcells.v | sed -rf techlibs/common/blackbox.sed > techlibs/common/blackbox.v.new mv techlibs/common/blackbox.v.new techlibs/common/blackbox.v -EXTRA_TARGETS += share/simlib.v +EXTRA_TARGETS += share/simlib.v share/simcells.v share/blackbox.v share/simlib.v: techlibs/common/simlib.v mkdir -p share cp techlibs/common/simlib.v share/simlib.v +share/simcells.v: techlibs/common/simcells.v + mkdir -p share + cp techlibs/common/simcells.v share/simcells.v + +share/blackbox.v: techlibs/common/blackbox.v + mkdir -p share + cp techlibs/common/blackbox.v share/blackbox.v + |