Compare commits

...

13 Commits

Author SHA1 Message Date
Dongdong Tian
149bca7253 Fix a typo
Closes #43.
2022-05-22 12:09:04 +08:00
Dongdong Tian
c6c714264b Need a trailing whitespace in code 2022-05-18 20:08:29 +08:00
mofelee
c61a2b2ed4
Fix typo (#42) 2022-05-18 20:04:59 +08:00
mofelee
2210c35da6
Fix typo (#40) 2022-05-18 18:31:07 +08:00
mofelee
49ae612e96
Fix a typo in rules.rst (#39) 2022-05-18 12:55:13 +08:00
Dongdong Tian
a51e7f8d22 Unpin sphinx 2022-04-27 20:59:05 +08:00
Dongdong Tian
3f2b9a78e7 Fix the badge 2022-04-27 20:57:37 +08:00
Snowball Wang
3d933d45a1
Fix a typo in implicit_rules.rst (#35) 2022-03-27 10:36:33 +08:00
Dongdong Tian
6d99ba4125
Fix a typo
Closes https://github.com/seisman/how-to-write-makefile/issues/34
2022-03-25 10:47:48 +08:00
Dongdong Tian
d6779a5950 Temporarily disable PDF building 2022-02-19 23:31:17 +08:00
Piggy
858fd3c569
Fix typo (#31) 2022-02-19 23:27:53 +08:00
Dongdong Tian
15600573d7
Migrate from Travis to GitHub Actions (#29) 2022-02-03 19:31:12 +08:00
RichardLCD
752ea4ee75
Fix description of addprefix function (#28) 2021-09-22 16:43:14 +08:00
8 changed files with 75 additions and 48 deletions

60
.github/workflows/deploy.yml vendored Normal file
View 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'

View File

@ -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

View File

@ -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
简介
----

View File

@ -1,4 +1,4 @@
sphinx==1.8.5
sphinx
sphinx_rtd_theme
sphinx-cjkspace
pygments

View File

@ -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&nbsp;</span></code>
findstring
~~~~~~~~~~
@ -331,7 +335,7 @@ addprefix
$(addprefix <prefix>,<names...>)
- 名称加前缀函数——addprefix。
- 功能:把前缀 ``<prefix>`` 加到 ``<names>`` 中的每个单词面。
- 功能:把前缀 ``<prefix>`` 加到 ``<names>`` 中的每个单词面。
- 返回:返回加过前缀的文件名序列。
- 示例: ``$(addprefix src/,foo bar)`` 返回值是 ``src/foo src/bar``

View File

@ -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所以你应该尽量避免使用 ``$*`` ,除非是在隐含规则或是静态

View File

@ -167,7 +167,7 @@ Makefile文件中的特殊变量 ``VPATH`` 就是完成这个功能的,如果
``vpath``
清除所有已被设置好了的文件搜索目录。
vapth使用方法中的<pattern>需要包含 ``%`` 字符。 ``%`` 的意思是匹配零或若干字符,(需引用
vpath使用方法中的<pattern>需要包含 ``%`` 字符。 ``%`` 的意思是匹配零或若干字符,(需引用
``%`` ,使用 ``\`` )例如, ``%.h`` 表示所有以 ``.h`` 结尾的文件。<pattern>指定了要搜索
的文件集,而<directories>则指定了< pattern>的文件集的搜索的目录。例如:

View File

@ -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命令行带入的变量或是系统环境变量。
这个特性非常的有用,当我们设置了这样一个变量,这个变量会作用到由这个目标所引发的所有的规则中