You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
337 B
14 lines
337 B
2 years ago
|
all: test.pdf public/test.html
|
||
|
|
||
|
output.tex output.html:
|
||
|
../formatitko.py test.md
|
||
|
|
||
|
public/test.html: output.html
|
||
|
cat test-top.html output.html > public/test.html
|
||
|
|
||
|
test.tex: output.tex
|
||
|
cat test-top.tex output.tex > test.tex
|
||
|
|
||
|
test.pdf: test.tex
|
||
|
TEXINPUTS=.:../ucwmac:${TEXINPUTS} luatex -halt-on-error -interaction nonstopmode test.tex
|