openwrt 编译单个包命令
0、细节
<package> 包名,为Makefile所在文件夹名
1、下载包
make package/<package>/download V=99
2、准备包
make package/<name>/prepare V=99
包内.prepared_*文件是是否configure过的记录文件,删除可重新prepare
3、配置包
make package/<name>/configure V=99
包内.configured_*文件是是否configure过的记录文件,删除可重新configure
4、编译包
make package/<package>/compile V=99
5、编译包的host版本
make package/<package>/host/compile V=99