SConscript revision 5470:ad060d1f1037
112950Sgabeblack@google.com# -*- mode:python -*-
212950Sgabeblack@google.com
312950Sgabeblack@google.com# Copyright (c) 2004-2005 The Regents of The University of Michigan
412950Sgabeblack@google.com# All rights reserved.
512950Sgabeblack@google.com#
612950Sgabeblack@google.com# Redistribution and use in source and binary forms, with or without
712950Sgabeblack@google.com# modification, are permitted provided that the following conditions are
812950Sgabeblack@google.com# met: redistributions of source code must retain the above copyright
912950Sgabeblack@google.com# notice, this list of conditions and the following disclaimer;
1012950Sgabeblack@google.com# redistributions in binary form must reproduce the above copyright
1112950Sgabeblack@google.com# notice, this list of conditions and the following disclaimer in the
1212950Sgabeblack@google.com# documentation and/or other materials provided with the distribution;
1312950Sgabeblack@google.com# neither the name of the copyright holders nor the names of its
1412950Sgabeblack@google.com# contributors may be used to endorse or promote products derived from
1512950Sgabeblack@google.com# this software without specific prior written permission.
1612950Sgabeblack@google.com#
1712950Sgabeblack@google.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1812950Sgabeblack@google.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1912950Sgabeblack@google.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2012950Sgabeblack@google.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2112950Sgabeblack@google.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2212950Sgabeblack@google.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2312950Sgabeblack@google.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2412950Sgabeblack@google.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2512950Sgabeblack@google.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2612950Sgabeblack@google.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2712950Sgabeblack@google.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2812950Sgabeblack@google.com#
2912950Sgabeblack@google.com# Authors: Steve Reinhardt
3012950Sgabeblack@google.com#          Nathan Binkert
3112950Sgabeblack@google.com
3212988Sgabeblack@google.comImport('*')
3313268Sgabeblack@google.com
3412988Sgabeblack@google.comSource('swig/pyevent.cc')
3512950Sgabeblack@google.comSource('swig/pyobject.cc')
3613127Sgabeblack@google.com
3712950Sgabeblack@google.comPySource('m5', 'm5/__init__.py')
3812953Sgabeblack@google.comPySource('m5', 'm5/SimObject.py')
3913161Sgabeblack@google.comPySource('m5', 'm5/convert.py')
4012950Sgabeblack@google.comPySource('m5', 'm5/event.py')
4112950Sgabeblack@google.comPySource('m5', 'm5/main.py')
4212950Sgabeblack@google.comPySource('m5', 'm5/options.py')
4312950Sgabeblack@google.comPySource('m5', 'm5/params.py')
4412950Sgabeblack@google.comPySource('m5', 'm5/proxy.py')
4512950Sgabeblack@google.comPySource('m5', 'm5/simulate.py')
4612950Sgabeblack@google.comPySource('m5', 'm5/smartdict.py')
4712950Sgabeblack@google.comPySource('m5', 'm5/stats.py')
4812950Sgabeblack@google.comPySource('m5', 'm5/ticks.py')
4912950Sgabeblack@google.comPySource('m5.util', 'm5/util/__init__.py')
5012950Sgabeblack@google.comPySource('m5.util', 'm5/util/attrdict.py')
5112950Sgabeblack@google.comPySource('m5.util', 'm5/util/jobfile.py')
5212950Sgabeblack@google.comPySource('m5.util', 'm5/util/misc.py')
5312950Sgabeblack@google.comPySource('m5.util', 'm5/util/multidict.py')
5412950Sgabeblack@google.com
5512950Sgabeblack@google.comSwigSource('m5.internal', 'swig/core.i')
5612950Sgabeblack@google.comSwigSource('m5.internal', 'swig/debug.i')
5712950Sgabeblack@google.comSwigSource('m5.internal', 'swig/event.i')
5812950Sgabeblack@google.comSwigSource('m5.internal', 'swig/random.i')
5912950Sgabeblack@google.comSwigSource('m5.internal', 'swig/stats.i')
6012950Sgabeblack@google.comSwigSource('m5.internal', 'swig/trace.i')
6112950Sgabeblack@google.comPySource('m5.internal', 'm5/internal/__init__.py')
6212950Sgabeblack@google.com