mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-11-03 21:09:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			255 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			255 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
PROGRAM_PREFIX :=
 | 
						|
 | 
						|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
 | 
						|
 | 
						|
DOTS = counter_00.dot counter_01.dot counter_02.dot counter_03.dot
 | 
						|
 | 
						|
all: dots
 | 
						|
dots: $(DOTS)
 | 
						|
 | 
						|
$(DOTS): counter.v counter.ys mycells.lib
 | 
						|
	$(YOSYS) counter.ys
 | 
						|
 | 
						|
.PHONY: clean
 | 
						|
clean:
 | 
						|
	rm -f *.dot
 |