9 lines
		
	
	
		
			105 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			105 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all:
 | 
						|
	asciidoctor -d book -D book/ index.adoc
 | 
						|
	cp -r images book
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -rf book
 | 
						|
 | 
						|
.PHONY: all clean
 |