SConscript (11802:be62996c95d1) SConscript (11988:665cd5f8b52b)
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Steve Reinhardt
30# Nathan Binkert
31
32Import('*')
33
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Steve Reinhardt
30# Nathan Binkert
31
32Import('*')
33
34Source('swig/pyevent.cc', skip_no_python=True)
35Source('swig/pyobject.cc', skip_no_python=True)
36
37PySource('', 'importer.py')
38PySource('m5', 'm5/__init__.py')
39PySource('m5', 'm5/SimObject.py')
40PySource('m5', 'm5/config.py')
41PySource('m5', 'm5/core.py')
42PySource('m5', 'm5/debug.py')
43PySource('m5', 'm5/event.py')
44PySource('m5', 'm5/main.py')

--- 12 unchanged lines hidden (view full) ---

57PySource('m5.util', 'm5/util/dot_writer.py')
58PySource('m5.util', 'm5/util/grammar.py')
59PySource('m5.util', 'm5/util/jobfile.py')
60PySource('m5.util', 'm5/util/multidict.py')
61PySource('m5.util', 'm5/util/orderdict.py')
62PySource('m5.util', 'm5/util/smartdict.py')
63PySource('m5.util', 'm5/util/sorteddict.py')
64PySource('m5.util', 'm5/util/terminal.py')
34PySource('', 'importer.py')
35PySource('m5', 'm5/__init__.py')
36PySource('m5', 'm5/SimObject.py')
37PySource('m5', 'm5/config.py')
38PySource('m5', 'm5/core.py')
39PySource('m5', 'm5/debug.py')
40PySource('m5', 'm5/event.py')
41PySource('m5', 'm5/main.py')

--- 12 unchanged lines hidden (view full) ---

54PySource('m5.util', 'm5/util/dot_writer.py')
55PySource('m5.util', 'm5/util/grammar.py')
56PySource('m5.util', 'm5/util/jobfile.py')
57PySource('m5.util', 'm5/util/multidict.py')
58PySource('m5.util', 'm5/util/orderdict.py')
59PySource('m5.util', 'm5/util/smartdict.py')
60PySource('m5.util', 'm5/util/sorteddict.py')
61PySource('m5.util', 'm5/util/terminal.py')
62PySource('m5.util', 'm5/util/pybind.py')
65
63
66PySource('_m5', '_m5/__init__.py')
67SwigSource('_m5', 'swig/core.i')
68SwigSource('_m5', 'swig/debug.i')
69SwigSource('_m5', 'swig/drain.i')
70SwigSource('_m5', 'swig/event.i')
71SwigSource('_m5', 'swig/pyobject.i')
72SwigSource('_m5', 'swig/range.i')
73SwigSource('_m5', 'swig/serialize.i')
74SwigSource('_m5', 'swig/stats.i')
75SwigSource('_m5', 'swig/trace.i')
76PySource('m5.internal', 'm5/internal/__init__.py')
77PySource('m5.internal', 'm5/internal/params.py')
64PySource('m5.internal', 'm5/internal/__init__.py')
65PySource('m5.internal', 'm5/internal/params.py')
66
67Source('pybind11/core.cc', skip_no_python=True)
68Source('pybind11/debug.cc', skip_no_python=True)
69Source('pybind11/event.cc', skip_no_python=True)
70Source('pybind11/pyobject.cc', skip_no_python=True)
71Source('pybind11/stats.cc', skip_no_python=True)