mirror of
				https://github.com/YosysHQ/yosys
				synced 2025-10-28 10:19:26 +00:00 
			
		
		
		
	Makefiles now have `clean` target. Also fixed top level makefile calls to images directory. More yosys scripts instead of inline yosys commands in makefiles (which also means they can be included in the accompanying document when talking about the image generated). Fixed another couple image generators that were still outputting pdf directly. Fixed some hanging image references which hadn't been updated. Adjusted some text related to images, and included a couple more intermediate images on `memdemo`.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			381 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			381 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
 | |
| TARGETS += proc_01 proc_02 proc_03
 | |
| TARGETS += opt_01 opt_02 opt_03 opt_04
 | |
| TARGETS += memory_01 memory_02
 | |
| TARGETS += techmap_01
 | |
| TARGETS += abc_01
 | |
| 
 | |
| PROGRAM_PREFIX :=
 | |
| 
 | |
| YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
 | |
| 
 | |
| DOTS = $(addsuffix .dot,$(TARGETS))
 | |
| 
 | |
| dots: $(DOTS)
 | |
| 
 | |
| %.dot: %.v %.ys
 | |
| 	$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot'
 | |
| 
 | |
| .PHONY: clean
 | |
| clean:
 | |
| 	rm -f *.dot
 | |
| 
 |