mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-28 10:19:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			296 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| PROGRAM_PREFIX :=
 | |
| 
 | |
| YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
 | |
| 
 | |
| DOT_NAMES = opt_share opt_muxtree opt_merge opt_expr
 | |
| 
 | |
| DOTS := $(addsuffix .dot,$(DOT_NAMES))
 | |
| 
 | |
| all: dots
 | |
| dots: $(DOTS)
 | |
| 
 | |
| %_full.dot: %.ys
 | |
| 	$(YOSYS) $<
 | |
| 
 | |
| %.dot: %_full.dot
 | |
| 	gvpack -u $*_full.dot -o $@
 | |
| 
 | |
| .PHONY: clean
 | |
| clean:
 | |
| 	rm -f *.dot
 |