mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
- Techlib pmgens are now in relevant techlibs/*. - `peepopt` pmgens are now in passes/opt. - `test_pmgen` is still in passes/pmgen. - Update `Makefile.inc` and `.gitignore` file(s) to match new `*_pm.h` location, as well as the `#include`s. - Change default `%_pm.h` make target to `techlibs/%_pm.h` and move it to the top level Makefile. - Update pmgen target to use `$(notdir $*)` (where `$*` is the part of the file name that matched the '%' in the target) instead of `$(subst _pm.h,,$(notdir $@))`.
27 lines
1.3 KiB
Makefile
27 lines
1.3 KiB
Makefile
|
|
OBJS += techlibs/ice40/synth_ice40.o
|
|
OBJS += techlibs/ice40/ice40_braminit.o
|
|
OBJS += techlibs/ice40/ice40_opt.o
|
|
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/arith_map.v))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/cells_map.v))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/ff_map.v))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/cells_sim.v))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/latches_map.v))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/brams.txt))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/brams_map.v))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/spram.txt))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/spram_map.v))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/dsp_map.v))
|
|
$(eval $(call add_share_file,share/ice40,techlibs/ice40/abc9_model.v))
|
|
|
|
OBJS += techlibs/ice40/ice40_dsp.o
|
|
GENFILES += techlibs/ice40/ice40_dsp_pm.h
|
|
techlibs/ice40/ice40_dsp.o: techlibs/ice40/ice40_dsp_pm.h
|
|
$(eval $(call add_extra_objs,techlibs/ice40/ice40_dsp_pm.h))
|
|
|
|
OBJS += techlibs/ice40/ice40_wrapcarry.o
|
|
GENFILES += techlibs/ice40/ice40_wrapcarry_pm.h
|
|
techlibs/ice40/ice40_wrapcarry.o: techlibs/ice40/ice40_wrapcarry_pm.h
|
|
$(eval $(call add_extra_objs,techlibs/ice40/ice40_wrapcarry_pm.h))
|