语法高亮,滚动条美化,设置页面调整

This commit is contained in:
fofolee
2019-04-19 02:41:09 +08:00
parent 1e8f76c000
commit 359d29ee0b
1590 changed files with 12328 additions and 11441 deletions

View File

@@ -3,9 +3,9 @@
<h2 id="补充说明">补充说明</h2>
<p><strong>make命令</strong> 是GNU的工程化编译工具用于编译众多相互关联的源代码问价以实现工程化的管理提高开发效率。</p>
<h3 id="语法">语法</h3>
<pre><code>make(选项)(参数)</code></pre>
<pre><code class="language-bash">make(选项)(参数)</code></pre>
<h3 id="选项">选项</h3>
<pre><code>-f指定“makefile”文件
<pre><code class="language-bash">-f指定“makefile”文件
-i忽略命令执行返回的出错信息
-s沉默模式在执行之前不输出相应的命令行信息
-r禁止使用build-in规则
@@ -15,7 +15,7 @@
-p输出所有宏定义和目标文件描述
-dDebug模式输出有关文件和检测时间的详细信息。</code></pre>
<p>Linux下常用选项与Unix系统中稍有不同下面是不同的部分</p>
<pre><code>-c dir在读取 makefile 之前改变到指定的目录dir
<pre><code class="language-bash">-c dir在读取 makefile 之前改变到指定的目录dir
-I dir当包含其他 makefile文件时利用该选项指定搜索目录
-hhelp文挡显示所有的make选项
-w在处理 makefile 之前和之后,都显示工作目录。</code></pre>