cv/Makefile
Bruno BELANYI 6b51a7fa61 cv: move to a common TeX file system
This will allow for easily writing it in both French and English at the
same time.
2020-07-15 12:33:21 +02:00

17 lines
257 B
Makefile

BUILD_DIR := build
FILES := \
cv_en.pdf \
.PHONY: all
all: $(FILES)
%.pdf: $(BUILD_DIR)/%.pdf
cp $< $@
$(BUILD_DIR)/%.pdf: %.tex cv_common.tex twentysecondcv.cls
@latexmk $< # Let the tool do its job
.PHONY: clean
clean:
$(RM) -r build cv_en.pdf