mirror of
				https://github.com/yweber/lodel2.git
				synced 2025-10-31 03:29:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			198 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| dotfiles := $(wildcard *.dot)
 | |
| images := $(patsubst %.dot,%.png,$(wildcard *.dot))
 | |
| 
 | |
| all: $(images)
 | |
| 	
 | |
| %.png: %.dot
 | |
| 	dot -Tpng $< > $@
 | |
| 
 | |
| .PHONY: clean distclean
 | |
| 
 | |
| clean:
 | |
| 	-rm $(images)
 | |
| 
 | |
| distclean: clean
 | 
