SConscript (2665:a124942bacb8) SConscript (2667:fe64b8353b1c)
1# -*- mode:python -*-
2
3# Copyright (c) 2006 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

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

141
142#
143# Now include other ISA-specific sources from the ISA subdirectories.
144#
145
146isa = env['TARGET_ISA'] # someday this may be a list of ISAs
147
148# Let the target architecture define what additional sources it needs
1# -*- mode:python -*-
2
3# Copyright (c) 2006 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

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

141
142#
143# Now include other ISA-specific sources from the ISA subdirectories.
144#
145
146isa = env['TARGET_ISA'] # someday this may be a list of ISAs
147
148# Let the target architecture define what additional sources it needs
149sources += SConscript(os.path.join(isa, 'SConscript'),
150 exports = 'env', duplicate = False)
149sources += SConscript(os.path.join(isa, 'SConscript'), exports = 'env')
151
152Return('sources')
150
151Return('sources')