blob: ff1e6d3d83a62677ecd21c8a3065f7b41721a604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
all: pdf html
pdf:
mkdir -p build
pdflatex -output-directory build $(NAME).tex
pdflatex -output-directory build $(NAME).tex
html:
mkdir -p html
make4ht -d html $(NAME).tex
make4ht -d html $(NAME).tex
cat ../custom.css >> html/$(NAME).css
rm $(NAME).4ct $(NAME).4tc $(NAME).aux $(NAME).dvi $(NAME).idv $(NAME).lg $(NAME).log $(NAME).tmp $(NAME).xref $(NAME).css $(NAME).html
.PHONY: all pdf html
|