mirror of
https://github.com/posquit0/Awesome-CV.git
synced 2026-05-03 20:26:34 +08:00
- CLAUDE.md: project guidance for Claude Code (build commands, conventions, editing rules, CI notes) - AGENTS.md: agent-level task conventions for autonomous editing sessions - .claude/: skills, memory, and settings for Claude Code integration - docs/: research-backed LaTeX reference examples (small, medium, large-doc templates with latexmkrc, local .sty, CI workflow) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
292 B
Makefile
14 lines
292 B
Makefile
LATEXMK=latexmk
|
|
MAIN=src/main.tex
|
|
|
|
.PHONY: pdf clean glossary
|
|
|
|
pdf:
|
|
$(LATEXMK) -lualatex -interaction=nonstopmode -file-line-error $(MAIN)
|
|
|
|
glossary:
|
|
makeglossaries src/main
|
|
|
|
clean:
|
|
$(LATEXMK) -C $(MAIN)
|
|
rm -f src/main.acn src/main.acr src/main.alg src/main.glo src/main.gls src/main.ist
|