20
0
Files
cdsc_tex/paper_template/Makefile
Benjamin Mako Hill 611426ef5d Fix the vc target in the paper and memo Makefiles
vc:	resources/vc-git declared a prerequisite rather than a recipe, so
make vc reported nothing to be done and wrote no vc file.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-19 15:45:13 +09:00

32 lines
524 B
Makefile

#!/usr/bin/make
all: $(patsubst %.tex,%.pdf,$(wildcard *.tex))
# use the following section for Rnw/knitr documents
# all: $(patsubst %.Rnw,%.pdf,$(wildcard *.Rnw))
# %.tex: %.Rnw
# Rscript -e "library(knitr); knit('$<')"
%.pdf: %.tex
latexmk -f -lualatex $<
clean:
latexmk -C *.tex
rm -f *.tmp *.run.xml
rm -f vc
rm -f *.bbl
# the following lines are useful for Rnw/knitr
# rm -rf cache/ figure/
# rm -f *.tex
viewpdf: all
evince *.pdf
vc:
resources/vc-git
pdf: all
.PHONY: clean all
# .PRECIOUS: %.tex