SConscript revision 6876
14134Sgblack@eecs.umich.edu# -*- mode:python -*-
24134Sgblack@eecs.umich.edu
34134Sgblack@eecs.umich.edu# Copyright (c) 2009 The Hewlett-Packard Development Company
44134Sgblack@eecs.umich.edu# All rights reserved.
54134Sgblack@eecs.umich.edu#
64134Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
74134Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
84134Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
94134Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
104134Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
114134Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
124134Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
134134Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
144134Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
154134Sgblack@eecs.umich.edu# this software without specific prior written permission.
164134Sgblack@eecs.umich.edu#
174134Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
184134Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
194134Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
204134Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
214134Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
224134Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
234134Sgblack@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
244134Sgblack@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
254134Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
264134Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
274134Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
284134Sgblack@eecs.umich.edu#
294134Sgblack@eecs.umich.edu# Authors: Nathan Binkert
304134Sgblack@eecs.umich.edu
314134Sgblack@eecs.umich.eduImport('*')
324134Sgblack@eecs.umich.edu
334134Sgblack@eecs.umich.eduif not env['RUBY']:
344134Sgblack@eecs.umich.edu    Return()
354134Sgblack@eecs.umich.edu
364134Sgblack@eecs.umich.eduSimObject('SimpleNetwork.py')
374134Sgblack@eecs.umich.edu
384134Sgblack@eecs.umich.eduSource('PerfectSwitch.cc')
394134Sgblack@eecs.umich.eduSource('SimpleNetwork.cc')
404134Sgblack@eecs.umich.eduSource('Switch.cc')
414134Sgblack@eecs.umich.eduSource('Throttle.cc')
424134Sgblack@eecs.umich.eduSource('Topology.cc')
434134Sgblack@eecs.umich.edu