-
Notifications
You must be signed in to change notification settings - Fork 136
/
Makefile
62 lines (50 loc) · 1.24 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
DEPS:= resume.cls
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)
all: $(PDFCAT)
en: resume-en.pdf
zh: resume-zh.pdf
$(PDFCAT): $(PDFS)
gs -dBATCH -dNOPAUSE -dPrinted=false \
-sDEVICE=pdfwrite \
-sOutputFile=$@ \
$(PDFS)
%.pdf: %.tex $(DEPS)
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 en zh dist clean cleanall
DOCKER_CLI?= sudo docker
DOCKER_IMAGE:= resume:test
DOCKER_CHOWN:= chown -R $(shell id -u):$(shell id -g) .
# build the resume within an docker container
docker:
$(DOCKER_CLI) image inspect -f 'ok' $(DOCKER_IMAGE) 2>/dev/null || \
{ \
rm -rf _empty && \
mkdir _empty && \
$(DOCKER_CLI) build --tag $(DOCKER_IMAGE) \
-f Dockerfile _empty && \
rmdir _empty; \
}
$(DOCKER_CLI) run --rm --volume $(PWD):/build $(DOCKER_IMAGE) \
sh -c "cd /build && make clean && make && $(DOCKER_CHOWN)"
podman: DOCKER_CLI=podman
podman: DOCKER_CHOWN=:
podman: docker
.PHONY: docker podman