forked from posquit0/Awesome-CV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
34 lines (24 loc) · 1014 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
34
.PHONY: examples
CC = xelatex
EXAMPLES_DIR = examples
RESUME_DIR = examples/resume
CV_DIR = examples/cv
RESUME_SRCS = $(shell find $(RESUME_DIR) -name '*.tex')
CV_SRCS = $(shell find $(CV_DIR) -name '*.tex')
examples: $(foreach x, coverletter cv cv-fash cv-com cv-store cv-store-en resume, $x.pdf)
resume.pdf: $(EXAMPLES_DIR)/resume.tex $(RESUME_SRCS)
$(CC) -output-directory=$(EXAMPLES_DIR) $<
cv.pdf: $(EXAMPLES_DIR)/cv.tex $(CV_SRCS)
$(CC) -output-directory=$(EXAMPLES_DIR) $<
cv-fash.pdf: $(EXAMPLES_DIR)/cv-fash.tex $(CV_SRCS)
$(CC) -output-directory=$(EXAMPLES_DIR) $<
cv-com.pdf: $(EXAMPLES_DIR)/cv-com.tex $(CV_SRCS)
$(CC) -output-directory=$(EXAMPLES_DIR) $<
cv-store.pdf: $(EXAMPLES_DIR)/cv-store.tex $(CV_SRCS)
$(CC) -output-directory=$(EXAMPLES_DIR) $<
cv-store-en.pdf: $(EXAMPLES_DIR)/cv-store-en.tex $(CV_SRCS)
$(CC) -output-directory=$(EXAMPLES_DIR) $<
coverletter.pdf: $(EXAMPLES_DIR)/coverletter.tex
$(CC) -output-directory=$(EXAMPLES_DIR) $<
clean:
rm -rf $(EXAMPLES_DIR)/*.pdf