aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 15 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index b135529..c2a1105 100644
--- a/Makefile
+++ b/Makefile
@@ -73,8 +73,9 @@ 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 mc2spin test1 mttest \ 76 base_mt_task uncache runtests resctrl mc2spin test1 \
77 mc2thrash mc2shm mc2bench 77 mc2thrash mc2shm mc2thrash1 mc2thrash2 mc2thrash3 mc2bench\
78 mtdag
78 79
79.PHONY: all lib clean dump-config TAGS tags cscope help doc 80.PHONY: all lib clean dump-config TAGS tags cscope help doc
80 81
@@ -253,15 +254,24 @@ lib-memthrash = -lrt
253obj-test1 = test1.o common.o 254obj-test1 = test1.o common.o
254lib-test1 = -lrt -static 255lib-test1 = -lrt -static
255 256
256obj-mttest = mttest.o
257ldf-mttest = -pthread
258
259obj-mc2thrash = mc2thrash.o common.o 257obj-mc2thrash = mc2thrash.o common.o
260lib-mc2thrash = -lrt -static 258lib-mc2thrash = -lrt -static
261 259
260obj-mc2thrash1 = mc2thrash.o common.o
261lib-mc2thrash1 = -lrt -static
262
263obj-mc2thrash2 = mc2thrash.o common.o
264lib-mc2thrash2 = -lrt -static
265
266obj-mc2thrash3 = mc2thrash.o common.o
267lib-mc2thrash3 = -lrt -static
268
262obj-mc2shm = mc2shm.o common.o 269obj-mc2shm = mc2shm.o common.o
263lib-mc2shm = -lrt -static 270lib-mc2shm = -lrt -static
264 271
272obj-mtdag = mtdag.o common.o
273ldf-mtdag = -lrt -pthread -static
274
265obj-mc2bench = mc2bench.o common.o 275obj-mc2bench = mc2bench.o common.o
266lib-mc2bench = -lrt -static 276lib-mc2bench = -lrt -static
267# ############################################################################## 277# ##############################################################################