From 889aeb50ed74d720f5941845d3ed9adc9f34b20f Mon Sep 17 00:00:00 2001 From: Karl Hallsby Date: Tue, 22 Oct 2024 18:51:32 -0500 Subject: Add shorter Make target for building the PDF --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') 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) -- cgit v1.2.3