Deleted Added
sdiff udiff text old ( 3898:42a529d97cf2 ) new ( 3914:e83101d984d5 )
full compact
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
41 mm_disk.cc
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')