SConscript (3630:8d12a7309b1e) SConscript (3898:42a529d97cf2)
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

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

33
34# Import build environment variable from SConstruct.
35Import('env')
36
37sources = []
38
39sources += Split('''
40 t1000.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

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

33
34# Import build environment variable from SConstruct.
35Import('env')
36
37sources = []
38
39sources += Split('''
40 t1000.cc
41 mm_disk.cc
41 ''')
42
43# Convert file names to SCons File objects. This takes care of the
44# path relative to the top of the directory tree.
45sources = [File(s) for s in sources]
46
47Return('sources')
42 ''')
43
44# Convert file names to SCons File objects. This takes care of the
45# path relative to the top of the directory tree.
46sources = [File(s) for s in sources]
47
48Return('sources')