From 31b6eb3339a493a0a7c2b97a784a8d7316d2ad78 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 26 Feb 2026 20:37:07 -0500 Subject: [PATCH] examples/article/GNUmakefile: reorder some variables --- examples/article/GNUmakefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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) -- 2.51.0