mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-03 21:09:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			40 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
ifneq ($(SMALL),1)
 | 
						|
OBJS += techlibs/common/synth.o
 | 
						|
OBJS += techlibs/common/prep.o
 | 
						|
endif
 | 
						|
 | 
						|
GENFILES += techlibs/common/simlib_help.inc
 | 
						|
GENFILES += techlibs/common/simcells_help.inc
 | 
						|
 | 
						|
techlibs/common/simlib_help.inc: techlibs/common/cellhelp.py techlibs/common/simlib.v
 | 
						|
	$(Q) mkdir -p techlibs/common
 | 
						|
	$(P) $(PYTHON_EXECUTABLE) $^ > $@.new
 | 
						|
	$(Q) mv $@.new $@
 | 
						|
 | 
						|
techlibs/common/simcells_help.inc: techlibs/common/cellhelp.py techlibs/common/simcells.v
 | 
						|
	$(Q) mkdir -p techlibs/common
 | 
						|
	$(P) $(PYTHON_EXECUTABLE) $^ > $@.new
 | 
						|
	$(Q) mv $@.new $@
 | 
						|
 | 
						|
kernel/register.o: techlibs/common/simlib_help.inc techlibs/common/simcells_help.inc
 | 
						|
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/simlib.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/simcells.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/techmap.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/smtmap.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/pmux2mux.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/adff2dff.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/dff2ff.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/gate2lut.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/cmp2lut.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/cells.lib))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/mul2dsp.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/abc9_model.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/abc9_map.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/abc9_unmap.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/cmp2lcu.v))
 | 
						|
$(eval $(call add_share_file,share,techlibs/common/cmp2softlogic.v))
 | 
						|
$(eval $(call add_share_file,share/choices,techlibs/common/choices/kogge-stone.v))
 | 
						|
$(eval $(call add_share_file,share/choices,techlibs/common/choices/han-carlson.v))
 | 
						|
$(eval $(call add_share_file,share/choices,techlibs/common/choices/sklansky.v))
 |