SConscript revision 13458
15647Sgblack@eecs.umich.edu# -*- mode:python -*-
25647Sgblack@eecs.umich.edu
35647Sgblack@eecs.umich.edu# Copyright (c) 2016 Georgia Institute of Technology
45647Sgblack@eecs.umich.edu# All rights reserved.
57087Snate@binkert.org#
67087Snate@binkert.org# Redistribution and use in source and binary forms, with or without
77087Snate@binkert.org# modification, are permitted provided that the following conditions are
87087Snate@binkert.org# met: redistributions of source code must retain the above copyright
97087Snate@binkert.org# notice, this list of conditions and the following disclaimer;
107087Snate@binkert.org# redistributions in binary form must reproduce the above copyright
117087Snate@binkert.org# notice, this list of conditions and the following disclaimer in the
127087Snate@binkert.org# documentation and/or other materials provided with the distribution;
135647Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
147087Snate@binkert.org# contributors may be used to endorse or promote products derived from
157087Snate@binkert.org# this software without specific prior written permission.
167087Snate@binkert.org#
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,
225647Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
237087Snate@binkert.org# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
245647Sgblack@eecs.umich.edu# 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
265647Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
275647Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
285647Sgblack@eecs.umich.edu#
295647Sgblack@eecs.umich.edu# Authors: Tushar Krishna
305647Sgblack@eecs.umich.edu
315647Sgblack@eecs.umich.eduImport('*')
325647Sgblack@eecs.umich.edu
335647Sgblack@eecs.umich.eduif env['PROTOCOL'] == 'None':
345647Sgblack@eecs.umich.edu    Return()
355647Sgblack@eecs.umich.edu
365647Sgblack@eecs.umich.eduSimObject('GarnetLink.py')
375647Sgblack@eecs.umich.eduSimObject('GarnetNetwork.py')
385647Sgblack@eecs.umich.edu
395647Sgblack@eecs.umich.eduSource('GarnetLink.cc')
405647Sgblack@eecs.umich.eduSource('GarnetNetwork.cc')
415654Sgblack@eecs.umich.eduSource('InputUnit.cc')
427629Sgblack@eecs.umich.eduSource('NetworkInterface.cc')
435647Sgblack@eecs.umich.eduSource('NetworkLink.cc')
446137Sgblack@eecs.umich.eduSource('OutVcState.cc')
456137Sgblack@eecs.umich.eduSource('OutputUnit.cc')
466137Sgblack@eecs.umich.eduSource('Router.cc')
475654Sgblack@eecs.umich.eduSource('RoutingUnit.cc')
486046Sgblack@eecs.umich.eduSource('SwitchAllocator.cc')
495647Sgblack@eecs.umich.eduSource('CrossbarSwitch.cc')
505648Sgblack@eecs.umich.eduSource('VirtualChannel.cc')
515648Sgblack@eecs.umich.eduSource('flitBuffer.cc')
525647Sgblack@eecs.umich.eduSource('flit.cc')
535647Sgblack@eecs.umich.eduSource('Credit.cc')
545647Sgblack@eecs.umich.edu