Skip to content

Commit

Permalink
Don't use $* in recipe of makefile rule without %
Browse files Browse the repository at this point in the history
This fixes a problem I'm having with building MLS.html locally.
  • Loading branch information
henrikt-ma committed Jun 17, 2020
1 parent e1e6d36 commit 546d3b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -23,5 +23,5 @@ MLS.pdf: *.tex chapters/*.tex
# Seems to be some issue with graphicpath, so set path here as well
# Not using %.html since nmake does not support it (instead using old-style suffix rules)
MLS.html: MLS.tex chapters/*.tex
$(LATEXMLPREFIX)latexml $*.tex --path=media --dest $*.xml
$(LATEXMLPREFIX)latexmlpost $*.xml -format html -pmml --splitat=chapter --splitnaming=labelrelative --javascript=css/LaTeXML-maybeMathJax.js --navigationtoc=context --css=css/LaTeXML-navbar-left.css --dest $@
$(LATEXMLPREFIX)latexml MLS.tex --path=media --dest MLS.xml
$(LATEXMLPREFIX)latexmlpost MLS.xml -format html -pmml --splitat=chapter --splitnaming=labelrelative --javascript=css/LaTeXML-maybeMathJax.js --navigationtoc=context --css=css/LaTeXML-navbar-left.css --dest $@

0 comments on commit 546d3b7

Please sign in to comment.