Use _Bool instead of 'unsigned char' for bool type
[marionette.git] / init / SConscript
blobb4229a18787eb689be911f489b43dba68a4b83dc
1 files = [
2 'start.S',
5 Import(['env'])
6 import os.path
8 # define the rule to build the module
9 module = env.Program('init',
10     files,
11     LIBS = ['gcc'],
12     LINKFLAGS = env['LINKFLAGS'] + ' -Wl,-T,' + os.path.join(Dir('.').srcnode().path, 'linker.ld'),
15 # we also depend on the linker script, to link
16 env.Depends(module, 'linker.ld')