-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
1,899 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Makefile for Sphinx LaTeX output | ||
|
||
ALLDOCS = $(basename $(wildcard *.tex)) | ||
ALLPDF = $(addsuffix .pdf,$(ALLDOCS)) | ||
ALLDVI = | ||
ALLXDV = $(addsuffix .xdv,$(ALLDOCS)) | ||
ALLPS = $(addsuffix .ps,$(ALLDOCS)) | ||
|
||
# Prefix for archive names | ||
ARCHIVEPREFIX = | ||
# Additional LaTeX options (passed via variables in latexmkrc/latexmkjarc file) | ||
export LATEXOPTS ?= | ||
# Additional latexmk options | ||
# with latexmk version 4.52b or higher set LATEXMKOPTS to -xelatex either here | ||
# or on command line for faster builds. | ||
LATEXMKOPTS ?= | ||
export XINDYOPTS = -L english -C utf8 -M sphinx.xdy | ||
# format: pdf or dvi (used only by archive targets) | ||
FMT = pdf | ||
|
||
LATEX = latexmk -dvi | ||
PDFLATEX = latexmk -pdf -dvi- -ps- | ||
|
||
|
||
%.ps: %.dvi | ||
dvips '$<' | ||
|
||
%.pdf: %.tex FORCE_MAKE | ||
$(PDFLATEX) $(LATEXMKOPTS) '$<' | ||
|
||
all: $(ALLPDF) | ||
|
||
all-dvi: $(ALLDVI) | ||
|
||
all-ps: $(ALLPS) | ||
|
||
all-pdf: $(ALLPDF) | ||
|
||
zip: all-$(FMT) | ||
mkdir $(ARCHIVEPREFIX)docs-$(FMT) | ||
cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) | ||
zip -q -r -9 $(ARCHIVEPREFIX)docs-$(FMT).zip $(ARCHIVEPREFIX)docs-$(FMT) | ||
rm -r $(ARCHIVEPREFIX)docs-$(FMT) | ||
|
||
tar: all-$(FMT) | ||
mkdir $(ARCHIVEPREFIX)docs-$(FMT) | ||
cp $(ALLPDF) $(ARCHIVEPREFIX)docs-$(FMT) | ||
tar cf $(ARCHIVEPREFIX)docs-$(FMT).tar $(ARCHIVEPREFIX)docs-$(FMT) | ||
rm -r $(ARCHIVEPREFIX)docs-$(FMT) | ||
|
||
gz: tar | ||
gzip -9 < $(ARCHIVEPREFIX)docs-$(FMT).tar > $(ARCHIVEPREFIX)docs-$(FMT).tar.gz | ||
|
||
bz2: tar | ||
bzip2 -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar | ||
|
||
xz: tar | ||
xz -9 -k $(ARCHIVEPREFIX)docs-$(FMT).tar | ||
|
||
clean: | ||
rm -f *.log *.ind *.aux *.toc *.syn *.idx *.out *.ilg *.pla *.ps *.tar *.tar.gz *.tar.bz2 *.tar.xz $(ALLPDF) $(ALLDVI) $(ALLXDV) *.fls *.fdb_latexmk | ||
|
||
.PHONY: all all-pdf all-dvi all-ps clean zip tar gz bz2 xz | ||
.PHONY: FORCE_MAKE |
Binary file not shown.
Oops, something went wrong.