From 546d3b7c48937a482fd6b925411e630bcba88a8d Mon Sep 17 00:00:00 2001 From: Henrik Tidefelt Date: Thu, 18 Jun 2020 01:02:19 +0200 Subject: [PATCH] Don't use $* in recipe of makefile rule without % This fixes a problem I'm having with building MLS.html locally. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 17b8d73f6..a83064b47 100644 --- a/Makefile +++ b/Makefile @@ -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 $@