blob: 4ef40773694001c328f731bc3ca74591dc728889 (
plain)
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
39
40
41
42
43
44
45
|
DEPS:= resume.cls fontawesome5/fontawesome5.sty
SRCS:= resume-zh.tex resume-en.tex
PDFS:= $(SRCS:%.tex=%.pdf)
PDFCAT:= resume-zh+en.pdf
DATE= $(shell date +%Y%m%d)
DISTDIR= resume.$(DATE)
# Environment variables
TEXINPUTS:= .:fontawesome5:$(TEXINPUTS)
all: $(PDFCAT)
$(PDFCAT): $(PDFS)
pdfjoin -o $@ $(PDFS)
resume-zh.pdf: resume-zh.tex $(DEPS)
env TEXINPUTS=$(TEXINPUTS) latexmk -xelatex $<
resume-en.pdf: resume-en.tex $(DEPS)
env TEXINPUTS=$(TEXINPUTS) latexmk -xelatex $<
dist: all
mkdir $(DISTDIR)
cp Makefile $(DEPS) $(SRCS) $(PDFS) $(DISTDIR)/
tar -cjf $(DISTDIR).tar.bz2 $(DISTDIR)/
rm -r $(DISTDIR)
clean:
for f in $(SRCS); do \
latexmk -c $$f; \
done
touch $(SRCS)
cleanall:
for f in $(SRCS); do \
latexmk -C $$f; \
done
.PHONY: all dist clean cleanall
# One liner to get the value of any makefile variable
# Credit: http://blog.jgc.org/2015/04/the-one-line-you-should-add-to-every.html
print-%: ; @echo $*=$($*)
|