add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

29
pages.zh/common/mk.md Normal file
View File

@@ -0,0 +1,29 @@
# mk
> Mkfile中描述的目标的任务运行器。
> 主要用于控制从源代码编译可执行文件的过程。
> 更多信息:<https://doc.cat-v.org/plan_9/4th_edition/papers/mk>。
- 调用Mkfile中指定的第一个目标通常命名为“all”
`mk`
- 调用特定目标:
`mk {{target}}`
- 调用特定目标同时并行执行4个作业
`NPROC=4 mk {{target}}`
- 强制生成一个目标,即使源文件没有更改:
`mk -w{{target}} {{target}}`
- 假设所有目标都过时。因此,更新`target`及其所有依赖项:
`mk -a {{target}}`
- 在出错时尽可能继续:
`mk -k`