SConscript revision 4218:f214fc9a4883
12817Sksewell@umich.edu# -*- mode:python -*-
22817Sksewell@umich.edu
32817Sksewell@umich.edu# Copyright (c) 2006 The Regents of The University of Michigan
42817Sksewell@umich.edu# All rights reserved.
52817Sksewell@umich.edu#
62817Sksewell@umich.edu# Redistribution and use in source and binary forms, with or without
72817Sksewell@umich.edu# modification, are permitted provided that the following conditions are
82817Sksewell@umich.edu# met: redistributions of source code must retain the above copyright
92817Sksewell@umich.edu# notice, this list of conditions and the following disclaimer;
102817Sksewell@umich.edu# redistributions in binary form must reproduce the above copyright
112817Sksewell@umich.edu# notice, this list of conditions and the following disclaimer in the
122817Sksewell@umich.edu# documentation and/or other materials provided with the distribution;
132817Sksewell@umich.edu# neither the name of the copyright holders nor the names of its
142817Sksewell@umich.edu# contributors may be used to endorse or promote products derived from
152817Sksewell@umich.edu# this software without specific prior written permission.
162817Sksewell@umich.edu#
172817Sksewell@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
182817Sksewell@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
192817Sksewell@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
202817Sksewell@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
212817Sksewell@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
222817Sksewell@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
232817Sksewell@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
242817Sksewell@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
252817Sksewell@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
262817Sksewell@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
272817Sksewell@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
282817Sksewell@umich.edu#
294202Sbinkertn@umich.edu# Authors: Steve Reinhardt
302817Sksewell@umich.edu#          Gabe Black
312817Sksewell@umich.edu
322817Sksewell@umich.eduImport('*')
334202Sbinkertn@umich.edu
342817Sksewell@umich.eduif env['FULL_SYSTEM']:
355192Ssaidi@eecs.umich.edu    Source('baddev.cc')
368335Snate@binkert.org    Source('disk_image.cc')
378335Snate@binkert.org    Source('etherbus.cc')
388335Snate@binkert.org    Source('etherdump.cc')
395192Ssaidi@eecs.umich.edu    Source('etherint.cc')
404202Sbinkertn@umich.edu    Source('etherlink.cc')
414486Sbinkertn@umich.edu    Source('etherpkt.cc')
424486Sbinkertn@umich.edu    Source('ethertap.cc')	
434486Sbinkertn@umich.edu    Source('i8254xGBe.cc')
444486Sbinkertn@umich.edu    Source('ide_ctrl.cc')
454202Sbinkertn@umich.edu    Source('ide_disk.cc')
464202Sbinkertn@umich.edu    Source('io_device.cc')
474202Sbinkertn@umich.edu    Source('isa_fake.cc')
484202Sbinkertn@umich.edu    Source('ns_gige.cc')
495597Sgblack@eecs.umich.edu    Source('pciconfigall.cc')
504202Sbinkertn@umich.edu    Source('pcidev.cc')
515597Sgblack@eecs.umich.edu    Source('pktfifo.cc')
524202Sbinkertn@umich.edu    Source('platform.cc')
534202Sbinkertn@umich.edu    Source('simconsole.cc')
544202Sbinkertn@umich.edu    Source('simple_disk.cc')
554202Sbinkertn@umich.edu    #Source('sinic.cc')
564202Sbinkertn@umich.edu    Source('uart.cc')
574202Sbinkertn@umich.edu    Source('uart8250.cc')
584202Sbinkertn@umich.edu