SConscript revision 13206:c944ef4abb48
12686Sksewell@umich.edu# Copyright 2018 Google, Inc.
25254Sksewell@umich.edu#
35254Sksewell@umich.edu# Redistribution and use in source and binary forms, with or without
42686Sksewell@umich.edu# modification, are permitted provided that the following conditions are
55254Sksewell@umich.edu# met: redistributions of source code must retain the above copyright
65254Sksewell@umich.edu# notice, this list of conditions and the following disclaimer;
75254Sksewell@umich.edu# redistributions in binary form must reproduce the above copyright
85254Sksewell@umich.edu# notice, this list of conditions and the following disclaimer in the
95254Sksewell@umich.edu# documentation and/or other materials provided with the distribution;
105254Sksewell@umich.edu# neither the name of the copyright holders nor the names of its
115254Sksewell@umich.edu# contributors may be used to endorse or promote products derived from
125254Sksewell@umich.edu# this software without specific prior written permission.
135254Sksewell@umich.edu#
145254Sksewell@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
152686Sksewell@umich.edu# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
165254Sksewell@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
175254Sksewell@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
185254Sksewell@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
195254Sksewell@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
205254Sksewell@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
215254Sksewell@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
225254Sksewell@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
235254Sksewell@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
245254Sksewell@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
255254Sksewell@umich.edu#
265254Sksewell@umich.edu# Authors: Gabe Black
272706Sksewell@umich.edu
285254Sksewell@umich.eduImport('*')
292686Sksewell@umich.edu
302686Sksewell@umich.eduif env['USE_SYSTEMC']:
317678Sgblack@eecs.umich.edu    SimObject('SystemC.py')
327678Sgblack@eecs.umich.edu
334661Sksewell@umich.edu    Source('channel.cc')
342686Sksewell@umich.edu    Source('event.cc')
354661Sksewell@umich.edu    Source('kernel.cc')
362980Sgblack@eecs.umich.edu    Source('module.cc')
378229Snate@binkert.org    Source('object.cc')
388229Snate@binkert.org    Source('process.cc')
398229Snate@binkert.org    Source('process_types.cc')
408229Snate@binkert.org    Source('python.cc')
412686Sksewell@umich.edu    Source('scheduler.cc')
426379Sgblack@eecs.umich.edu    Source('sched_event.cc')
435222Sksewell@umich.edu    Source('sensitivity.cc')
445222Sksewell@umich.edu
455222Sksewell@umich.edu    Source('sc_attr.cc')
465222Sksewell@umich.edu    Source('sc_event.cc')
472686Sksewell@umich.edu    Source('sc_export.cc')
484661Sksewell@umich.edu    Source('sc_interface.cc')
492686Sksewell@umich.edu    Source('sc_join.cc')
505222Sksewell@umich.edu    Source('sc_main.cc')
515222Sksewell@umich.edu    Source('sc_module.cc')
522686Sksewell@umich.edu    Source('sc_module_name.cc')
537707Sgblack@eecs.umich.edu    Source('sc_object.cc')
545222Sksewell@umich.edu    Source('sc_port.cc')
558775Sgblack@eecs.umich.edu    Source('sc_process_handle.cc')
565222Sksewell@umich.edu    Source('sc_prim.cc')
575222Sksewell@umich.edu    Source('sc_sensitive.cc')
585222Sksewell@umich.edu    Source('sc_simcontext.cc')
595222Sksewell@umich.edu    Source('sc_spawn.cc')
605222Sksewell@umich.edu    Source('sc_time.cc')
612686Sksewell@umich.edu