SConscript revision 12950:af1f0b5e8dfb
14202Sbinkertn@umich.edu# Copyright 2018 Google, Inc.
24202Sbinkertn@umich.edu#
34202Sbinkertn@umich.edu# Redistribution and use in source and binary forms, with or without
44202Sbinkertn@umich.edu# modification, are permitted provided that the following conditions are
54202Sbinkertn@umich.edu# met: redistributions of source code must retain the above copyright
65864Snate@binkert.org# notice, this list of conditions and the following disclaimer;
75864Snate@binkert.org# redistributions in binary form must reproduce the above copyright
85864Snate@binkert.org# notice, this list of conditions and the following disclaimer in the
95864Snate@binkert.org# documentation and/or other materials provided with the distribution;
105864Snate@binkert.org# neither the name of the copyright holders nor the names of its
115864Snate@binkert.org# contributors may be used to endorse or promote products derived from
125864Snate@binkert.org# this software without specific prior written permission.
135864Snate@binkert.org#
144202Sbinkertn@umich.edu# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
155864Snate@binkert.org# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
164202Sbinkertn@umich.edu# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
174202Sbinkertn@umich.edu# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
184202Sbinkertn@umich.edu# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
194202Sbinkertn@umich.edu# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
204202Sbinkertn@umich.edu# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
214202Sbinkertn@umich.edu# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
224202Sbinkertn@umich.edu# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
234202Sbinkertn@umich.edu# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
244202Sbinkertn@umich.edu# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
254202Sbinkertn@umich.edu#
264202Sbinkertn@umich.edu# Authors: Gabe Black
274202Sbinkertn@umich.edu
284202Sbinkertn@umich.eduImport('*')
294202Sbinkertn@umich.edu
304202Sbinkertn@umich.eduif env['USE_SYSTEMC']:
314202Sbinkertn@umich.edu    SimObject('SystemC.py')
324202Sbinkertn@umich.edu
334202Sbinkertn@umich.edu    Source('kernel.cc')
34    Source('module.cc')
35    Source('object.cc')
36
37    Source('sc_attr.cc')
38    Source('sc_event.cc')
39    Source('sc_export.cc')
40    Source('sc_interface.cc')
41    Source('sc_join.cc')
42    Source('sc_main.cc')
43    Source('sc_module.cc')
44    Source('sc_module_name.cc')
45    Source('sc_object.cc')
46    Source('sc_port.cc')
47    Source('sc_process_handle.cc')
48    Source('sc_prim.cc')
49    Source('sc_sensitive.cc')
50    Source('sc_simcontext.cc')
51    Source('sc_spawn.cc')
52    Source('sc_time.cc')
53