SConscript (3534:b838ec79077d) SConscript (3630:8d12a7309b1e)
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

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

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

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

32import os.path, sys
33
34# Import build environment variable from SConstruct.
35Import('env')
36
37sources = []
38
39sources += Split('''
40 t1000.cc
40 ''')
41
42# Convert file names to SCons File objects. This takes care of the
43# path relative to the top of the directory tree.
44sources = [File(s) for s in sources]
45
46Return('sources')
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')