Skip to content

Commit

Permalink
add 9.16.22 9.16.23 9.16.24 9.16.25
Browse files Browse the repository at this point in the history
  • Loading branch information
perlang committed Feb 1, 2022
1 parent 0af8270 commit a29ef30
Show file tree
Hide file tree
Showing 570 changed files with 97,060 additions and 0 deletions.
18 changes: 18 additions & 0 deletions branches/9.16.22/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

# 构建PDF的环境

操作系统: Fedora 35

软件包:

.. code-block::
# dnf -y install python3-sphinx python3-sphinx-theme-alabaster python3-sphinx_rtd_theme

texlive-* (这个数量较多,如果缺少,构建时会有相应的错误提示。)

# 生成PDF文件

$ cd arm

$ make pdf

29 changes: 29 additions & 0 deletions branches/9.16.22/arm/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Minimal makefile for Sphinx documentation
#

# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?= -a -b latex -v
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build

# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

.PHONY: help Makefile

RELEASE_DATE=`date -r conf.py +"%Y-%m-%d"`

# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
#%: Makefile
pdf:
$(SPHINXBUILD) $(SPHINXOPTS) -D today=${RELEASE_DATE} . "$(BUILDDIR)"
(./chg_fmt.pl $(BUILDDIR)/sphinxlatexstyletext.sty; cd $(BUILDDIR); make)
cp "$(BUILDDIR)/Bv9ARM.pdf" "$(SOURCEDIR)"

clean::
rm -rf $(BUILDDIR)
rm -f Bv9ARM.pdf
Loading

0 comments on commit a29ef30

Please sign in to comment.