mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-10-30 16:43:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			282 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			282 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| LATEX := pdflatex
 | |
| TARGET := slide.pdf
 | |
| 
 | |
| .PHONY: all clean distclean
 | |
| 
 | |
| all: $(TARGET) clean
 | |
| 
 | |
| %.pdf: %.tex
 | |
| 	echo "Building pdf"
 | |
| 	$(LATEX) --shell-escape $<
 | |
| 	rm -f $@
 | |
| 	$(LATEX) --shell-escape $<
 | |
| 
 | |
| clean:
 | |
| 	rm -f *.log *.nav *.snm *.aux *.out *.toc *.pyg
 | |
| 
 | |
| distclean: clean
 | |
| 	rm -f $(TARGET)
 |