[wiki:../ 상위 섹션으로 가기] -- [김도집] [[DateTime(2005-11-02T00:50:50)]] [[TableOfContents]] = SCons = == 간단한 빌드 == hello.c라는 파일명으로 다음 소스 코드를 작성한다. {{{ int main(void) { printf("hello world\n"); return 0; } }}} SConstruct 라는 파일명으로 다음 내용을 작성한다. {{{ Program('hello.c') }}} 이제 쉘에서 {{{scons}}}를 실행하면 다음과 같은 결과 메시지가 출력될 것이다. {{{ greendrm@devil:~/imsi/scons/simple_ex_01$ scons scons: Reading SConscript files ... scons: done reading SConscript files. scons: Building targets ... gcc -c -o hello.o hello.c gcc -o hello hello.o scons: done building targets. }}} 아주 간단하게 {{{hello}}}라는 실행파일을 빌드 하는데 성공했다. ^^