SConscript revision 4202:f7a05daec670
13536SN/A# -*- mode:python -*-
27752SWilliam.Wang@arm.com
37752SWilliam.Wang@arm.com# Copyright (c) 2006 The Regents of The University of Michigan
47752SWilliam.Wang@arm.com# All rights reserved.
57752SWilliam.Wang@arm.com#
67752SWilliam.Wang@arm.com# Redistribution and use in source and binary forms, with or without
77752SWilliam.Wang@arm.com# modification, are permitted provided that the following conditions are
87752SWilliam.Wang@arm.com# met: redistributions of source code must retain the above copyright
97752SWilliam.Wang@arm.com# notice, this list of conditions and the following disclaimer;
107752SWilliam.Wang@arm.com# redistributions in binary form must reproduce the above copyright
117752SWilliam.Wang@arm.com# notice, this list of conditions and the following disclaimer in the
127752SWilliam.Wang@arm.com# documentation and/or other materials provided with the distribution;
137752SWilliam.Wang@arm.com# neither the name of the copyright holders nor the names of its
143536SN/A# contributors may be used to endorse or promote products derived from
153536SN/A# this software without specific prior written permission.
163536SN/A#
173536SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
183536SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
193536SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
203536SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
213536SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
223536SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
233536SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
243536SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
253536SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
263536SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
273536SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
283536SN/A#
293536SN/A# Authors: Nathan Binkert
303536SN/A
313536SN/AImport('*')
323536SN/A
333536SN/Aif False:
343536SN/A    Source('opt_cpu.cc')
353536SN/A    Source('trace_cpu.cc')
363536SN/A
373536SN/A    Source('reader/mem_trace_reader.cc')
383536SN/A    Source('reader/ibm_reader.cc')
393536SN/A    Source('reader/itx_reader.cc')
403536SN/A    Source('reader/m5_reader.cc')
417752SWilliam.Wang@arm.com