From de096e6affa70cac3412ee50485896d3d561e930 Mon Sep 17 00:00:00 2001 From: Mahdi Hoseini Date: Sun, 31 Aug 2025 14:58:41 -0700 Subject: [PATCH] refactor(Makefile): Rename target from examples to all for clarity --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 19e8af4..3ab0c64 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: examples +.PHONY: all CC = latexmk -xelatex SRC_DIR = src @@ -7,7 +7,7 @@ CV_DIR = src/cv RESUME_SRCS = $(shell find $(RESUME_DIR) -name '*.tex') CV_SRCS = $(shell find $(CV_DIR) -name '*.tex') -examples: $(foreach x, coverletter cv resume, $x.pdf) +all: $(foreach x, coverletter cv resume, $x.pdf) resume.pdf: $(SRC_DIR)/resume.tex $(RESUME_SRCS) $(CC) -output-directory=$(SRC_DIR) $<