SConscript (5456:9e1f352d6761) | SConscript (5461:943f436efe9b) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 320 unchanged lines hidden (view full) --- 329PySource('m5', 'base/traceflags.py') 330 331env.Command('base/traceflags.hh', flags, generate.traceFlagsHH) 332env.Command('base/traceflags.cc', flags, generate.traceFlagsCC) 333Source('base/traceflags.cc') 334 335# Generate program_info.cc 336env.Command('base/program_info.cc', | 1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 320 unchanged lines hidden (view full) --- 329PySource('m5', 'base/traceflags.py') 330 331env.Command('base/traceflags.hh', flags, generate.traceFlagsHH) 332env.Command('base/traceflags.cc', flags, generate.traceFlagsCC) 333Source('base/traceflags.cc') 334 335# Generate program_info.cc 336env.Command('base/program_info.cc', |
337 Value(str(SCons.Node.FS.default_fs.SConstruct_dir)), generate.programInfo) | 337 Value(str(SCons.Node.FS.default_fs.SConstruct_dir)), 338 generate.programInfo) |
338 339# Build the zip file 340py_compiled = [] 341py_zip_depends = [] 342for source in py_sources: 343 env.Command(source.compiled, source.source, generate.compilePyFile) 344 py_compiled.append(source.compiled) 345 --- 108 unchanged lines hidden --- | 339 340# Build the zip file 341py_compiled = [] 342py_zip_depends = [] 343for source in py_sources: 344 env.Command(source.compiled, source.source, generate.compilePyFile) 345 py_compiled.append(source.compiled) 346 --- 108 unchanged lines hidden --- |