SConscript revision 1046
11046SN/A# -*- mode:python -*- 21046SN/A 31762SN/A# Copyright (c) 2004 The Regents of The University of Michigan 41046SN/A# All rights reserved. 51046SN/A# 61046SN/A# Redistribution and use in source and binary forms, with or without 71046SN/A# modification, are permitted provided that the following conditions are 81046SN/A# met: redistributions of source code must retain the above copyright 91046SN/A# notice, this list of conditions and the following disclaimer; 101046SN/A# redistributions in binary form must reproduce the above copyright 111046SN/A# notice, this list of conditions and the following disclaimer in the 121046SN/A# documentation and/or other materials provided with the distribution; 131046SN/A# neither the name of the copyright holders nor the names of its 141046SN/A# contributors may be used to endorse or promote products derived from 151046SN/A# this software without specific prior written permission. 161046SN/A# 171046SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 181046SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 191046SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 201046SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 211046SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 221046SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 231046SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 241046SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 251046SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 261046SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 271046SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu 292665Ssaidi@eecs.umich.eduimport os 302665Ssaidi@eecs.umich.edu 311046SN/AImport('env', 'obj_desc_files') 321530SN/A 332655Sstever@eecs.umich.edumy_obj_desc_files = map(lambda x: '../../' + x, obj_desc_files) 342655Sstever@eecs.umich.edu 352655Sstever@eecs.umich.eduenv.Command('m5odescs.py', my_obj_desc_files, 362655Sstever@eecs.umich.edu '$TARGET.srcdir/load_odescs.py $_CPPDEFFLAGS $SOURCES $TARGET') 372655Sstever@eecs.umich.edu 381530SN/A# Python modules to encapsulate 391530SN/Astring_module_bases = Split('m5config m5configbase m5odescs') 401530SN/Astring_modules = map(lambda x: x + '_as_string.py', string_module_bases) 412655Sstever@eecs.umich.edu 421046SN/Afor m in string_module_bases: 432655Sstever@eecs.umich.edu env.Command(m + '_as_string.py', m + '.py', 442655Sstever@eecs.umich.edu '$TARGET.srcdir/make_string_module.py $SOURCE $TARGET') 452655Sstever@eecs.umich.edu 461046SN/Aembedded_py_files = Split('string_importer.py') + string_modules 472655Sstever@eecs.umich.edu 482655Sstever@eecs.umich.eduenv.Command('code.cc', embedded_py_files, 492655Sstever@eecs.umich.edu '$TARGET.srcdir/make_c_file.py pyconfig_code $SOURCES $TARGET') 502655Sstever@eecs.umich.edu 512655Sstever@eecs.umich.edu