Deleted Added
sdiff udiff text old ( 8777:dd43f1c9fa0a ) new ( 8780:89e0822462a1 )
full compact
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

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

29# Authors: Gabe Black
30# Steve Reinhardt
31
32Import('*')
33
34if env['TARGET_ISA'] == 'alpha':
35 Source('ev5.cc')
36 Source('faults.cc')
37 Source('freebsd/system.cc')
38 Source('idle_event.cc')
39 Source('interrupts.cc')
40 Source('ipr.cc')
41 Source('isa.cc')
42 Source('kernel_stats.cc')
43 Source('linux/linux.cc')
44 Source('linux/process.cc')
45 Source('linux/system.cc')
46 Source('osfpal.cc')
47 Source('pagetable.cc')
48 Source('process.cc')
49 Source('regredir.cc')
50 Source('remote_gdb.cc')
51 Source('stacktrace.cc')
52 Source('system.cc')
53 Source('tlb.cc')
54 Source('tru64/process.cc')
55 Source('tru64/system.cc')
56 Source('tru64/tru64.cc')
57 Source('utility.cc')
58 Source('vtophys.cc')
59
60 SimObject('AlphaInterrupts.py')
61 SimObject('AlphaSystem.py')
62 SimObject('AlphaTLB.py')
63
64
65 # Add in files generated by the ISA description.
66 isa_desc_files = env.ISADesc('isa/main.isa')
67 # Only non-header files need to be compiled.
68 for f in isa_desc_files:
69 if not f.path.endswith('.hh'):
70 Source(f)