mirror of
https://github.com/posquit0/Awesome-CV.git
synced 2024-11-25 07:28:34 +00:00
fix makefile to not attempt to build deleted targets
This commit is contained in:
parent
b415cb5949
commit
34038d987a
1 changed files with 1 additions and 9 deletions
10
Makefile
10
Makefile
|
@ -2,21 +2,13 @@
|
|||
|
||||
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) $<
|
||||
docs: cv.pdf
|
||||
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue