cv/Makefile

17 lines
243 B
Makefile
Raw Normal View History

2020-07-09 18:14:31 +02:00
BUILD_DIR := build
FILES := \
cv_en.pdf \
.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 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 cv_en.pdf