mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 03:48:04 +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
|
||
|
|