mirror of
https://github.com/posquit0/Awesome-CV.git
synced 2024-11-25 15:38:35 +00:00
22 lines
519 B
Makefile
22 lines
519 B
Makefile
.PHONY: docs
|
|
|
|
CC = xelatex
|
|
SRC_DIR = src
|
|
RESUME_DIR = src/resume
|
|
CV_DIR = src/cv
|
|
RESUME_SRCS = $(shell find $(RESUME_DIR) -name '*.tex')
|
|
CV_SRCS = $(shell find $(CV_DIR) -name '*.tex')
|
|
|
|
docs: $(foreach x, coverletter cv resume, $x.pdf)
|
|
|
|
resume.pdf: $(SRC_DIR)/resume.tex $(RESUME_SRCS)
|
|
$(CC) -output-directory=$(SRC_DIR) $<
|
|
|
|
cv.pdf: $(SRC_DIR)/cv.tex $(CV_SRCS)
|
|
$(CC) -output-directory=$(SRC_DIR) $<
|
|
|
|
coverletter.pdf: $(SRC_DIR)/coverletter.tex
|
|
$(CC) -output-directory=$(SRC_DIR) $<
|
|
|
|
clean:
|
|
rm -rf $(SRC_DIR)/*.pdf
|