SConscript (9345:b557fcea030d) SConscript (10453:d0365cc3d05f)
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')
35Source('swig/pyobject.cc')
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')

--- 34 unchanged lines hidden ---
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')

--- 34 unchanged lines hidden ---