SConscript revision 8541
12889Sbinkertn@umich.edu# -*- mode:python -*-
22889Sbinkertn@umich.edu
32889Sbinkertn@umich.edu# Copyright (c) 2009 The Hewlett-Packard Development Company
42889Sbinkertn@umich.edu# All rights reserved.
52889Sbinkertn@umich.edu#
62889Sbinkertn@umich.edu# Redistribution and use in source and binary forms, with or without
72889Sbinkertn@umich.edu# modification, are permitted provided that the following conditions are
82889Sbinkertn@umich.edu# met: redistributions of source code must retain the above copyright
92889Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer;
102889Sbinkertn@umich.edu# redistributions in binary form must reproduce the above copyright
112889Sbinkertn@umich.edu# notice, this list of conditions and the following disclaimer in the
122889Sbinkertn@umich.edu# documentation and/or other materials provided with the distribution;
132889Sbinkertn@umich.edu# neither the name of the copyright holders nor the names of its
142889Sbinkertn@umich.edu# contributors may be used to endorse or promote products derived from
152889Sbinkertn@umich.edu# this software without specific prior written permission.
162889Sbinkertn@umich.edu#
172889Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182889Sbinkertn@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192889Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202889Sbinkertn@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212889Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222889Sbinkertn@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232889Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242889Sbinkertn@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252889Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262889Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272889Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282889Sbinkertn@umich.edu#
294850Snate@binkert.org# Authors: Nathan Binkert
304850Snate@binkert.org
314850Snate@binkert.orgImport('*')
324850Snate@binkert.org
334850Snate@binkert.orgif env['PROTOCOL'] == 'None':
344850Snate@binkert.org    Return()
355467Snate@binkert.org
365471Snate@binkert.orgSimObject('Controller.py')
375470Snate@binkert.org
382889Sbinkertn@umich.eduSource('AbstractController.cc')
392889Sbinkertn@umich.eduSource('AbstractEntry.cc')
402889Sbinkertn@umich.eduSource('AbstractCacheEntry.cc')
414053Sbinkertn@umich.eduSource('RubyRequest.cc')
424053Sbinkertn@umich.eduSource('RubySlicc_Profiler_interface.cc')
434053Sbinkertn@umich.edu