diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2008-12-25 09:46:59 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2008-12-25 09:48:46 -0500 |
commit | a1c265c1648f0b8a22691210ba6d94960fda4330 (patch) | |
tree | 8cfdadd1fce2a4b79d0f4011caaca093032a703d /SConstruct | |
parent | e8f92b2d543fede24283f1d309aeb6aaaefdf6e3 (diff) |
build correctly on pre-v1.1 scons versions
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -48,7 +48,9 @@ mtrt.Append(LINKFLAGS = '-pthread') | |||
48 | # ##################################################################### | 48 | # ##################################################################### |
49 | # Targets: liblitmus | 49 | # Targets: liblitmus |
50 | # All the files in src/ are part of the library. | 50 | # All the files in src/ are part of the library. |
51 | env.Library('litmus', Glob('src/*.c')) | 51 | env.Library('litmus', |
52 | ['src/kernel_iface.c', 'src/litmus.c', 'src/sched_trace.c', | ||
53 | 'src/syscalls.c', 'src/task.c']) | ||
52 | 54 | ||
53 | # ##################################################################### | 55 | # ##################################################################### |
54 | # Targets: simple tools that do not depend on liblitmus | 56 | # Targets: simple tools that do not depend on liblitmus |