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>
32 lines
524 B
Makefile
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
|