diff options
author | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2008-12-09 11:38:44 -0500 |
---|---|---|
committer | Bjoern B. Brandenburg <bbb@cs.unc.edu> | 2008-12-09 11:38:44 -0500 |
commit | 6ba8c2c05ae6348f9e973feaca55efc3f0fb87a8 (patch) | |
tree | 786a5ef82d00e11c548e667c940c2347e6fb322a /Makefile | |
parent | abb2b918c116bdc7463c1a3c67975f4cf10487d0 (diff) | |
parent | d8130c61443893e490d19da25ea5f32814c5367b (diff) |
Merge branch 'master' of ssh://cvs/cvs/proj/litmus/repo/liblitmus2008
Conflicts:
Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -19,7 +19,7 @@ LIBS= ./liblitmus.a | |||
19 | LIB_OBJ= litmus.o syscalls.o sched_trace.o task.o kernel_iface.o | 19 | LIB_OBJ= litmus.o syscalls.o sched_trace.o task.o kernel_iface.o |
20 | 20 | ||
21 | TARGETS = rt_launch liblitmus.a \ | 21 | TARGETS = rt_launch liblitmus.a \ |
22 | wait_test np_test mode_test base_task base_mt_task release_ts showst rtspin | 22 | wait_test np_test mode_test base_task base_mt_task release_ts showst rtspin cycles |
23 | 23 | ||
24 | vpath %.h include/ | 24 | vpath %.h include/ |
25 | vpath %.c src/ bin/ | 25 | vpath %.c src/ bin/ |
@@ -55,6 +55,9 @@ release_ts: liblitmus.a litmus.h release_ts.o | |||
55 | showst : liblitmus.a litmus.h showst.o | 55 | showst : liblitmus.a litmus.h showst.o |
56 | ${CC} ${CFLAGS} -o showst showst.o ${LIBS} | 56 | ${CC} ${CFLAGS} -o showst showst.o ${LIBS} |
57 | 57 | ||
58 | cycles: cycles.o | ||
59 | ${CC} ${CFLAGS} -o cycles cycles.o | ||
60 | |||
58 | liblitmus.a: ${LIB_OBJ} litmus.h | 61 | liblitmus.a: ${LIB_OBJ} litmus.h |
59 | ${AR} rcs liblitmus.a ${LIB_OBJ} | 62 | ${AR} rcs liblitmus.a ${LIB_OBJ} |
60 | 63 | ||