-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
38 lines (29 loc) · 1.22 KB
/
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
34
35
36
37
38
.PHONY: all update update-submodules
all: jonas/Devbox_JonasLiljestrand_profile.pdf mange/Devbox_MagnusBergmark_profile.pdf martin/Devbox_MartinEricson_profile.pdf stefan/Devbox_StefanAhman_profile.pdf
update: | update-submodules all
update-submodules:
git submodule update --init --recursive --remote
jonas/Devbox_JonasLiljestrand_profile.pdf: jonas jonas/main.tex template.cls
texfot pdflatex \
-output-directory jonas \
-jobname=Devbox_JonasLiljestrand_profile \
jonas/main.tex
mange/Devbox_MagnusBergmark_profile.pdf: mange/upstream mange/upstream/cv.pdf
cp mange/upstream/cv.pdf mange/Devbox_MagnusBergmark_profile.pdf
martin/Devbox_MartinEricson_profile.pdf: martin martin/main.tex template.cls
texfot pdflatex \
-output-directory martin \
-jobname=Devbox_MartinEricson_profile \
martin/main.tex
stefan/Devbox_StefanAhman_profile.pdf: stefan stefan/main.tex template.cls
texfot pdflatex \
-output-directory stefan \
-jobname=Devbox_StefanAhman_profile \
stefan/main.tex
mange/upstream:
git submodule update --init mange/upstream
clean:
rm -f jonas/Devbox_JonasLiljestrand_profile.pdf \
mange/Devbox_MagnusBergmark_profile.pdf \
martin/Devbox_MartinEricson_profile.pdf \
stefan/Devbox_StefanAhman_profile.pdf