SConscript revision 5471
17553SN/A# -*- mode:python -*- 27553SN/A 37553SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 47553SN/A# All rights reserved. 57553SN/A# 67553SN/A# Redistribution and use in source and binary forms, with or without 77553SN/A# modification, are permitted provided that the following conditions are 87553SN/A# met: redistributions of source code must retain the above copyright 97553SN/A# notice, this list of conditions and the following disclaimer; 107553SN/A# redistributions in binary form must reproduce the above copyright 117553SN/A# notice, this list of conditions and the following disclaimer in the 127553SN/A# documentation and/or other materials provided with the distribution; 137553SN/A# neither the name of the copyright holders nor the names of its 147553SN/A# contributors may be used to endorse or promote products derived from 157553SN/A# this software without specific prior written permission. 167553SN/A# 177553SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 187553SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 197553SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 207553SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 217553SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 227553SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 237553SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 247553SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 257553SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 267553SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 277553SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 287553SN/A# 297553SN/A# Authors: Steve Reinhardt 307553SN/A# Nathan Binkert 317553SN/A 327553SN/AImport('*') 3313892Sgabeblack@google.com 3413665Sandreas.sandberg@arm.comSource('swig/pyevent.cc') 357553SN/ASource('swig/pyobject.cc') 367553SN/A 377553SN/APySource('m5', 'm5/__init__.py') 389338SAndreas.Sandberg@arm.comPySource('m5', 'm5/SimObject.py') 397553SN/APySource('m5', 'm5/config.py') 408832SAli.Saidi@ARM.comPySource('m5', 'm5/convert.py') 417553SN/APySource('m5', 'm5/event.py') 427553SN/APySource('m5', 'm5/main.py') 437553SN/APySource('m5', 'm5/options.py') 449338SAndreas.Sandberg@arm.comPySource('m5', 'm5/params.py') 457553SN/APySource('m5', 'm5/proxy.py') 469365Snilay@cs.wisc.eduPySource('m5', 'm5/simulate.py') 479365Snilay@cs.wisc.eduPySource('m5', 'm5/smartdict.py') 489365Snilay@cs.wisc.eduPySource('m5', 'm5/stats.py') 497553SN/APySource('m5', 'm5/ticks.py') 507553SN/APySource('m5.util', 'm5/util/__init__.py') 517553SN/APySource('m5.util', 'm5/util/attrdict.py') 529338SAndreas.Sandberg@arm.comPySource('m5.util', 'm5/util/jobfile.py') 537553SN/APySource('m5.util', 'm5/util/misc.py') 547553SN/APySource('m5.util', 'm5/util/multidict.py') 5513892Sgabeblack@google.com 567553SN/ASwigSource('m5.internal', 'swig/core.i') 579338SAndreas.Sandberg@arm.comSwigSource('m5.internal', 'swig/debug.i') 588839Sandreas.hansson@arm.comSwigSource('m5.internal', 'swig/event.i') 597553SN/ASwigSource('m5.internal', 'swig/random.i') 607553SN/ASwigSource('m5.internal', 'swig/stats.i') 61SwigSource('m5.internal', 'swig/trace.i') 62PySource('m5.internal', 'm5/internal/__init__.py') 63