1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
|
#################################################
#
# SConstruct makefile for Second Life viewer
# and servers.
#
# To build everything:
#
# scons ARCH=all BTARGET=all DISTCC=yes
#
# For help on options:
#
# scons -h
#
# Written by Tom Yedwab, 6/2006.
#
#################################################
import os
import sys
import glob
platform = sys.platform
if platform == 'linux2':
platform = 'linux'
######################
# GET VERSION #
######################
pipe = os.popen('grep LL_VERSION_MAJOR llcommon/llversion.h | sed \'s/.*=//; s/[^0-9]*//g\'')
version_major = pipe.read().rstrip('\n')
pipe.close()
pipe = os.popen('grep LL_VERSION_MINOR llcommon/llversion.h | sed \'s/.*=//; s/[^0-9]*//g\'')
version_minor = pipe.read().rstrip('\n')
pipe.close()
pipe = os.popen('grep LL_VERSION_PATCH llcommon/llversion.h | sed \'s/.*=//; s/[^0-9]*//g\'')
version_patch = pipe.read().rstrip('\n')
pipe.close()
pipe = os.popen('grep LL_VERSION_BUILD llcommon/llversion.h | sed \'s/.*=//; s/[^0-9]*//g\'')
version_build = pipe.read().rstrip('\n')
pipe.close()
#########################
# COMMAND LINE OPTIONS #
#########################
opts = Options()
opts.Add(EnumOption('BUILD', 'Set build type', 'releasefordownload',
allowed_values=('debug', 'release', 'releasenoopt', 'releasefordownload')))
opts.Add(EnumOption('ARCH', 'Set architecture', 'i686',
allowed_values=('i686', 'powerpc', 'x86_64')))
opts.Add(EnumOption('BTARGET', 'Set build target', 'server',
allowed_values=('client', 'server', 'all')))
opts.Add(EnumOption('DISTCC', 'Enabled distcc', 'yes',
allowed_values=('yes', 'no')))
opts.Add(EnumOption('COLORGCC', 'Enabled colorgcc', 'yes',
allowed_values=('yes', 'no')))
opts.Add(EnumOption('GRID', 'Client package\'s default grid', 'default',
allowed_values=('default', 'aditi', 'agni', 'dmz', 'durga', 'ganga', 'shakti', 'siva', 'soma', 'uma', 'vaak')))
opts.Add(EnumOption('OPENSOURCE', 'Build using only non-proprietary dependencies',
'yes',# OPENSOURCE: do not edit this line
allowed_values=('yes', 'no')))
helpenv = Environment(options = opts)
Help(opts.GenerateHelpText(helpenv))
build_param = ARGUMENTS.get('BUILD', 'releasefordownload')
arch = ARGUMENTS.get('ARCH', 'i686')
target_param = ARGUMENTS.get('BTARGET', 'server')
enable_distcc = ARGUMENTS.get('DISTCC', 'yes')
enable_colorgcc = ARGUMENTS.get('COLORGCC', 'yes')
grid = ARGUMENTS.get('GRID', 'default')
# OPENSOURCE: do not edit the following line:
opensource = ARGUMENTS.get('OPENSOURCE', 'yes')
targets = [ target_param ]
if target_param == 'all':
targets = [ 'client', 'server' ]
#####################
# ITERATE TARGETS #
#####################
for build_target in targets:
buildtype = build_param
if build_target == 'server' and buildtype == 'releasefordownload':
buildtype = 'release'
system_str = arch + '-' + platform
print 'Building ' + build_target + ' ' + version_major + '.' + version_minor + '.' + version_patch + '.' + version_build + ' on ' + system_str + ' (' + buildtype + ')'
system_lib_dir = '../libraries/' + system_str
if build_target == 'client':
system_lib_dir += '/lib_release_client'
elif buildtype == 'debug':
system_lib_dir += '/lib_debug'
else:
system_lib_dir += '/lib_release'
lib_dir = './lib_' + buildtype + '_' + build_target + '/' + system_str
try:
build_dir_prefix = os.environ['TEMP_BUILD_DIR']
except:
build_dir_prefix = '/tmp/' + os.environ['USER']
build_dir = build_dir_prefix + os.getcwd() + '/' + system_str + '-' + build_target + '-' + buildtype
### Base include directories ###
include_dirs = Split("""
./llcommon ./llmath ./llwindow ./llaudio ./llcharacter
./lldatabase ./llhavok ./llimage ./llinventory ./llmedia ./llmessage
./llprimitive ./llrender ./llscene ./llui ./llvfs ./llwindow
./llxml ./lscript
../libraries/include
../libraries/include/havok
""" +
'../libraries/' + system_str + '/include' )
client_external_libs = []
system_link_flags = ''
if platform != 'linux' and build_target == 'client':
### Mozilla include directories ###
mozilla_dir = '../libraries/' + system_str + '/include/mozilla'
include_dirs += Split(
mozilla_dir + '/include/webbrwsr ' +
mozilla_dir + '/include/docshell ' +
mozilla_dir + '/include/dom ' +
mozilla_dir + '/include/xpcom ' +
mozilla_dir + '/include/widget ' +
mozilla_dir + '/include/gfx ' +
mozilla_dir + '/include/string ' +
mozilla_dir + '/include/uriloader ' +
mozilla_dir + '/include/view ' +
mozilla_dir + '/include/layout ' +
mozilla_dir + '/include/content ' +
mozilla_dir + '/include/locale ' +
mozilla_dir + '/include/profdirserviceprovider ' +
mozilla_dir + '/include/xulapp ' +
mozilla_dir + '/include/pref ' +
mozilla_dir + '/sdk/include')
##############
# CPP Flags #
##############
# Generic GCC flags
flags = '-g -pipe -Wall -Wno-trigraphs '
if opensource == 'yes':
flags += '-DLL_USE_KDU=0 '
else:
flags += '-DLL_USE_KDU=1 '
if build_target == 'server':
# Server flags
flags += '-march=pentiumpro -D_GNU_SOURCE -ftemplate-depth-60 -DLL_MESA_HEADLESS=1 -DLL_MESA=1 '
try:
server_cppflags = os.environ['SERVER_CPPFLAGS']
except:
server_cppflags = ''
flags += server_cppflags + ' '
else:
# Viewer flags
flags += '-falign-loops=16 -fno-math-errno -fexceptions -fsigned-char -fno-strict-aliasing -ffast-math '
flags += '-DLL_MESA_HEADLESS=0 -DLL_MESA=0 '
try:
client_cppflags = os.environ['CLIENT_CPPFLAGS']
except:
client_cppflags = ''
flags += client_cppflags + ' '
if platform == 'linux':
# Linux-only flags
flags += '-DLL_LINUX=1 '
system_link_flags += '-Wl,--version-script=newview/linux_tools/hidesymbols.ver '
if build_target == 'client':
flags += '-DAPPID=secondlife -DLL_SDL=1 -DLL_X11=1 '
flags += '-DLL_GTK=1 '
client_external_libs += [ 'gtk-x11-2.0', 'elfio' ]
include_dirs += [ '../libraries/' + system_str + '/include/gtk-2.0' ]
include_dirs += [ '../libraries/' + system_str + '/include/glib-2.0']
include_dirs += [ '../libraries/' + system_str + '/include/pango-1.0' ]
include_dirs += [ '../libraries/' + system_str + '/include/atk-1.0' ]
include_dirs += [ '../libraries/' + system_str + '/include/ELFIO' ]
include_dirs += [ '../libraries/' + system_str + '/include/llfreetype2' ]
else:
# Mac-only flags
flags += '-x c++ -arch ppc -pipe -Wno-trigraphs -fpascal-strings -faltivec -fasm-blocks -g -O2 -fmessage-length=0 -mtune=G4 -Wno-deprecated-declarations -Wno-invalid-offsetof -mmacosx-version-min=10.3 -DLL_DARWIN=1 -Wmost -Wno-sign-compare -Wno-switch -fpch-preprocess -F./newview/build/Deployment -fconstant-cfstrings -ffor-scope -Wno-reorder -isysroot /Developer/SDKs/MacOSX10.3.9.sdk '
### Build type-specific flags ###
debug_opts = flags + '-fno-inline -O0 -D_DEBUG -DLL_DEBUG=1 '
release_opts = flags + '-O2 -DNDEBUG -DLL_RELEASE=1 '
releasenoopt_opts = flags + '-O0 -DNDEBUG -DLL_RELEASE=1 '
releasefordownload_opts = flags + '-O2 -DNDEBUG -DLL_RELEASE=1 -DLL_RELEASE_FOR_DOWNLOAD=1 '
################
# ENVIRONMENT #
################
gcc_bin = 'g++-3.4'
# If you strip more aggressively than -S then the quality of crash-
# logger backtraces deteriorates.
strip_cmd = 'strip -S -o $TARGET $SOURCE'
if build_target != 'client':
gcc_bin = 'g++-3.3'
if arch == 'x86_64':
gcc_bin = '/opt/crosstool/gcc-4.0.2-glibc-2.3.6/x86_64-unknown-linux-gnu/bin/x86_64-unknown-linux-gnu-gcc'
strip_cmd = '/opt/crosstool/gcc-4.0.2-glibc-2.3.6/x86_64-unknown-linux-gnu/x86_64-unknown-linux-gnu/bin/strip -S -o $TARGET $SOURCE'
compiler = gcc_bin
compiler_no_distcc = compiler
if enable_distcc == 'yes':
compiler = 'distcc ' + gcc_bin
base_env = Environment(CXX = compiler,
CPPPATH = include_dirs,
LIBPATH = [lib_dir] + [system_lib_dir],
LINKFLAGS = system_link_flags + '--no-keep-memory --reduce-memory-overheads ' )
### Environments for various build types ###
env = base_env.Copy(CPPFLAGS = releasefordownload_opts)
if buildtype == 'debug':
env = base_env.Copy(CPPFLAGS = debug_opts)
if buildtype == 'release':
env = base_env.Copy(CPPFLAGS = release_opts)
if buildtype == 'releasenoopt':
env = base_env.Copy(CPPFLAGS = releasenoopt_opts)
# ccache needs this to be set
try:
env['ENV']['CCACHE_DIR'] = os.environ['CCACHE_DIR']
except:
print "No CCACHE_DIR set."
env_no_distcc = env.Copy(CXX = compiler_no_distcc)
### Distributed build hosts ###
if enable_distcc == 'yes':
hosts = 'localhost/2 station9.lindenlab.com,lzo station7.lindenlab.com,lzo station6.lindenlab.com,lzo station11.lindenlab.com,lzo station5.lindenlab.com,lzo station15.lindenlab.com,lzo station10.lindenlab.com,lzo station13.lindenlab.com,lzo station12.lindenlab.com,lzo'
if arch == 'x86_64':
hosts = 'localhost'
print "Distributing to hosts: " + hosts
env['ENV']['DISTCC_HOSTS'] = hosts
env['ENV']['USER'] = os.environ['USER']
env['ENV']['HOME'] = os.environ['HOME']
if enable_colorgcc == 'yes':
env['ENV']['PATH'] = os.environ['PATH']
env['ENV']['TERM'] = os.environ['TERM']
env['ENV']['HOME'] = os.environ['HOME']
### Configure lex and yacc ###
env.Append(YACCFLAGS = ["-v", "-d"])
env.CFile(target=build_dir+'/lscript/lscript_compile/indra.l.cpp', source='lscript/lscript_compile/indra.l')
env.CFile(target=build_dir+'/lscript/lscript_compile/indra.y.c', source='lscript/lscript_compile/indra.y')
env.Command(build_dir+'/lscript/lscript_compile/indra.y.cpp',build_dir+'/lscript/lscript_compile/indra.y.c',
[Move('$TARGET','$SOURCE'),Delete(build_dir+'/lscript/lscript_compile/indra.y.output')])
#####################
# HELPER FUNCTIONS #
#####################
### Load a files.lst and files.PLATFORM.lst for each module ###
def load_files(module):
new_list = []
try:
list_file = open('./' + module + '/files.lst', 'r')
list = Split(list_file.read())
for x in list:
file = os.path.join(build_dir, x)
if x == 'newsim/lltask.cpp':
print 'Found lltask!'
obj = env_no_distcc.Object(file)
new_list.append(obj)
else:
new_list.append(file)
list_file.close()
except IOError:
print 'Error: no files.lst exists for module ' + module
return []
try:
platform_list_file = open('./' + module + '/files.' + platform + '.lst', 'r')
list = Split(platform_list_file.read())
for x in list:
file = os.path.join(build_dir, x)
new_list.append(file)
platform_list_file.close()
except IOError:
return new_list
return new_list
### Create a static library from the module ###
def create_static_module_from_dir(input_dir, mod_name, local_flags="", extra_depends=None):
files_list = load_files(input_dir)
BuildDir(build_dir + '/' + input_dir, input_dir)
local_env = env.Copy(CPPFLAGS = env['CPPFLAGS'] + ' ' + local_flags)
if extra_depends:
for x in files_list:
Depends(local_env.Object(x), extra_depends)
tgt = local_env.StaticLibrary(lib_dir + '/' + mod_name, files_list)
Default(tgt)
def create_static_module(module, local_flags="", extra_depends=None):
create_static_module_from_dir(module, module, local_flags, extra_depends)
def create_dynamic_module(module, local_flags="", module_libs = None):
files_list = load_files(module)
BuildDir(build_dir + '/' + module, module)
local_env = env.Copy(CPPFLAGS = env['CPPFLAGS'] + ' ' + local_flags)
tgt = local_env.SharedLibrary(lib_dir + '/' + module, files_list, LIBS = module_libs)
Default(tgt)
### Create an executable from the module ###
def create_executable(exec_file, module, module_libs):
files_list = load_files(module)
BuildDir(build_dir + '/' + module, module)
tgt = env.Program(exec_file, files_list, LIBS = module_libs)
Default(tgt)
####################
# BUILD LIBRARIES #
####################
create_static_module('llcommon')
create_static_module('llmath')
create_static_module('llmessage')
create_static_module('llvfs')
create_static_module('llimage')
create_static_module('llinventory')
create_static_module('llcharacter')
create_static_module('llprimitive')
create_static_module('llrender')
create_static_module('llwindow')
create_static_module('llxml')
create_static_module('lscript', extra_depends=build_dir + '/lscript/lscript_compile/indra.y.h')
net_external_libs = [ 'curl', 'ssl', 'crypto', 'aprutil-1', 'apr-1' ]
common_external_libs = net_external_libs + [ 'xmlrpc', 'expat', 'z' ]
if build_target == 'client':
if platform == 'linux':
#############################
# BUILD LINUX_CRASH_LOGGER #
#############################
output_crashlogger_bin = 'linux_crash_logger/linux-crash-logger-' + arch + '-bin'
external_libs = net_external_libs + [ 'db-4.2', 'gtk-x11-2.0' ]
internal_libs = [ 'llvfs', 'llmath', 'llcommon' ]
create_executable(output_crashlogger_bin, 'linux_crash_logger', internal_libs + external_libs)
create_static_module('llaudio')
create_static_module('llmedia')
create_static_module('llui')
create_static_module('llimagej2coj')
if opensource == 'no':
create_dynamic_module('llkdu', '', ['llimage', 'llvfs', 'llmath', 'llcommon', 'apr-1', 'kdu_v42R'])
##################
# BUILD NEWVIEW #
##################
output_bin = 'newview/secondlife-' + arch + '-bin'
external_libs = client_external_libs + common_external_libs + [ 'freetype', 'jpeg', 'SDL', 'GL', 'GLU', 'ogg', 'vorbisenc', 'vorbisfile', 'vorbis', 'fmod-3.75', 'db-4.2', 'openjpeg' ]
internal_libs = [ 'lscript', 'llwindow', 'llrender', 'llprimitive',
'llmedia', 'llinventory',
'llimage', 'llimagej2coj',
'llcharacter', 'llaudio', 'llui', 'llxml',
'llmessage', 'llvfs', 'llmath', 'llcommon' ]
create_executable(output_bin, 'newview', internal_libs + external_libs)
if buildtype == 'releasefordownload':
#######################
# PACKAGE THE CLIENT #
#######################
if platform == 'linux':
env.Command(output_bin + '-stripped', output_bin, strip_cmd)
env.Command(output_crashlogger_bin + '-stripped', output_crashlogger_bin, strip_cmd)
manifest_file = 'linux_tools/client-manifest-' + arch
product_name = 'SecondLife_' + arch + '_' + version_major + "_" + version_minor + "_" + version_patch + "_" + version_build
if grid != 'default':
product_name += "_" + grid.upper()
package_name = product_name + '.tar.bz2'
cmd = 'rm -rf newview/' + product_name + '* && newview/linux_tools/package-client.sh ' + manifest_file + ' ' + product_name + ' ' + grid
env.Command('newview/' + package_name, 'newview/' + manifest_file, cmd)
Depends('newview/' + package_name, output_bin + '-stripped')
Depends('newview/' + package_name, output_crashlogger_bin + '-stripped')
Default('newview/' + package_name)
elif build_target == 'server':
create_static_module('lldatabase')
create_static_module('llscene')
create_static_module('llhavok', '-fno-exceptions -fno-rtti')
create_static_module_from_dir('llkdu', 'llkdustatic')
# This makes sure we only build the release llpython. The
# debug one is difficult to use.
if buildtype == 'release':
create_dynamic_module(
'tools/llpython',
'-I/usr/include/python2.3',
['llmessage', 'llvfs', 'llmath', 'llcommon',
'boost_python-gcc', 'apr-1'])
env.Command('lib/python/indra/llpython.so', lib_dir + '/tools/libllpython.so', 'cp -u $SOURCE $TARGET')
Default('lib/python/indra/llpython.so')
##################
# BUILD SERVERS #
##################
file_suffix = ''
if buildtype == 'debug':
file_suffix = '_debug'
common_external_libs += [ 'pthread' ]
# Chatter test application
external_libs = common_external_libs
internal_libs = [ 'llmessage', 'llvfs', 'llmath', 'llcommon' ]
create_executable('test_apps/chatter/chatter', 'test_apps/chatter',
internal_libs + external_libs)
# Tool to buffer all of standard input to memory.
create_executable('tools/simbin2xml/buffer_file/buffer_file',
'tools/simbin2xml/buffer_file', "")
# Simstate binary to XML utility.
external_libs = common_external_libs
internal_libs = [ 'llxml', 'llcommon', 'llmath' ]
create_executable('tools/simbin2xml/simbin2xml', 'tools/simbin2xml',
internal_libs + external_libs)
# Launcher
external_libs = common_external_libs
internal_libs = [ 'llmessage', 'llvfs', 'llmath', 'llcommon' ]
create_executable('launcher/launcher' + file_suffix, 'launcher',
internal_libs + external_libs)
# Dataserver
Depends('dataserver/dataserver', 'launcher/launcher' + file_suffix)
external_libs = common_external_libs + ['boost_regex-gcc-mt', 'mysqlclient']
internal_libs = [ 'llcharacter', 'lldatabase', 'llimage', 'llinventory',
'llscene', 'llmessage', 'llvfs', 'llxml', 'llcommon', 'llmath' ]
create_executable('dataserver/dataserver' + file_suffix, 'dataserver',
internal_libs + external_libs)
# Spaceserver
Depends('newspace/spaceserver', 'dataserver/dataserver' + file_suffix)
external_libs = common_external_libs + ['expat', 'aprutil-1', 'mysqlclient']
internal_libs = ['llscene', 'lldatabase', 'llmessage', 'llvfs',
'llmath', 'llcommon']
create_executable('newspace/spaceserver' + file_suffix, 'newspace',
internal_libs + external_libs)
# Userserver
Depends('userserver/userserver', 'newspace/spaceserver' + file_suffix)
external_libs = common_external_libs
internal_libs = ['llinventory', 'llscene', 'llmessage', 'llvfs',
'llxml', 'llmath', 'llcommon']
create_executable('userserver/userserver' + file_suffix, 'userserver',
internal_libs + external_libs)
# Rpcserver
Depends('rpcserver/rpcserver', 'userserver/userserver' + file_suffix)
external_libs = common_external_libs + ['xmlrpc', 'expat', 'aprutil-1',
'mysqlclient']
internal_libs = ['llscene', 'llmessage', 'lldatabase', 'llvfs',
'llmath', 'llcommon']
create_executable('rpcserver/rpcserver' + file_suffix, 'rpcserver',
internal_libs + external_libs)
# Mapserver
Depends('mapserver/mapserver', 'rpcserver/rpcserver' + file_suffix)
external_libs = common_external_libs + ['apr-1', 'aprutil-1', 'OSMesa16', 'kdu',
'boost_regex-gcc-mt', 'iconv', 'jpeg', 'GL',
'mysqlclient', 'pthread', 'dl']
internal_libs = ['llrender', 'llwindow', 'llimage', 'lldatabase', 'llprimitive', 'llmessage', 'llkdustatic',
'llxml', 'llvfs', 'llmath', 'llcommon']
create_executable('mapserver/mapserver' + file_suffix, 'mapserver',
internal_libs + external_libs)
# Simulator
Depends('newsim/simulator' + file_suffix, 'mapserver/mapserver' + file_suffix)
external_libs = common_external_libs + ['hkdynamics', 'hkgeometry', 'hkmath', 'hkbase', 'hkcollide', 'hkactions', 'apr-1', 'aprutil-1', 'boost_regex-gcc-mt', 'dl', 'kdu', 'mysqlclient', 'iconv']
internal_libs = [ 'lscript', 'llprimitive',
'llscene', 'llhavok', 'llinventory', 'llimage',
'llcharacter', 'llxml', 'lldatabase', 'llkdustatic',
'llmessage', 'llvfs', 'llmath', 'llcommon' ]
create_executable('newsim/simulator' + file_suffix, 'newsim',
internal_libs + external_libs)
# Test
Depends('test/test', 'newsim/simulator' + file_suffix)
external_libs = common_external_libs + ['mysqlclient']
internal_libs = [ 'lldatabase', 'llinventory', 'llmessage', 'llxml',
'llvfs', 'llmath', 'llcommon' ]
create_executable('test/test' + file_suffix, 'test',
internal_libs + external_libs)
# Run test. foo_target is never actually built, so this test always happens.
test_results_file = 'test/test_results' + file_suffix + '.txt'
env.Command('foo_target', 'test/test' + file_suffix, "$SOURCE 1>"
+ test_results_file + " 2>&1; "
+ "sed -n '/^Total Tests/,$ p' " + test_results_file)
Depends('foo_target', 'test/test' + file_suffix)
Default('foo_target')
#########
# DONE #
#########
|