From: Michael Orlitzky Date: Fri, 27 Feb 2026 01:37:07 +0000 (-0500) Subject: examples/article/GNUmakefile: reorder some variables X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=31b6eb3339a493a0a7c2b97a784a8d7316d2ad78;p=mjotex.git examples/article/GNUmakefile: reorder some variables --- diff --git a/examples/article/GNUmakefile b/examples/article/GNUmakefile index 4dc382f..0bbe84d 100644 --- a/examples/article/GNUmakefile +++ b/examples/article/GNUmakefile @@ -12,11 +12,6 @@ # * MJOTEX - macro source files from mjotex # -# The repository has to be added to the TeX path, if this is not done -# in ~/.bashrc or some equivalent place. -export TEXINPUTS := $(TEXINPUTS):../.. -export BSTINPUTS := $(BSTINPUTS):../.. - # The name of the document. Defaults to name of the parent directory # (which in this case is also "article"), but is usually required. PN = article @@ -33,4 +28,10 @@ MJOTEX += mjo-eja.tex mjo-font.tex mjo-hurwitz.tex mjo-linear_algebra.tex MJOTEX += mjo-listing.tex mjo-proof_by_cases.tex mjo-set.tex mjo-theorem.tex MJOTEX += mjo-theorem-star.tex mjo-topology.tex mjo.bst +# The repository has to be added to the TeX path, if this is not done +# in ~/.bashrc or some equivalent place. In particular this is needed +# for the kpsewhich command that immediately follows. +export TEXINPUTS := $(TEXINPUTS):../.. +export BSTINPUTS := $(BSTINPUTS):../.. + include $(shell kpsewhich GNUmakefile.mjo)