From 2e1cd7efbcf7165baabc349e8abbdae6d33a6efa Mon Sep 17 00:00:00 2001 From: Mahdi Hoseini Date: Sun, 31 Aug 2025 14:33:28 -0700 Subject: [PATCH] style(coverletter): Add SyncTeX files to .gitignore and clean target - Add *.synctex.gz and *.synctex.gz(busy) to .gitignore - Update Makefile clean target to remove SyncTeX files - Remove existing coverletter.synctex.gz build artifact --- .gitignore | 2 ++ Makefile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 85240e3..70bf9f6 100644 --- a/.gitignore +++ b/.gitignore @@ -15,6 +15,8 @@ ## SyncTeX files: *.synctex *.synctex(busy) +*.synctex.gz +*.synctex.gz(busy) resume.synctex resume.synctex(busy) diff --git a/Makefile b/Makefile index 4a66e03..19e8af4 100644 --- a/Makefile +++ b/Makefile @@ -19,4 +19,4 @@ coverletter.pdf: $(SRC_DIR)/coverletter.tex $(CC) -output-directory=$(SRC_DIR) $< clean: - rm -rf $(SRC_DIR)/*.pdf $(SRC_DIR)/*.xdv $(SRC_DIR)/*.fdb_latexmk $(SRC_DIR)/*.fls *.fls + rm -rf $(SRC_DIR)/*.pdf $(SRC_DIR)/*.xdv $(SRC_DIR)/*.fdb_latexmk $(SRC_DIR)/*.fls $(SRC_DIR)/*.synctex.gz *.fls