SConscript revision 12287:4163eeb6210c
11897Sstever@eecs.umich.edu# -*- mode:python -*-
24130Ssaidi@eecs.umich.edu
31897Sstever@eecs.umich.edu# Copyright (c) 2004-2005 The Regents of The University of Michigan
41897Sstever@eecs.umich.edu# All rights reserved.
51897Sstever@eecs.umich.edu#
61897Sstever@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
71897Sstever@eecs.umich.edu# modification, are permitted provided that the following conditions are
81897Sstever@eecs.umich.edu# met: redistributions of source code must retain the above copyright
91897Sstever@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
101897Sstever@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
111897Sstever@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
121897Sstever@eecs.umich.edu# documentation and/or other materials provided with the distribution;
131897Sstever@eecs.umich.edu# neither the name of the copyright holders nor the names of its
141897Sstever@eecs.umich.edu# contributors may be used to endorse or promote products derived from
151897Sstever@eecs.umich.edu# this software without specific prior written permission.
161897Sstever@eecs.umich.edu#
171897Sstever@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
181897Sstever@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
191897Sstever@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
201897Sstever@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
211897Sstever@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
221897Sstever@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
231897Sstever@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
241897Sstever@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
251897Sstever@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
261897Sstever@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
271897Sstever@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
281897Sstever@eecs.umich.edu#
291897Sstever@eecs.umich.edu# Authors: Gabe Black
301897Sstever@eecs.umich.edu#          Steve Reinhardt
311897Sstever@eecs.umich.edu
321897Sstever@eecs.umich.eduImport('*')
331897Sstever@eecs.umich.edu
344961Ssaidi@eecs.umich.eduif env['TARGET_ISA'] == 'sparc':
351897Sstever@eecs.umich.edu    Source('priv.cc')
361897Sstever@eecs.umich.edu    Source('static_inst.cc')
371897Sstever@eecs.umich.edu