mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-04 13:29:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			254 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			254 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PROGRAM_PREFIX :=
 | 
						|
 | 
						|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
 | 
						|
 | 
						|
.PHONY: all dots
 | 
						|
all: dots
 | 
						|
dots: scrambler_p01.dot scrambler_p02.dot
 | 
						|
 | 
						|
scrambler_p01.dot scrambler_p02.dot: scrambler.ys scrambler.v
 | 
						|
	$(YOSYS) scrambler.ys
 | 
						|
 | 
						|
.PHONY: clean
 | 
						|
clean:
 | 
						|
	rm -f *.dot
 |