summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/latex/stex/lib/make/README
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/latex/stex/lib/make/README')
-rw-r--r--Master/texmf-dist/source/latex/stex/lib/make/README23
1 files changed, 23 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/latex/stex/lib/make/README b/Master/texmf-dist/source/latex/stex/lib/make/README
new file mode 100644
index 00000000000..78419320a69
--- /dev/null
+++ b/Master/texmf-dist/source/latex/stex/lib/make/README
@@ -0,0 +1,23 @@
+This directory contains two Makefiles for inclusion into Makefile-based build systems.
+
+file contains
+--------------------------------------------------------------------------------------
+Makefile.base.vars general variable declarations (include before all others)
+Makefile.base.in general rules (include before all others)
+Makefile.latexml.vars variable declarations for the LaTeXML conversion
+Makefile.latexml.in rules for producing OMDoc via LaTeXML
+Makefile.latex.vars variable declarations for LaTeX formatting
+Makefile.latex.in rules for LaTeX formatting
+Makefile.vars combines all *.vars above
+Makefile.in combines all *.in above
+
+The usual setup for this will be to create SVN externals
+- the deployed instance of sTeX (i.e. https://svn.kwarc.info/repos/sTeX/trunk or /latest)
+- to this directory
+and use the lines
+
+STEXDIR = <the sTeX external>
+include $(STEXDIR)/make/Makefile.vars
+include $(STEXDIR)/make/Makefile.in
+
+at appropriate places in the calling Makefile. It is crucial to set STEXDIR variable to make this setup work.