8 lines
		
	
	
	
		
			90 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			90 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all: retopo_tools_addon.zip
 | 
						|
 | 
						|
%.zip: *.py
 | 
						|
	zip -r $@ $^
 | 
						|
 | 
						|
.PHONY: clean
 | 
						|
clean:
 | 
						|
	${RM} *.zip
 |