Files
Christian Nennemann 45cb13fbe8 feat: add IETF landscape paper source (LaTeX + BibTeX + Makefile)
New LaTeX paper analyzing the AI-agent standardization landscape across
IETF Internet-Drafts. Includes bibliography, updated Makefile for
pdflatex+bibtex build, and gitignore entries for build artifacts.
2026-04-12 12:43:15 +00:00

27 lines
548 B
Makefile

TEX = pdflatex
BIB = bibtex
MAIN = ietf-landscape
SOURCES = $(MAIN).tex ietf-refs.bib
.PHONY: all clean watch
all: $(MAIN).pdf
$(MAIN).pdf: $(SOURCES)
$(TEX) $(MAIN)
$(BIB) $(MAIN)
$(TEX) $(MAIN)
$(TEX) $(MAIN)
clean:
rm -f $(MAIN).aux $(MAIN).bbl $(MAIN).blg $(MAIN).log \
$(MAIN).out $(MAIN).pdf $(MAIN).toc $(MAIN).fls \
$(MAIN).fdb_latexmk $(MAIN).synctex.gz
watch:
@echo "Rebuilding on change..."
@while true; do \
inotifywait -q -e modify $(SOURCES) 2>/dev/null || sleep 2; \
$(MAKE) all; \
done