TA的每日心情 | 开心 2025-2-6 16:13 |
---|
新手上路

- 积分
- 34
|
Usage: make [options] [target] ...
Options: //选项
-b, -m Ignored for compatibility.//忽略兼容性
-B, --always-make Unconditionally make all targets.//无条件make所有目标
-C DIRECTORY, --directory=DIRECTORY Change to DIRECTORY before doing anything.//在执行前先切换到DIRECTORY目录
-d Print lots of debugging information. //打印大量调试信息
--debug[=FLAGS] Print various types of debugging information. //打印各种调试信息
-e, --environment-overrides Environment variables override makefiles. //环境变量覆盖makefile中变量
--eval=STRING Evaluate STRING as a makefile statement.//将STRING作为一个makefile语句
-f FILE, --file=FILE, --makefile=FILE Read FILE as a makefile.//从FILE中读入makefile
-h, --help Print this message and exit. //打印帮助信息并退出
-i, --ignore-errors Ignore errors from recipes.//在执行时忽略所有的错误,和-k参数结合使用能够得到所有的编译错误信息
-I DIRECTORY, --include-dir=DIRECTORY Search DIRECTORY for included makefiles. //指定一个被包含makefile的搜索目标。可以使用多个"-i"参数来指定多个目标
-j [N], --jobs[=N] Allow N jobs at once; infinite jobs with no arg. //同时允许N个任务;无参数表明允许无限个任务
-k, --keep-going Keep going when some targets can't be made. //当某些目标无法创建时仍然继续
-l [N], --load-average[=N], --max-load[=N] Don't start multiple jobs unless load is below N.//在系统负载高于N时不启动多任务
-L, --check-symlink-times Use the latest mtime between symlinks and target. //使用软连接及软连接目标中修改时间较晚的一个
-n, --just-print, --dry-run, --recon Don't actually run any recipe; just print them. //不要实际运行任何命令,仅仅输出他们
-o FILE, --old-file=FILE, --assume-old=FILE Consider FILE to be very old and don't remake it.//将FILE当做很旧,不必重新生成
-O[TYPE], --output-sync[=TYPE] Synchronize output of parallel jobs by TYPE. //通过TYPE同步并行任务输出(将编译过程文件输出到指定文件目录中)
-p, --print-data-base Print make's internal database. //打印make的内部数据库
-q, --question Run no recipe; exit status says if up to date. //不运行任何命令;退出状态说明是否已全部更新
-r, --no-builtin-rules Disable the built-in implicit rules. //禁用内置隐含规则
-R, --no-builtin-variables Disable the built-in variable settings. //禁用内置变量设置
-s, --silent, --quiet Don't echo recipes. //不显示命令
-S, --no-keep-going, --stop Turns off -k.//关闭 -k
-t, --touch Touch targets instead of remaking them.//touch 目标而不是重新创建它们
--trace Print tracing information. //打印tracing 信息
-v, --version Print the version number of make and exit. //打印make的版本号并退出
-w, --print-directory Print the current directory.//打印当前目录
--no-print-directory Turn off -w, even if it was turned on implicitly. //关闭 -w ,即使-w默认开启
-W FILE, --what-if=FILE, --new-file=FILE, --assume-new=FILE Consider FILE to be infinitely new.//将FILE当做最新
--warn-undefined-variables Warn when an undefined variable is referenced.//当引用未定义变量的时候发出警告
|
|