Moved all threading functions to libl4/include/l4lib/thread/*

This commit is contained in:
Bahadir Balban
2009-12-02 16:15:47 +02:00
parent d210678085
commit b12349f2e4
12 changed files with 17 additions and 19 deletions

View File

@@ -30,7 +30,7 @@ env = Environment(CC = config.user_toolchain + 'gcc',
# TODO: There are errors in this code that -Werror gives problems with.
objects = env.StaticObject(Glob('src/*.c') + Glob('src/' + arch + '/*.[cS]'))
objects = env.StaticObject(Glob('src/*.c') + Glob('src/thread/*.c') + Glob('src/' + arch + '/*.[cS]'))
library = env.StaticLibrary('l4', objects)
#Return('library')