summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2024-10-22 18:51:32 -0500
committerKarl Hallsby <karl@hallsby.com>2024-10-22 18:52:14 -0500
commit889aeb50ed74d720f5941845d3ed9adc9f34b20f (patch)
tree5378d29b8e253485afc5025a9153838762d114e3
parentaf791397a75540419a9ce050d0f779b3cea13695 (diff)
Add shorter Make target for building the PDF
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cca7337..b51d97f 100644
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,10 @@ OUT_PDF := $(RESUME_FILE_BASE).pdf
.PHONY: all clean
-all: $(OUT_PDF)
+all: pdf
+.PHONY: pdf
+pdf: $(OUT_PDF)
$(OUT_PDF): $(SRC)
$(LATEXMK) $(SRC)