forked from emanuelduss/HSR_WrStat_Zusammenfassung
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
33 lines (26 loc) · 892 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
########################################################################
#
# Makefile
# Makefile für LaTeX
#
########################################################################
TARGET=WrStat.pdf
LL=latexmk -pdf
CLEAN=latexmk -c
all: contributors.tex revision.tex $(TARGET)
pdf: contributors.tex revision.tex $(TARGET)
.PHONY : clean contributors.tex revision.tex $(TARGET)
$(TARGET): $(TARGET:%.pdf=%.tex) contributors.tex revision.tex
$(LL) $<
clean:
$(CLEAN)
rm -f revision.tex
rm -f contributors.tex
contributors.tex:
echo "% Autogenerated by Makefile, do not edit" > contributors.tex
sed 's/$$/\\\\/g' CONTRIBUTORS >> contributors.tex
revision.tex:
echo "% Autogenerated by Makefile, do not edit" > revision.tex
git log -1 --format="\newcommand{\REVISIONDATE}{%ad}" --date=short >> revision.tex
git log -1 --format="\newcommand{\REVISION}{%h}" >> revision.tex
# EOF