Compare commits
13 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
149bca7253 | ||
|
c6c714264b | ||
|
c61a2b2ed4 | ||
|
2210c35da6 | ||
|
49ae612e96 | ||
|
a51e7f8d22 | ||
|
3f2b9a78e7 | ||
|
3d933d45a1 | ||
|
6d99ba4125 | ||
|
d6779a5950 | ||
|
858fd3c569 | ||
|
15600573d7 | ||
|
752ea4ee75 |
60
.github/workflows/deploy.yml
vendored
Normal file
60
.github/workflows/deploy.yml
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
#
|
||||
# Build and deploy the documentation
|
||||
#
|
||||
name: Deploy
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
defaults:
|
||||
run:
|
||||
shell: bash -l {0}
|
||||
steps:
|
||||
# Cancel previous runs that are not completed
|
||||
- name: Cancel Previous Runs
|
||||
uses: styfle/cancel-workflow-action@0.9.1
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2.4.0
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: '3.9'
|
||||
|
||||
- name: Install dependencies
|
||||
run: pip install -r requirements.txt
|
||||
|
||||
- name: Build HTML documentaiton
|
||||
run: make html
|
||||
|
||||
#- name: Install TinyTeX
|
||||
# uses: r-lib/actions/setup-tinytex@v1
|
||||
|
||||
#- name: Install LaTeX packages
|
||||
# run: |
|
||||
# tlmgr install tabulary latexmk ulem environ trimspaces titlesec \
|
||||
# varwidth framed threeparttable wrapfig upquote capt-of \
|
||||
# multirow eqparbox needspace fncychap letltxmacro
|
||||
|
||||
#- name: Build PDF documentaiton
|
||||
# run: |
|
||||
# make latexpdf
|
||||
# cp build/latex/Makefile.pdf build/html/
|
||||
|
||||
- name: Deploy documentation
|
||||
uses: peaceiris/actions-gh-pages@068dc23d9710f1ba62e86896f84735d869951305
|
||||
if: ${{ github.ref == 'refs/heads/main' }}
|
||||
with:
|
||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
publish_dir: ./build/html
|
||||
# Only keep the latest commit to avoid bloating the repository
|
||||
force_orphan: true
|
||||
user_name: 'github-actions[bot]'
|
||||
user_email: 'github-actions[bot]@users.noreply.github.com'
|
37
.travis.yml
37
.travis.yml
@ -1,37 +0,0 @@
|
||||
language: python
|
||||
python:
|
||||
- "3.6"
|
||||
|
||||
sudo: required
|
||||
dist: trusty
|
||||
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
- dev
|
||||
|
||||
install:
|
||||
- pip install -r requirements.txt
|
||||
# Install TeXLive
|
||||
- curl -sSL https://gist.githubusercontent.com/seisman/ad00252a9f03fc644146a11e6983d9c5/raw/install-tl.sh -o install-tl.sh
|
||||
- sudo bash install-tl.sh
|
||||
- source ~/.bash_profile
|
||||
- export TLMGR=`which tlmgr`
|
||||
# update texlive
|
||||
- sudo $TLMGR update --self --all
|
||||
- sudo $TLMGR install letltxmacro
|
||||
|
||||
script:
|
||||
- make html
|
||||
- make latexpdf
|
||||
|
||||
after_success:
|
||||
- cp build/latex/Makefile.pdf build/html/
|
||||
|
||||
deploy:
|
||||
provider: pages
|
||||
skip_cleanup: true
|
||||
github_token: ${GH_TOKEN}
|
||||
local_dir: build/html
|
||||
on:
|
||||
branch: master
|
@ -1,8 +1,8 @@
|
||||
跟我一起写Makefile (PDF重制版)
|
||||
##############################
|
||||
|
||||
.. image:: https://travis-ci.org/seisman/how-to-write-makefile.svg?branch=master
|
||||
:target: https://travis-ci.org/seisman/how-to-write-makefile
|
||||
.. image:: https://github.com/seisman/how-to-write-makefile/actions/workflows/deploy.yml/badge.svg
|
||||
:target: https://github.com/seisman/how-to-write-makefile/actions/workflows/deploy.yml
|
||||
|
||||
简介
|
||||
----
|
||||
|
@ -1,4 +1,4 @@
|
||||
sphinx==1.8.5
|
||||
sphinx
|
||||
sphinx_rtd_theme
|
||||
sphinx-cjkspace
|
||||
pygments
|
||||
|
@ -112,7 +112,11 @@ strip
|
||||
|
||||
$(strip a b c )
|
||||
|
||||
把字串 ``a b c `` 去到开头和结尾的空格,结果是 ``a b c`` 。
|
||||
把字串 |abc| 去掉开头和结尾的空格,结果是 ``a b c``。
|
||||
|
||||
.. |abc| raw:: html
|
||||
|
||||
<code class="docutils literal notranslate"><span class="pre">a b c </span></code>
|
||||
|
||||
findstring
|
||||
~~~~~~~~~~
|
||||
@ -331,7 +335,7 @@ addprefix
|
||||
$(addprefix <prefix>,<names...>)
|
||||
|
||||
- 名称:加前缀函数——addprefix。
|
||||
- 功能:把前缀 ``<prefix>`` 加到 ``<names>`` 中的每个单词后面。
|
||||
- 功能:把前缀 ``<prefix>`` 加到 ``<names>`` 中的每个单词前面。
|
||||
- 返回:返回加过前缀的文件名序列。
|
||||
- 示例: ``$(addprefix src/,foo bar)`` 返回值是 ``src/foo src/bar`` 。
|
||||
|
||||
|
@ -86,7 +86,7 @@ make会在自己的“隐含规则”库中寻找可以用的规则,如果找
|
||||
#. 编译C++程序的隐含规则。
|
||||
|
||||
``<n>.o`` 的目标的依赖目标会自动推导为 ``<n>.cc`` 或是 ``<n>.C`` ,并且其生成命令是
|
||||
``$(CXX) –c $(CPPFLAGS) $(CFLAGS)`` 。(建议使用 ``.cc`` 作为C++源文件的后缀,而不是 ``.C`` )
|
||||
``$(CXX) –c $(CPPFLAGS) $(CXXFLAGS)`` 。(建议使用 ``.cc`` 作为C++源文件的后缀,而不是 ``.C`` )
|
||||
|
||||
#. 编译Pascal程序的隐含规则。
|
||||
|
||||
@ -335,8 +335,8 @@ make就会规则下的命令,所以,在模式规则中,目标可能会是
|
||||
重复的依赖目标,只保留一份。
|
||||
- ``$+`` : 这个变量很像 ``$^`` ,也是所有依赖目标的集合。只是它不去除重复的依赖目标。
|
||||
- ``$*`` : 这个变量表示目标模式中 ``%`` 及其之前的部分。如果目标是 ``dir/a.foo.b`` ,并且
|
||||
目标的模式是 ``a.%.b`` ,那么, ``$*`` 的值就是 ``dir/a.foo`` 。这个变量对于构造有关联的
|
||||
文件名是比较有较。如果目标中没有模式的定义,那么 ``$*`` 也就不能被推导出,但是,如果目标文件的
|
||||
目标的模式是 ``a.%.b`` ,那么, ``$*`` 的值就是 ``dir/foo`` 。这个变量对于构造有关联的
|
||||
文件名是比较有效。如果目标中没有模式的定义,那么 ``$*`` 也就不能被推导出,但是,如果目标文件的
|
||||
后缀是make所识别的,那么 ``$*`` 就是除了后缀的那一部分。例如:如果目标是 ``foo.c`` ,因为
|
||||
``.c`` 是make所能识别的后缀名,所以, ``$*`` 的值就是 ``foo`` 。这个特性是GNU make的,
|
||||
很有可能不兼容于其它版本的make,所以,你应该尽量避免使用 ``$*`` ,除非是在隐含规则或是静态
|
||||
|
@ -167,7 +167,7 @@ Makefile文件中的特殊变量 ``VPATH`` 就是完成这个功能的,如果
|
||||
``vpath``
|
||||
清除所有已被设置好了的文件搜索目录。
|
||||
|
||||
vapth使用方法中的<pattern>需要包含 ``%`` 字符。 ``%`` 的意思是匹配零或若干字符,(需引用
|
||||
vpath使用方法中的<pattern>需要包含 ``%`` 字符。 ``%`` 的意思是匹配零或若干字符,(需引用
|
||||
``%`` ,使用 ``\`` )例如, ``%.h`` 表示所有以 ``.h`` 结尾的文件。<pattern>指定了要搜索
|
||||
的文件集,而<directories>则指定了< pattern>的文件集的搜索的目录。例如:
|
||||
|
||||
|
@ -398,7 +398,7 @@ make运行时的系统环境变量可以在make开始运行时被载入到Makefi
|
||||
|
||||
当make嵌套调用时(参见前面的“嵌套调用”章节),上层Makefile中定义的变量会以系统环境变量的方式
|
||||
传递到下层的Makefile 中。当然,默认情况下,只有通过命令行设置的变量会被传递。而定义在文件中的
|
||||
变量,如果要向下层Makefile传递,则需要使用exprot关键字来声明。(参见前面章节)
|
||||
变量,如果要向下层Makefile传递,则需要使用export关键字来声明。(参见前面章节)
|
||||
|
||||
当然,我并不推荐把许多的变量都定义在系统环境中,这样,在我们执行不用的Makefile时,拥有的是同一
|
||||
套系统变量,这可能会带来更多的麻烦。
|
||||
@ -422,7 +422,7 @@ make运行时的系统环境变量可以在make开始运行时被载入到Makefi
|
||||
|
||||
<target ...> : overide <variable-assignment>
|
||||
|
||||
<variable-assignment>;可以是前面讲过的各种赋值表达式,如 ``=`` 、 ``:=`` 、 ``+= ``
|
||||
<variable-assignment>;可以是前面讲过的各种赋值表达式,如 ``=`` 、 ``:=`` 、 ``+=``
|
||||
或是 ``?=`` 。第二个语法是针对于make命令行带入的变量,或是系统环境变量。
|
||||
|
||||
这个特性非常的有用,当我们设置了这样一个变量,这个变量会作用到由这个目标所引发的所有的规则中
|
||||
|
Loading…
x
Reference in New Issue
Block a user