mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-10-30 16:43:55 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			228 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			228 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| CC=pdflatex
 | |
| 
 | |
| all: rapport clean
 | |
| 
 | |
| rapport: Rapport.tex
 | |
| 	@echo "Compiling "$<
 | |
| 	$(CC) -shell-escape $<
 | |
| 	$(CC) -shell-escape $<
 | |
| 
 | |
| clean:
 | |
| 	@echo "Cleaning folder"
 | |
| 	rm *.aux; rm *.log; rm *.out; rm *.toc; rm *.snm; rm *.nav; rm *.lof
 | |
| 
 |