Changeset 3523 for SConstruct
- Timestamp:
- Aug 22, 2006, 12:35:25 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
SConstruct
r3414 r3523 61 61 Export('env') 62 62 63 # Build .pyc files of every .py in here and below.63 # Build .pyc and .pyo files of every .py in here and below. 64 64 files = [] 65 dirs = filter(os.path.isdir, os.listdir('.')) 65 #dirs = filter(os.path.isdir, os.listdir('.')) 66 #Only build the anuga_core directory for now 67 dirs = ['anuga_core'] 66 68 while(dirs != []): 67 69 dirs += filter(os.path.isdir, map(lambda x : dirs[0] + os.sep + x, os.listdir(dirs[0]))) … … 71 73 env.Pyc(x + 'c', x) 72 74 73 SConscript([' inundation/SConscript'])75 SConscript(['anuga_core/source/anuga/SConscript'])
Note: See TracChangeset
for help on using the changeset viewer.