diff options
author | Icenowy Zheng <icenowy@aosc.io> | 2018-12-19 10:23:58 +0800 |
---|---|---|
committer | Icenowy Zheng <icenowy@aosc.io> | 2018-12-19 10:23:58 +0800 |
commit | 3993ba71f7eb663fba73c0da4e35183b076168dd (patch) | |
tree | 145af836a070f0c5a178607feb692b354cada8c9 /techlibs | |
parent | 847fd360773d72933f1c728dba0755e0033350a6 (diff) | |
download | yosys-3993ba71f7eb663fba73c0da4e35183b076168dd.tar.gz yosys-3993ba71f7eb663fba73c0da4e35183b076168dd.tar.bz2 yosys-3993ba71f7eb663fba73c0da4e35183b076168dd.zip |
anlogic: fix Makefile.inc
During the addition of DRAM inferring support, the installation of
eagle_bb.v is accidentally removed.
Fix this issue.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/anlogic/Makefile.inc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/techlibs/anlogic/Makefile.inc b/techlibs/anlogic/Makefile.inc index 59be83fd0..f37b5e7e9 100644 --- a/techlibs/anlogic/Makefile.inc +++ b/techlibs/anlogic/Makefile.inc @@ -5,5 +5,6 @@ OBJS += techlibs/anlogic/anlogic_eqn.o $(eval $(call add_share_file,share/anlogic,techlibs/anlogic/cells_map.v)) $(eval $(call add_share_file,share/anlogic,techlibs/anlogic/arith_map.v)) $(eval $(call add_share_file,share/anlogic,techlibs/anlogic/cells_sim.v)) +$(eval $(call add_share_file,share/anlogic,techlibs/anlogic/eagle_bb.v)) $(eval $(call add_share_file,share/anlogic,techlibs/anlogic/drams.txt)) $(eval $(call add_share_file,share/anlogic,techlibs/anlogic/drams_map.v)) |