11 lines
		
	
	
	
		
			120 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			120 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all: document.pdf
 | 
						|
 | 
						|
%.pdf: %.tex common.tex
 | 
						|
	latexmk -pdf $<
 | 
						|
 | 
						|
clean:
 | 
						|
	${RM} *.pdf
 | 
						|
	${RM} *.bbl
 | 
						|
	${RM} *.blg
 | 
						|
 | 
						|
	latexmk -C
 |