SConscript revision 6654:4c84e771cca7
17860SN/A# -*- mode:python -*-
27860SN/A
37860SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan
49988Snilay@cs.wisc.edu# All rights reserved.
58825Snilay@cs.wisc.edu#
69988Snilay@cs.wisc.edu# Redistribution and use in source and binary forms, with or without
77935SN/A# modification, are permitted provided that the following conditions are
87935SN/A# met: redistributions of source code must retain the above copyright
97935SN/A# notice, this list of conditions and the following disclaimer;
107860SN/A# redistributions in binary form must reproduce the above copyright
117860SN/A# notice, this list of conditions and the following disclaimer in the
127860SN/A# documentation and/or other materials provided with the distribution;
139885Sstever@gmail.com# neither the name of the copyright holders nor the names of its
148825Snilay@cs.wisc.edu# contributors may be used to endorse or promote products derived from
159885Sstever@gmail.com# this software without specific prior written permission.
169885Sstever@gmail.com#
179988Snilay@cs.wisc.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
188825Snilay@cs.wisc.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
198825Snilay@cs.wisc.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
208825Snilay@cs.wisc.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2110038SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
229449SAli.Saidi@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
239449SAli.Saidi@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
248464SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
258721SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
268825Snilay@cs.wisc.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
278825Snilay@cs.wisc.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
287935SN/A#
297935SN/A# Authors: Steve Reinhardt
307935SN/A#          Nathan Binkert
317935SN/A
327935SN/AImport('*')
337935SN/A
347935SN/ASource('swig/pyevent.cc')
358893Ssaidi@eecs.umich.eduSource('swig/pyobject.cc')
367860SN/A
379885Sstever@gmail.comPySource('', 'importer.py')
389885Sstever@gmail.comPySource('m5', 'm5/__init__.py')
399885Sstever@gmail.comPySource('m5', 'm5/SimObject.py')
409988Snilay@cs.wisc.eduPySource('m5', 'm5/config.py')
419885Sstever@gmail.comPySource('m5', 'm5/core.py')
429885Sstever@gmail.comPySource('m5', 'm5/debug.py')
437860SN/APySource('m5', 'm5/event.py')
447860SN/APySource('m5', 'm5/main.py')
4510038SAli.Saidi@ARM.comPySource('m5', 'm5/options.py')
467860SN/APySource('m5', 'm5/params.py')
477860SN/APySource('m5', 'm5/proxy.py')
488210SN/APySource('m5', 'm5/simulate.py')
498210SN/APySource('m5', 'm5/stats.py')
507860SN/APySource('m5', 'm5/ticks.py')
517860SN/APySource('m5', 'm5/trace.py')
527860SN/APySource('m5.util', 'm5/util/__init__.py')
537860SN/APySource('m5.util', 'm5/util/attrdict.py')
549481Snilay@cs.wisc.eduPySource('m5.util', 'm5/util/code_formatter.py')
557860SN/APySource('m5.util', 'm5/util/convert.py')
567860SN/APySource('m5.util', 'm5/util/grammar.py')
579885Sstever@gmail.comPySource('m5.util', 'm5/util/jobfile.py')
587860SN/APySource('m5.util', 'm5/util/multidict.py')
597860SN/APySource('m5.util', 'm5/util/orderdict.py')
607860SN/APySource('m5.util', 'm5/util/smartdict.py')
617860SN/A
627860SN/ASwigSource('m5.internal', 'swig/core.i')
637860SN/ASwigSource('m5.internal', 'swig/debug.i')
647860SN/ASwigSource('m5.internal', 'swig/event.i')
657860SN/ASwigSource('m5.internal', 'swig/random.i')
667860SN/ASwigSource('m5.internal', 'swig/stats.i')
677860SN/ASwigSource('m5.internal', 'swig/trace.i')
687860SN/APySource('m5.internal', 'm5/internal/__init__.py')
698825Snilay@cs.wisc.edu