cv/Makefile

20 lines
289 B
Makefile
Raw Normal View History

2020-07-09 18:14:31 +02:00
BUILD_DIR := build
FILES := \
2020-07-14 21:30:19 +02:00
en.pdf \
fr.pdf \
2020-07-09 18:14:31 +02:00
.PHONY: all
2020-07-09 18:14:31 +02:00
all: $(FILES)
2020-07-09 18:14:31 +02:00
%.pdf: $(BUILD_DIR)/%.pdf
cp $< $@
$(BUILD_DIR)/%.pdf: %.tex cv_common.tex twentysecondcv.cls
2020-07-09 18:14:31 +02:00
@latexmk $< # Let the tool do its job
2020-07-09 17:16:49 +02:00
.PHONY: clean
clean:
$(RM) -r \
$(BUILD_DIR) \
$(FILES) \