SConscript revision 4486
11046SN/A# -*- mode:python -*- 21046SN/A 31762SN/A# Copyright (c) 2004-2005 The Regents of The University of Michigan 41046SN/A# All rights reserved. 51046SN/A# 61046SN/A# Redistribution and use in source and binary forms, with or without 71046SN/A# modification, are permitted provided that the following conditions are 81046SN/A# met: redistributions of source code must retain the above copyright 91046SN/A# notice, this list of conditions and the following disclaimer; 101046SN/A# redistributions in binary form must reproduce the above copyright 111046SN/A# notice, this list of conditions and the following disclaimer in the 121046SN/A# documentation and/or other materials provided with the distribution; 131046SN/A# neither the name of the copyright holders nor the names of its 141046SN/A# contributors may be used to endorse or promote products derived from 151046SN/A# this software without specific prior written permission. 161046SN/A# 171046SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 181046SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 191046SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 201046SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 211046SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 221046SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 231046SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 241046SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 251046SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 261046SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 271046SN/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 311046SN/A 321530SN/Aimport os 332655Sstever@eecs.umich.eduImport('*') 342655Sstever@eecs.umich.edu 352655Sstever@eecs.umich.eduSource('swig/init.cc') 362655Sstever@eecs.umich.eduSource('swig/pyevent.cc') 372655Sstever@eecs.umich.eduSource('swig/pyobject.cc') 381530SN/A 391530SN/APySource('m5', 'm5/__init__.py') 401530SN/APySource('m5', 'm5/SimObject.py') 412667Sstever@eecs.umich.eduPySource('m5', 'm5/attrdict.py') 422667Sstever@eecs.umich.eduPySource('m5', 'm5/convert.py') 431046SN/APySource('m5', 'm5/event.py') 442655Sstever@eecs.umich.eduPySource('m5', 'm5/main.py') 452655Sstever@eecs.umich.eduPySource('m5', 'm5/multidict.py') 462655Sstever@eecs.umich.eduPySource('m5', 'm5/params.py') 472655Sstever@eecs.umich.eduPySource('m5', 'm5/proxy.py') 482655Sstever@eecs.umich.eduPySource('m5', 'm5/smartdict.py') 491046SN/APySource('m5', 'm5/stats.py') 502655Sstever@eecs.umich.eduPySource('m5', 'm5/ticks.py') 512655Sstever@eecs.umich.eduPySource('m5', 'm5/util.py') 522655Sstever@eecs.umich.edu 532655Sstever@eecs.umich.eduPySource('m5', os.path.join(env['ROOT'], 'util/pbs/jobfile.py')) 541046SN/A 552655Sstever@eecs.umich.eduSwigSource('m5.internal', 'swig/core.i') 562655Sstever@eecs.umich.eduSwigSource('m5.internal', 'swig/debug.i') 572655Sstever@eecs.umich.eduSwigSource('m5.internal', 'swig/event.i') 582667Sstever@eecs.umich.eduSwigSource('m5.internal', 'swig/random.i') 592655Sstever@eecs.umich.eduSwigSource('m5.internal', 'swig/sim_object.i') 602655Sstever@eecs.umich.eduSwigSource('m5.internal', 'swig/stats.i') 612655Sstever@eecs.umich.eduSwigSource('m5.internal', 'swig/trace.i') 622655Sstever@eecs.umich.eduPySource('m5.internal', 'm5/internal/__init__.py') 632655Sstever@eecs.umich.edu