SConscript revision 8492
15647Sgblack@eecs.umich.edu# -*- mode:python -*-
29544Sandreas.hansson@arm.com
38922Swilliam.wang@arm.com# Copyright (c) 2009 The Hewlett-Packard Development Company
48922Swilliam.wang@arm.com# All rights reserved.
58922Swilliam.wang@arm.com#
68922Swilliam.wang@arm.com# Redistribution and use in source and binary forms, with or without
78922Swilliam.wang@arm.com# modification, are permitted provided that the following conditions are
88922Swilliam.wang@arm.com# met: redistributions of source code must retain the above copyright
98922Swilliam.wang@arm.com# notice, this list of conditions and the following disclaimer;
108922Swilliam.wang@arm.com# redistributions in binary form must reproduce the above copyright
118922Swilliam.wang@arm.com# notice, this list of conditions and the following disclaimer in the
128922Swilliam.wang@arm.com# documentation and/or other materials provided with the distribution;
138922Swilliam.wang@arm.com# neither the name of the copyright holders nor the names of its
145647Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
155647Sgblack@eecs.umich.edu# this software without specific prior written permission.
165647Sgblack@eecs.umich.edu#
177087Snate@binkert.org# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
187087Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
197087Snate@binkert.org# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
207087Snate@binkert.org# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
217087Snate@binkert.org# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
227087Snate@binkert.org# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
237087Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
247087Snate@binkert.org# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
255647Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
267087Snate@binkert.org# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
277087Snate@binkert.org# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
287087Snate@binkert.org#
297087Snate@binkert.org# Authors: Nathan Binkert
307087Snate@binkert.org
317087Snate@binkert.orgImport('*')
327087Snate@binkert.org
337087Snate@binkert.orgif env['PROTOCOL'] == 'None':
345647Sgblack@eecs.umich.edu    Return()
357087Snate@binkert.org
365647Sgblack@eecs.umich.eduSimObject('BasicLink.py')
375647Sgblack@eecs.umich.eduSimObject('BasicRouter.py')
385647Sgblack@eecs.umich.eduSimObject('Network.py')
395647Sgblack@eecs.umich.edu
405647Sgblack@eecs.umich.eduSource('BasicLink.cc')
415647Sgblack@eecs.umich.eduSource('BasicRouter.cc')
425647Sgblack@eecs.umich.eduSource('Network.cc')
435647Sgblack@eecs.umich.eduSource('Topology.cc')
445647Sgblack@eecs.umich.edu