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
This commit is contained in:
Mahdi Hoseini 2025-08-31 14:33:28 -07:00
parent 7837a754f5
commit 2e1cd7efbc
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View file

@ -15,6 +15,8 @@
## SyncTeX files:
*.synctex
*.synctex(busy)
*.synctex.gz
*.synctex.gz(busy)
resume.synctex
resume.synctex(busy)

View file

@ -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