mirror of
				https://github.com/ae-utbm/sith.git
				synced 2025-11-03 02:23:05 +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
 | 
						|
 |