SConscript (3542:9f744a6e22cf) SConscript (3547:1fb0cc8dd109)
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

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

209 base/remote_gdb.cc
210
211 cpu/intr_control.cc
212 cpu/profile.cc
213
214 dev/uart.cc
215 dev/uart8250.cc
216
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

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

209 base/remote_gdb.cc
210
211 cpu/intr_control.cc
212 cpu/profile.cc
213
214 dev/uart.cc
215 dev/uart8250.cc
216
217 kern/kernel_stats.cc
218 kern/system_events.cc
219 kern/linux/events.cc
220 kern/linux/linux_syscalls.cc
221 kern/linux/printk.cc
222
223 mem/vport.cc
224
225 sim/pseudo_inst.cc
226 ''')
227 #dev/sinic.cc
228 #dev/i8254xGBe.cc
229
230if env['TARGET_ISA'] == 'alpha':

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

293arch_sources = SConscript(os.path.join('arch', 'SConscript'), exports = 'env')
294
295cpu_sources = SConscript(os.path.join('cpu', 'SConscript'), exports = 'env')
296
297if env['FULL_SYSTEM']:
298 dev_sources = SConscript(os.path.join('dev', 'SConscript'), exports = 'env')
299 full_system_sources += dev_sources
300
217 mem/vport.cc
218
219 sim/pseudo_inst.cc
220 ''')
221 #dev/sinic.cc
222 #dev/i8254xGBe.cc
223
224if env['TARGET_ISA'] == 'alpha':

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

287arch_sources = SConscript(os.path.join('arch', 'SConscript'), exports = 'env')
288
289cpu_sources = SConscript(os.path.join('cpu', 'SConscript'), exports = 'env')
290
291if env['FULL_SYSTEM']:
292 dev_sources = SConscript(os.path.join('dev', 'SConscript'), exports = 'env')
293 full_system_sources += dev_sources
294
295 kern_sources = SConscript(os.path.join('kern', 'SConscript'), exports = 'env')
296 full_system_sources += kern_sources
297
301# This is outside of cpu/SConscript since the source directory isn't
302# underneath 'cpu'.
303if 'FullCPU' in env['CPU_MODELS']:
304 cpu_sources += full_cpu_sources
305
306# Set up complete list of sources based on configuration.
307sources = base_sources + arch_sources + cpu_sources
308

--- 90 unchanged lines hidden ---
298# This is outside of cpu/SConscript since the source directory isn't
299# underneath 'cpu'.
300if 'FullCPU' in env['CPU_MODELS']:
301 cpu_sources += full_cpu_sources
302
303# Set up complete list of sources based on configuration.
304sources = base_sources + arch_sources + cpu_sources
305

--- 90 unchanged lines hidden ---