14 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			176 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| .PHONY: clean
 | |
| 
 | |
| %.pdf: %.tex
 | |
| 	latexmk -pdf $<
 | |
| 	latexmk -c $<
 | |
| 
 | |
| %.png: %.pdf
 | |
| 	convert -density 500 $< $@
 | |
| 
 | |
| clean:
 | |
| 	rm *.log *.aux || true
 | |
| 
 | |
| clean-all: clean
 | |
| 	rm *.pdf *.png || true
 |