11 lines
229 B
Makefile
11 lines
229 B
Makefile
all: rapport
|
|
|
|
rapport: rapport.tex rapport.sty
|
|
@latexmk -pdf rapport.tex
|
|
@if ! cmp --silent build/rapport.pdf rapport.pdf; then \
|
|
cp build/rapport.pdf rapport.pdf; \
|
|
echo "Updated"; \
|
|
fi
|
|
|
|
clean:
|
|
@rm -rf build 2>/dev/null
|