aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 34c428f..70e79d4 100644
--- a/Makefile
+++ b/Makefile
@@ -73,7 +73,7 @@ AR := ${CROSS_COMPILE}${AR}
73 73
74all = lib ${rt-apps} 74all = lib ${rt-apps}
75rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \ 75rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \
76 base_mt_task uncache runtests resctrl 76 base_mt_task uncache runtests resctrl mc2spin
77 77
78.PHONY: all lib clean dump-config TAGS tags cscope help doc 78.PHONY: all lib clean dump-config TAGS tags cscope help doc
79 79
@@ -168,7 +168,8 @@ litmus-headers = \
168 include/litmus/rt_param.h \ 168 include/litmus/rt_param.h \
169 include/litmus/fpmath.h \ 169 include/litmus/fpmath.h \
170 include/litmus/unistd_32.h \ 170 include/litmus/unistd_32.h \
171 include/litmus/unistd_64.h 171 include/litmus/unistd_64.h \
172 include/litmus/mc2_common.h
172 173
173unistd-headers = \ 174unistd-headers = \
174 $(foreach file,${unistd-${ARCH}},arch/${include-${ARCH}}/include/$(file)) 175 $(foreach file,${unistd-${ARCH}},arch/${include-${ARCH}}/include/$(file))
@@ -236,6 +237,8 @@ lib-measure_syscall = -lm
236 237
237obj-resctrl = resctrl.o 238obj-resctrl = resctrl.o
238 239
240obj-mc2spin = mc2spin.o common.o
241lib-mc2spin = -lrt
239 242
240# ############################################################################## 243# ##############################################################################
241# Build everything that depends on liblitmus. 244# Build everything that depends on liblitmus.