X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=GNUmakefile;h=a248258dbfb69e483421380c2a7c1d1aa63784e9;hb=cb9ba249d79006f9707ea14bf4ea7c159f02e24e;hp=fba3b3799ec64f9199ca8204aa5f444a759591db;hpb=bcef6c6339823ec1d823af1246cfb26eec0f9b52;p=mjotex.git diff --git a/GNUmakefile b/GNUmakefile index fba3b37..a248258 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -6,6 +6,11 @@ LATEX = pdflatex -file-line-error -halt-on-error # The name of this document. +# +# For example, to use the name of our parent directory: +# +# PN = $(notdir $(realpath .)) +# PN = examples # A space-separated list of bib files. These must all belong to paths @@ -22,9 +27,9 @@ PN = examples # MJOTEX = mjo-algebra.tex mjo-algorithm.tex mjo-arrow.tex mjo-calculus.tex MJOTEX += mjo-common.tex mjo-complex.tex mjo-cone.tex mjo-convex.tex -MJOTEX += mjo-font.tex mjo-linear_algebra.tex mjo-listing.tex mjo-misc.tex -MJOTEX += mjo-proof_by_cases.tex mjo-theorem.tex mjo-theorem-star.tex -MJOTEX += mjo-topology.tex mjo.bst +MJOTEX += mjo-eja.tex mjo-font.tex mjo-linear_algebra.tex mjo-listing.tex +MJOTEX += mjo-misc.tex mjo-proof_by_cases.tex mjo-theorem.tex +MJOTEX += mjo-theorem-star.tex mjo-topology.tex mjo.bst # Compile a list of raw source code listings (*.listing) and their # associated output files (*.py) that will be tested by check-sage. @@ -43,7 +48,9 @@ ifdef MJOTEX MJOTEXPATHS = $(shell kpsewhich $(MJOTEX)) SRCS += $(MJOTEXPATHS) endif - +ifdef SAGE_LISTING_DSTS +SRCS += $(SAGE_LISTING_DSTS) +endif # The first target is the default, so put the PDF document first. #