SConscript revision 13403:cebee63981d3
1955SN/A# Copyright 2018 Google, Inc.
2955SN/A#
31762SN/A# Redistribution and use in source and binary forms, with or without
4955SN/A# modification, are permitted provided that the following conditions are
5955SN/A# met: redistributions of source code must retain the above copyright
6955SN/A# notice, this list of conditions and the following disclaimer;
7955SN/A# redistributions in binary form must reproduce the above copyright
8955SN/A# notice, this list of conditions and the following disclaimer in the
9955SN/A# documentation and/or other materials provided with the distribution;
10955SN/A# neither the name of the copyright holders nor the names of its
11955SN/A# contributors may be used to endorse or promote products derived from
12955SN/A# this software without specific prior written permission.
13955SN/A#
14955SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15955SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16955SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17955SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18955SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19955SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20955SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21955SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22955SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23955SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24955SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25955SN/A#
26955SN/A# Authors: Gabe Black
27955SN/A
282665Ssaidi@eecs.umich.eduImport('*')
292665Ssaidi@eecs.umich.edu
30955SN/Aif env['USE_SYSTEMC']:
31955SN/A    SimObject('SystemC.py')
32955SN/A
333583Sbinkertn@umich.edu    Source('channel.cc')
34955SN/A    Source('event.cc')
35955SN/A    Source('kernel.cc')
36955SN/A    Source('messages.cc')
37955SN/A    Source('module.cc')
38955SN/A    Source('object.cc')
39955SN/A    Source('port.cc')
40955SN/A    Source('process.cc')
41955SN/A    Source('python.cc')
42955SN/A    Source('scheduler.cc')
43955SN/A    Source('sched_event.cc')
44955SN/A    Source('sensitivity.cc')
45955SN/A    Source('time.cc')
46955SN/A
47955SN/A    Source('sc_attr.cc')
482023SN/A    Source('sc_event.cc')
49955SN/A    Source('sc_export.cc')
503089Ssaidi@eecs.umich.edu    Source('sc_interface.cc')
51955SN/A    Source('sc_join.cc')
52955SN/A    Source('sc_main.cc')
53955SN/A    Source('sc_main_fiber.cc')
54955SN/A    Source('sc_module.cc')
55955SN/A    Source('sc_module_name.cc')
56955SN/A    Source('sc_object.cc')
57955SN/A    Source('sc_port.cc')
58955SN/A    Source('sc_process_handle.cc')
591031SN/A    Source('sc_prim.cc')
60955SN/A    Source('sc_sensitive.cc')
611388SN/A    Source('sc_simcontext.cc')
62955SN/A    Source('sc_spawn.cc')
63955SN/A    Source('sc_time.cc')
641296SN/A