scons小结
scons是用python写的,据说是比make要方便很多,其实我都没写过makeFile......
1.安装
方式1:下载安装包安装,需要用python setup.py install去编译
方式2:sudo apt-get install scons(ubuntu)
2.使用
mkdir testscons
nano testscons.c
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 int main(int argc, char* argv[]) 5 { 6 printf("Hello, SCons!\n"); 7 return 0; 8 }
nano SConstruct
1 Program('helloscons.c')
scons
scons -c
自动将编译的内容删除
SConstruct
1 Program('test','helloscons.c') //将c文件编译成制定名称为test的执行文件
2 Program('test',Glob('*.c')) //一次编译所有的c文件
ps:暂时先总结这么多,用到了再写