SConscript (3540:87e83423cb36) SConscript (3543:0c6fca031c44)
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

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

58 ethertap.cc
59 ide_ctrl.cc
60 ide_disk.cc
61 io_device.cc
62 isa_fake.cc
63 ns_gige.cc
64 pciconfigall.cc
65 pcidev.cc
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

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

58 ethertap.cc
59 ide_ctrl.cc
60 ide_disk.cc
61 io_device.cc
62 isa_fake.cc
63 ns_gige.cc
64 pciconfigall.cc
65 pcidev.cc
66 pcifake.cc
67 pktfifo.cc
68 platform.cc
69 simconsole.cc
70 simple_disk.cc
71 ''')
72
73# Let the target architecture define what additional sources it needs
74sources += SConscript(os.path.join(isa, 'SConscript'), exports = 'env')
75
76# Convert file names to SCons File objects. This takes care of the
77# path relative to the top of the directory tree.
78sources = [File(s) for s in sources]
79
80Return('sources')
66 pktfifo.cc
67 platform.cc
68 simconsole.cc
69 simple_disk.cc
70 ''')
71
72# Let the target architecture define what additional sources it needs
73sources += SConscript(os.path.join(isa, 'SConscript'), exports = 'env')
74
75# Convert file names to SCons File objects. This takes care of the
76# path relative to the top of the directory tree.
77sources = [File(s) for s in sources]
78
79Return('sources')