9 lines
		
	
	
		
			178 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			178 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
DOC = $(shell find -name '*.tex')
 | 
						|
 | 
						|
all: doc
 | 
						|
doc: $(DOC:.tex=.pdf)
 | 
						|
 | 
						|
%.pdf: %.tex
 | 
						|
	-latexmk -pdf -silent $(DOC)
 | 
						|
	-rm -f *.{aux,dvi,log,bbl,blg,brf,fls,toc,thm,out,fdb_latexmk,lof}
 |