SConscript revision 6500:ee7587e7c71d
12023SN/A# -*- mode:python -*- 22023SN/A 32023SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 42023SN/A# All rights reserved. 52023SN/A# 62023SN/A# Redistribution and use in source and binary forms, with or without 72023SN/A# modification, are permitted provided that the following conditions are 82023SN/A# met: redistributions of source code must retain the above copyright 92023SN/A# notice, this list of conditions and the following disclaimer; 102023SN/A# redistributions in binary form must reproduce the above copyright 112023SN/A# notice, this list of conditions and the following disclaimer in the 122023SN/A# documentation and/or other materials provided with the distribution; 132023SN/A# neither the name of the copyright holders nor the names of its 142023SN/A# contributors may be used to endorse or promote products derived from 152023SN/A# this software without specific prior written permission. 162023SN/A# 172023SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 182023SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 192023SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 202023SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 212023SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 222023SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 232023SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 242023SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 252023SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 262023SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 272023SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 282665Ssaidi@eecs.umich.edu# 292665Ssaidi@eecs.umich.edu# Authors: Steve Reinhardt 302665Ssaidi@eecs.umich.edu# Nathan Binkert 312023SN/A 324202Sbinkertn@umich.eduImport('*') 332023SN/A 344202Sbinkertn@umich.eduSource('swig/pyevent.cc') 359022Sgblack@eecs.umich.eduSource('swig/pyobject.cc') 364997Sgblack@eecs.umich.edu 374202Sbinkertn@umich.eduPySource('', 'importer.py') 388780Sgblack@eecs.umich.eduPySource('m5', 'm5/__init__.py') 398780Sgblack@eecs.umich.eduPySource('m5', 'm5/SimObject.py') 408745Sgblack@eecs.umich.eduPySource('m5', 'm5/config.py') 414997Sgblack@eecs.umich.eduPySource('m5', 'm5/convert.py') 426313Sgblack@eecs.umich.eduPySource('m5', 'm5/core.py') 438777Sgblack@eecs.umich.eduPySource('m5', 'm5/debug.py') 448780Sgblack@eecs.umich.eduPySource('m5', 'm5/event.py') 458780Sgblack@eecs.umich.eduPySource('m5', 'm5/main.py') 468780Sgblack@eecs.umich.eduPySource('m5', 'm5/options.py') 478777Sgblack@eecs.umich.eduPySource('m5', 'm5/params.py') 484997Sgblack@eecs.umich.eduPySource('m5', 'm5/proxy.py') 498780Sgblack@eecs.umich.eduPySource('m5', 'm5/simulate.py') 506327Sgblack@eecs.umich.eduPySource('m5', 'm5/smartdict.py') 514202Sbinkertn@umich.eduPySource('m5', 'm5/stats.py') 528777Sgblack@eecs.umich.eduPySource('m5', 'm5/ticks.py') 538780Sgblack@eecs.umich.eduPySource('m5', 'm5/trace.py') 544997Sgblack@eecs.umich.eduPySource('m5.util', 'm5/util/__init__.py') 554826Ssaidi@eecs.umich.eduPySource('m5.util', 'm5/util/attrdict.py') 568755Sgblack@eecs.umich.eduPySource('m5.util', 'm5/util/jobfile.py') 572023SN/APySource('m5.util', 'm5/util/misc.py') 588745Sgblack@eecs.umich.eduPySource('m5.util', 'm5/util/multidict.py') 599384SAndreas.Sandberg@arm.comPySource('m5.util', 'm5/util/orderdict.py') 608780Sgblack@eecs.umich.edu 614997Sgblack@eecs.umich.eduSwigSource('m5.internal', 'swig/core.i') 624997Sgblack@eecs.umich.eduSwigSource('m5.internal', 'swig/debug.i') 634202Sbinkertn@umich.eduSwigSource('m5.internal', 'swig/event.i') 6412222Sgabeblack@google.comSwigSource('m5.internal', 'swig/random.i') 65SwigSource('m5.internal', 'swig/stats.i') 66SwigSource('m5.internal', 'swig/trace.i') 67PySource('m5.internal', 'm5/internal/__init__.py') 68