diff options
-rw-r--r-- | SConstruct | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -50,8 +50,8 @@ mtrt.Append(LINKFLAGS = '-pthread') | |||
50 | # Targets: liblitmus | 50 | # Targets: liblitmus |
51 | # All the files in src/ are part of the library. | 51 | # All the files in src/ are part of the library. |
52 | env.Library('litmus', | 52 | env.Library('litmus', |
53 | ['src/kernel_iface.c', 'src/litmus.c', 'src/sched_trace.c', | 53 | ['src/kernel_iface.c', 'src/litmus.c', |
54 | 'src/syscalls.c', 'src/task.c']) | 54 | 'src/syscalls.c', 'src/task.c']) |
55 | 55 | ||
56 | # ##################################################################### | 56 | # ##################################################################### |
57 | # Targets: simple tools that do not depend on liblitmus | 57 | # Targets: simple tools that do not depend on liblitmus |
@@ -67,4 +67,4 @@ rt.Program('np_test', 'bin/np_test.c') | |||
67 | rt.Program('rt_launch', ['bin/rt_launch.c', 'bin/common.c']) | 67 | rt.Program('rt_launch', ['bin/rt_launch.c', 'bin/common.c']) |
68 | rt.Program('rtspin', ['bin/rtspin.c', 'bin/common.c']) | 68 | rt.Program('rtspin', ['bin/rtspin.c', 'bin/common.c']) |
69 | rt.Program('release_ts', 'bin/release_ts.c') | 69 | rt.Program('release_ts', 'bin/release_ts.c') |
70 | rt.Program('showst', 'bin/showst.c') | 70 | rt.Program('showst', ['bin/showst.c', 'src/sched_trace.c']) |