efrei/theorie-signal/exercices/Makefile

16 lines
281 B
Makefile
Raw Normal View History

2021-11-09 15:25:26 +01:00
timestamp=$(shell date +%Y-%m-%d_%H:%M)
2021-11-21 12:06:34 +01:00
all: td1
2021-11-09 15:25:26 +01:00
2021-11-21 12:06:34 +01:00
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; \
2021-11-09 15:25:26 +01:00
echo "Updated"; \
fi
clean:
@rm -rf build 2>/dev/null