mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 13:29:12 +00:00 
			
		
		
		
	Hopefully matches enough that any `make docs` call will work from the yosys being built, while still being overridable locally.
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			300 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			300 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PROGRAM_PREFIX :=
 | 
						|
 | 
						|
YOSYS ?= ../../../$(PROGRAM_PREFIX)yosys
 | 
						|
 | 
						|
all: counter_00.dot counter_01.dot counter_02.dot counter_03.dot
 | 
						|
 | 
						|
counter_00.dot: counter.v counter.ys mycells.lib
 | 
						|
	$(YOSYS) counter_outputs.ys
 | 
						|
 | 
						|
counter_01.dot: counter_00.dot
 | 
						|
counter_02.dot: counter_00.dot
 | 
						|
counter_03.dot: counter_00.dot
 | 
						|
 |