diff options
author | Karl Hallsby <karl@hallsby.com> | 2024-10-22 18:51:32 -0500 |
---|---|---|
committer | Karl Hallsby <karl@hallsby.com> | 2024-10-22 18:52:14 -0500 |
commit | 889aeb50ed74d720f5941845d3ed9adc9f34b20f (patch) | |
tree | 5378d29b8e253485afc5025a9153838762d114e3 /Makefile | |
parent | af791397a75540419a9ce050d0f779b3cea13695 (diff) |
Add shorter Make target for building the PDF
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |