efrei/theorie-signal/exercices/Makefile

24 lines
481 B
Makefile

timestamp=$(shell date +%Y-%m-%d_%H:%M)
all: td1 tp1
td1: td1.tex
@latexmk -pdf td1.tex
@if ! cmp --silent build/td1.pdf td1_*.pdf; then \
touch td1_tmp.pdf; \
rm td1*.pdf; \
cp build/td1.pdf td1_${timestamp}.pdf; \
echo "Updated"; \
fi
tp1: tp1.tex
@latexmk -pdf tp1.tex
@if ! cmp --silent build/tp1.pdf tp1_*.pdf; then \
touch tp1_tmp.pdf; \
rm tp1*.pdf; \
cp build/tp1.pdf tp1_${timestamp}.pdf; \
echo "Updated"; \
fi
clean:
@rm -rf build 2>/dev/null