2007-07-02 05:27:20 +02:00
|
|
|
# -*- python -*-
|
|
|
|
|
##
|
|
|
|
|
## SConscript - SCons buildscript for tool subdirectory (called by SConstruct)
|
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
Import('env','artifacts')
|
|
|
|
|
|
|
|
|
|
# build the ubiquitous Hello World application (note: C source)
|
2007-07-02 11:38:46 +02:00
|
|
|
artifacts['tools'] = env.Program('#$BINDIR/hello-world','hello.c')
|
2007-07-02 05:27:20 +02:00
|
|
|
|