33c33
< Import('env')
---
> Import('main')
90,92c90,92
< m4env = env.Clone()
< if env['GCC']:
< major,minor,dot = [ int(x) for x in env['CXXVERSION'].split('.')]
---
> m4env = main.Clone()
> if m4env['GCC']:
> major,minor,dot = [ int(x) for x in m4env['CXXVERSION'].split('.')]
122,124c122,124
< env.Prepend(CPPPATH=Dir('.'))
< env.Append(LIBS=['elf'])
< env.Prepend(LIBPATH=[Dir('.')])
---
> main.Prepend(CPPPATH=Dir('.'))
> main.Append(LIBS=['elf'])
> main.Prepend(LIBPATH=[Dir('.')])