1.
bldmake bldfiles
这条语句使用.INF文件和.MMP文件来生成abld.bat. 和.INF于.MMP文件不同, 所生成的abld.bat在不同的IDE之间不可移植, 不能手工编辑.
下面看一下bldmake命令还有什么参数, 单独运行bldmake可以得到下面的信息:
BLDMAKE {options} [<command>] [<platform>]
<command>: (case insensitive)
BLDFILES - create build batch files
CLEAN - remove all files bldmake creates
INF - display basic BLD.INF syntax
PLAT - display platform macros
<platform>: (case insensitive)
if not specified, defaults to "ALL"
Options: (case insensitive)
-v -> verbose mode
-k -> keep going even if files are missing
|
同样
,
先运行
abld help command
看一下
abld
的用法
.
Commands (case-insensitive):
BUILD Combines commands EXPORT,MAKEFILE,LIBRARY,RESOURCE,TARGET,FINAL
CLEAN Removes everything built with ABLD TARGET
CLEANEXPORT Removes files created by ABLD EXPORT
EXPORT Copies the exported files to their destinations
FINAL Allows extension makefiles to execute final commands
FREEZE Freezes exported functions in a .DEF file
HELP Displays commands, options or help about a particular command
LIBRARY Creates import libraries from the frozen .DEF files
LISTING Creates assembler listing file for corresponding source file
MAKEFILE Creates makefiles or IDE workspaces
REALLYCLEAN As CLEAN, but also removes exported files and makefiles
RESOURCE Creates resource files, bitmaps and AIFs
TARGET Creates the main executable and also the resources
TIDY Removes executables which need not be released
|
先说一下
BUILD
这个参数
.
首先看一下我们之前的例子
:
abld build armi urel
上面的命令很容易想到第三个参数和目标设备有关
,
而最后一个参数则是确定是
Debug
版本还是
Release
版本的
.
看看其它的用法
:
abld build wins udeb
(
对于
VC,
生成
Debug
版本的文件
)
abld build wins urel
(
对于
VC,
生成
Release
版本的文件
)
abld build winsb udeb
(
对于
Borland C++,
生成
Debug
版本的文件
)
abld build winsb urel
(
对于
Borland C++,
生成
Release
版本的文件
)
abld build winscw udeb
(
对于
CodeWarrior,
生成
Debug
版本的文件
)
abld build winscw urel
(
对于
CodeWarrior,
生成
Release
版本的文件
)
abld build armi udeb
(
目标设备为
ARMV4i
架构
,
生成
Debug
版本的文件
)
abld build armi urel
(
目标设备为
ARMV4i
架构
,
生成
Release
版本的文件
)
abld build arm4 urel
(
目标设备为
ARMV4
架构
,
生成
Release
版本的文件
)
abld build thumb urel
(
目标设备为
ARM Thumb
架构
,
生成
Release
版本的文件
)
对于后三种命令
,
要搞明白的是
armi, arm4
和
Thumb
的区别
.
这其实是
ARM
架构的三种版本
. ARMI
架构下面的文件可在另外两种架构的系统中运行
,
这种架构的特点是最大程度上实现对设备的兼容性
. ARM4
则以增加代码大小为代价
,
获得了最佳的性能
.
而
Thumb
则以稍微降低程序的执行速度为代价来减小代码的大小
.
接下来要看的参数是
makefile.
从上面的信息可知这个参数是用来生成
IDE
所用的项目文件的
,
同样举例说明
:
abld makefile vc6
(
对于
VC,)
abld makefile cw_ide
(
对于
CodeWarrior)
目前会用到的参数就是这些
, CLEAN
也有可能用到
,
其他在需要的再说明
.