SConscript revision 11802:be62996c95d1
110779SCurtis.Dunham@arm.com# -*- mode:python -*-
210779SCurtis.Dunham@arm.com
310779SCurtis.Dunham@arm.com# Copyright (c) 2004-2005 The Regents of The University of Michigan
410779SCurtis.Dunham@arm.com# All rights reserved.
510779SCurtis.Dunham@arm.com#
610779SCurtis.Dunham@arm.com# Redistribution and use in source and binary forms, with or without
710779SCurtis.Dunham@arm.com# modification, are permitted provided that the following conditions are
810779SCurtis.Dunham@arm.com# met: redistributions of source code must retain the above copyright
910779SCurtis.Dunham@arm.com# notice, this list of conditions and the following disclaimer;
1010779SCurtis.Dunham@arm.com# redistributions in binary form must reproduce the above copyright
1110779SCurtis.Dunham@arm.com# notice, this list of conditions and the following disclaimer in the
1210779SCurtis.Dunham@arm.com# documentation and/or other materials provided with the distribution;
1310779SCurtis.Dunham@arm.com# neither the name of the copyright holders nor the names of its
1410779SCurtis.Dunham@arm.com# contributors may be used to endorse or promote products derived from
1510779SCurtis.Dunham@arm.com# this software without specific prior written permission.
1610779SCurtis.Dunham@arm.com#
1710779SCurtis.Dunham@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1810779SCurtis.Dunham@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1910779SCurtis.Dunham@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2010779SCurtis.Dunham@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2110779SCurtis.Dunham@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2210779SCurtis.Dunham@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2310779SCurtis.Dunham@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2410779SCurtis.Dunham@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2510779SCurtis.Dunham@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2610779SCurtis.Dunham@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2710779SCurtis.Dunham@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2810779SCurtis.Dunham@arm.com#
2910779SCurtis.Dunham@arm.com# Authors: Steve Reinhardt
3010779SCurtis.Dunham@arm.com#          Nathan Binkert
3110779SCurtis.Dunham@arm.com
3210779SCurtis.Dunham@arm.comImport('*')
3310779SCurtis.Dunham@arm.com
3410779SCurtis.Dunham@arm.comSource('swig/pyevent.cc', skip_no_python=True)
3510779SCurtis.Dunham@arm.comSource('swig/pyobject.cc', skip_no_python=True)
3610779SCurtis.Dunham@arm.com
3710779SCurtis.Dunham@arm.comPySource('', 'importer.py')
3810779SCurtis.Dunham@arm.comPySource('m5', 'm5/__init__.py')
3910779SCurtis.Dunham@arm.comPySource('m5', 'm5/SimObject.py')
4010779SCurtis.Dunham@arm.comPySource('m5', 'm5/config.py')
4110779SCurtis.Dunham@arm.comPySource('m5', 'm5/core.py')
4210779SCurtis.Dunham@arm.comPySource('m5', 'm5/debug.py')
4310779SCurtis.Dunham@arm.comPySource('m5', 'm5/event.py')
4410779SCurtis.Dunham@arm.comPySource('m5', 'm5/main.py')
4510779SCurtis.Dunham@arm.comPySource('m5', 'm5/options.py')
4610779SCurtis.Dunham@arm.comPySource('m5', 'm5/params.py')
4710779SCurtis.Dunham@arm.comPySource('m5', 'm5/proxy.py')
4810779SCurtis.Dunham@arm.comPySource('m5', 'm5/simulate.py')
4910779SCurtis.Dunham@arm.comPySource('m5', 'm5/ticks.py')
5010779SCurtis.Dunham@arm.comPySource('m5', 'm5/trace.py')
5110779SCurtis.Dunham@arm.comPySource('m5.objects', 'm5/objects/__init__.py')
5210779SCurtis.Dunham@arm.comPySource('m5.stats', 'm5/stats/__init__.py')
5310779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/__init__.py')
5410779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/attrdict.py')
5510779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/code_formatter.py')
5610779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/convert.py')
5710779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/dot_writer.py')
5810779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/grammar.py')
5910779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/jobfile.py')
6010779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/multidict.py')
6110779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/orderdict.py')
6210779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/smartdict.py')
6310779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/sorteddict.py')
6410779SCurtis.Dunham@arm.comPySource('m5.util', 'm5/util/terminal.py')
6510779SCurtis.Dunham@arm.com
6610779SCurtis.Dunham@arm.comPySource('_m5', '_m5/__init__.py')
6710779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/core.i')
6810779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/debug.i')
6910779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/drain.i')
7010779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/event.i')
7110779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/pyobject.i')
7210779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/range.i')
7310779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/serialize.i')
7410779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/stats.i')
7510779SCurtis.Dunham@arm.comSwigSource('_m5', 'swig/trace.i')
7610779SCurtis.Dunham@arm.comPySource('m5.internal', 'm5/internal/__init__.py')
7710779SCurtis.Dunham@arm.comPySource('m5.internal', 'm5/internal/params.py')
7810779SCurtis.Dunham@arm.com