- 论坛徽章:
- 0
|
config: symlinks
$(CONFIG_SHELL) scripts/Configure arch/$(ARCH)/config.in
oldconfig: symlinks
$(CONFIG_SHELL) scripts/Configure -d arch/$(ARCH)/config.in
内核Makefile中用上面两句话,用于内核配置。我用man bash查到bash的使用格式为
bash [options] [file],并且有一句解释为:
If arguments remain after option processing, and neither the -c nor the -s option has been supplied, the first argument isassumed to be the name of a file containing shell commands.
表明第一个参数为含有脚本的命令文件。但是并没有看到第二个、第三个参数的说明。据我了解config.in是脚本的输入文件,含有一些配置选项。
我的问题,bash对后面跟多个文件的格式是怎么定义的,比如一个脚本命令文件后面可以跟几个输入文件,对脚本命令文件的数量有没有限制?还有脚本文件是如何具体读入输入文件的内容的(即Configure中的那句读入了config.in中的内容?) |
|