We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60bed94 commit adb2d21Copy full SHA for adb2d21
Makefile
@@ -2,10 +2,8 @@ PROJ = lkmpg
2
all: $(PROJ).pdf
3
4
$(PROJ).pdf: lkmpg.tex
5
- pdflatex -shell-escap $<
6
- bibtex $(PROJ) >/dev/null || echo
7
- pdflatex -shell-escape $< 2>/dev/null >/dev/null
8
rm -rf _minted-$(PROJ)
+ latexmk -shell-escape lkmpg.tex -pdf
9
10
html: lkmpg.tex html.cfg assets/Manrope_variable.ttf
11
sed $ 's/\t/ /g' lkmpg.tex > lkmpg-for-ht.tex
@@ -19,7 +17,7 @@ indent:
19
17
(cd examples; find . -name '*.[ch]' | xargs clang-format -i)
20
18
21
clean:
22
- rm -f *.dvi *.aux *.log *.ps *.pdf *.out lkmpg.bbl lkmpg.blg lkmpg.lof lkmpg.toc
+ rm -f *.dvi *.aux *.log *.ps *.pdf *.out lkmpg.bbl lkmpg.blg lkmpg.lof lkmpg.toc lkmpg.fdb_latexmk lkmpg.fls
23
rm -rf html
24
25
.PHONY: html
0 commit comments