Awesome-CV/docs/examples/large-doc/Makefile
Mahdi Hoseini 8aa1e106be chore: add project config, Claude instructions, and reference docs
- 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>
2026-03-04 16:39:18 -08:00

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