Skip to content
Snippets Groups Projects
Commit 4727e5fa authored by James Vasile's avatar James Vasile
Browse files

Clean .ltx files instead of .tex when using jinja2

parent f713504a
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ LTX_SRCS := $(shell find . -name '*.ltx' ! -path './.\#*')
# LaTeX litters a lot
clean_latex:
@latexmk -c -f $(patsubst %.yaml.ltx,%.tex,$(wildcard *.yaml.ltx)) $(wildcard *.ltx) $(wildcard *.tex)
@latexmk -c -f $(patsubst %.yaml.ltx,%.ltx,$(wildcard *.yaml.ltx)) $(wildcard *.ltx) $(wildcard *.tex)
# We don't remove .pdf files by default, even though they're generated
# files, because in practice one usually wants to keep them around.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment