SConscript revision 11260
13537Sgblack@eecs.umich.edu# -*- mode:python -*-
23537Sgblack@eecs.umich.edu
33537Sgblack@eecs.umich.edu# Copyright (c) 2015 ARM Limited
43537Sgblack@eecs.umich.edu# All rights reserved.
53537Sgblack@eecs.umich.edu#
63537Sgblack@eecs.umich.edu# The license below extends only to copyright in the software and shall
73537Sgblack@eecs.umich.edu# not be construed as granting a license to any other intellectual
83537Sgblack@eecs.umich.edu# property including but not limited to intellectual property relating
93537Sgblack@eecs.umich.edu# to a hardware implementation of the functionality of the software
103537Sgblack@eecs.umich.edu# licensed hereunder.  You may use the software subject to the license
113537Sgblack@eecs.umich.edu# terms below provided that you ensure that this notice is replicated
123537Sgblack@eecs.umich.edu# unmodified and in its entirety in all distributions of the software,
133537Sgblack@eecs.umich.edu# modified or unmodified, in source code or in binary form.
143537Sgblack@eecs.umich.edu#
153537Sgblack@eecs.umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
163537Sgblack@eecs.umich.edu# All rights reserved.
173537Sgblack@eecs.umich.edu#
183537Sgblack@eecs.umich.edu# Redistribution and use in source and binary forms, with or without
193537Sgblack@eecs.umich.edu# modification, are permitted provided that the following conditions are
203537Sgblack@eecs.umich.edu# met: redistributions of source code must retain the above copyright
213537Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer;
223537Sgblack@eecs.umich.edu# redistributions in binary form must reproduce the above copyright
233537Sgblack@eecs.umich.edu# notice, this list of conditions and the following disclaimer in the
243537Sgblack@eecs.umich.edu# documentation and/or other materials provided with the distribution;
253537Sgblack@eecs.umich.edu# neither the name of the copyright holders nor the names of its
263537Sgblack@eecs.umich.edu# contributors may be used to endorse or promote products derived from
273537Sgblack@eecs.umich.edu# this software without specific prior written permission.
283537Sgblack@eecs.umich.edu#
293537Sgblack@eecs.umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
303537Sgblack@eecs.umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
313537Sgblack@eecs.umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
323537Sgblack@eecs.umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
333537Sgblack@eecs.umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
343537Sgblack@eecs.umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
353827Shsul@eecs.umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
363827Shsul@eecs.umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
373537Sgblack@eecs.umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
383537Sgblack@eecs.umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
393537Sgblack@eecs.umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
403537Sgblack@eecs.umich.edu#
413537Sgblack@eecs.umich.edu# Authors: Steve Reinhardt
423537Sgblack@eecs.umich.edu#          Gabe Black
433827Shsul@eecs.umich.edu#          Andreas Sandberg
443537Sgblack@eecs.umich.edu
453537Sgblack@eecs.umich.eduImport('*')
463537Sgblack@eecs.umich.edu
473537Sgblack@eecs.umich.eduif env['TARGET_ISA'] == 'null':
483827Shsul@eecs.umich.edu    Return()
493537Sgblack@eecs.umich.edu
503537Sgblack@eecs.umich.eduSimObject('PciDevice.py')
513537Sgblack@eecs.umich.eduSource('device.cc')
523537Sgblack@eecs.umich.eduDebugFlag('PciDevice')
533537Sgblack@eecs.umich.edu
543537Sgblack@eecs.umich.eduSimObject('PciHost.py')
553537Sgblack@eecs.umich.eduSource('host.cc')
563537Sgblack@eecs.umich.eduDebugFlag('PciHost')
573827Shsul@eecs.umich.edu
583537Sgblack@eecs.umich.edu