diff options
author | ent_explode <waishelt9@gmail.com> | 2019-05-06 09:17:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-06 09:17:20 +0800 |
commit | 158c896c2aa430726f5677a3f219647444211b46 (patch) | |
tree | 450fdbcb654ffa4b6f4113a4b4c3ce130d59c656 /zh-cn/make-cn.html.markdown | |
parent | ea01c52036ead53c08b28e184c2b4bf2dbc8c3f2 (diff) |
Update make-cn.html.markdown
fix typo and gramma mistakes
Diffstat (limited to 'zh-cn/make-cn.html.markdown')
-rw-r--r-- | zh-cn/make-cn.html.markdown | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/zh-cn/make-cn.html.markdown b/zh-cn/make-cn.html.markdown index ae31d77a..76dde941 100644 --- a/zh-cn/make-cn.html.markdown +++ b/zh-cn/make-cn.html.markdown @@ -39,7 +39,7 @@ Makefile 用于定义如何创建目标文件, 比如如何从源码到可执行 # … # prerequisites(依赖) 是可选的, recipe(做法) 也可以多个或者不给. -# 下面这个任务没有给 prerequisites, 只会在目标文件 file0.txt 文件不存在是跑 +# 下面这个任务没有给 prerequisites, 只会在目标文件 file0.txt 文件不存在时执行 file0.txt: echo "foo" > file0.txt # 试试 `make file0.txt` @@ -50,9 +50,9 @@ file0.txt: # 比如下面这个任务只有当 file0.txt 比 file1.txt 新时才会执行. file1.txt: file0.txt cat file0.txt > file1.txt - # 这里跟shell里的命令式一毛一样的. + # 这里跟shell里的命令式一模一样. @cat file0.txt >> file1.txt - # @ 不会把命令往 stdout 打印. + # @ 不会把命令打印到 stdout. -@echo 'hello' # - 意思是发生错误了也没关系. # 试试 `make file1.txt` 吧. @@ -235,7 +235,7 @@ ls: * # include foo.mk sport = tennis -# 一些逻辑语句 if else 什么的, 顶个写 +# 流程控制语句 (如if else 等等) 顶格写 report: ifeq ($(sport),tennis) @echo 'game, set, match' |