Simplify ALlIncludesHH usage
[senf.git] / site_scons / site_tools / CombinedObject.py
1
2 def generate(env):
3
4     builder = env.Builder(
5         action = [ '$LDCOMBINECOM $TARGET $SOURCES' ],
6         suffix = '.o',
7         ensure_suffix = 1,
8         src_suffix = '.o',
9         src_builder = 'Object')
10
11     env['BUILDERS']['CombinedObject'] = builder
12
13     env.SetDefault(LDCOMBINECOM = 'ld -r -o')
14
15 def exists(env):
16     return True