mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-31 19:52:31 +00:00 
			
		
		
		
	Issue warning messages for missing parameterized modules and attempts to set initial values. Replace simple "if (cell-type)" with "else if" chain. Fix FIRRTL shift handling. Add support for parameterized modules, $shift, $shiftx. Handle default output file. Deal with no top module. Automatically run pmuxtree pass. Allow EXTRA_FLAGS and SEED parameters to be set in the environment for tests/tools/autotest.mk. Support FIRRTL regression testing in tests/tools/autotest.sh Add xfirrtl files to test directories to exclude files from FIRRTL regression tests that are known to fail.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			335 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| # Don't bother defining default values for SEED and EXTRA_FLAGS.
 | |
| # Their "natural" default values should be sufficient,
 | |
| #   and they may be overridden in the environment.
 | |
| ifneq ($(strip $(SEED)),)
 | |
| SEEDOPT=-S$(SEED)
 | |
| endif
 | |
| 
 | |
| $(MAKECMDGOALS):
 | |
| 	@$(basename $(MAKEFILE_LIST)).sh -G -j $(SEEDOPT) $(EXTRA_FLAGS) $@
 | |
| 
 | |
| .PHONY: $(MAKECMDGOALS)
 | |
| 
 |