2021-08-07 18:49:24 +08:00
|
|
|
PROJ = lkmpg
|
|
|
|
all: $(PROJ).pdf
|
|
|
|
|
|
|
|
$(PROJ).pdf: lkmpg.tex
|
|
|
|
rm -rf _minted-$(PROJ)
|
|
|
|
pdflatex -shell-escap $<
|
|
|
|
bibtex $(PROJ) >/dev/null || echo
|
2021-08-01 16:21:01 +08:00
|
|
|
pdflatex -shell-escape $< 2>/dev/null >/dev/null
|
2021-07-22 06:35:24 +08:00
|
|
|
|
2021-08-02 02:42:39 +08:00
|
|
|
html: lkmpg.tex html.cfg
|
2021-08-08 01:29:50 +08:00
|
|
|
sed $ 's/\t/ /g' lkmpg.tex > lkmpg-for-ht.tex
|
|
|
|
make4ht --shell-escape --utf8 --format html5 --config html.cfg --output-dir html lkmpg-for-ht.tex
|
|
|
|
ln -sf lkmpg-for-ht.html html/index.html
|
|
|
|
rm -f lkmpg-for-ht.tex lkmpg-for-ht.xref lkmpg-for-ht.tmp lkmpg-for-ht.html lkmpg-for-ht.css lkmpg-for-ht.4ct lkmpg-for-ht.4tc lkmpg-for-ht.dvi lkmpg-for-ht.lg lkmpg-for-ht.idv lkmpg*.svg lkmpg-for-ht.log lkmpg-for-ht.aux
|
|
|
|
rm -rf _minted-$(PROJ) _minted-lkmpg-for-ht
|
2021-08-02 02:42:39 +08:00
|
|
|
|
2021-08-07 23:33:37 +08:00
|
|
|
indent:
|
|
|
|
(cd examples; find . -name '*.[ch]' | xargs clang-format -i)
|
|
|
|
|
2021-07-22 06:35:24 +08:00
|
|
|
clean:
|
|
|
|
rm -f *.dvi *.aux *.log *.ps *.pdf *.out lkmpg.bbl lkmpg.blg lkmpg.lof lkmpg.toc
|
2021-08-02 02:42:39 +08:00
|
|
|
rm -rf html
|
|
|
|
|
2021-08-08 01:29:50 +08:00
|
|
|
.PHONY: html
|