SConscript (3914:e83101d984d5) | SConscript (4103:785279436bdd) |
---|---|
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 dtod.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 dtod.cc |
41 iob.cc |
|
41 t1000.cc 42 mm_disk.cc 43 ''') 44 45# Convert file names to SCons File objects. This takes care of the 46# path relative to the top of the directory tree. 47sources = [File(s) for s in sources] 48 49Return('sources') | 42 t1000.cc 43 mm_disk.cc 44 ''') 45 46# Convert file names to SCons File objects. This takes care of the 47# path relative to the top of the directory tree. 48sources = [File(s) for s in sources] 49 50Return('sources') |