aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile35
1 files changed, 32 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 5ceaedf..b4df5da 100644
--- a/Makefile
+++ b/Makefile
@@ -73,7 +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 mc2thrash1 mc2thrash2 mc2thrash3 mc2bench\
78 mc2memthrash1 mc2memthrash2 mc2memthrash3 mtdag
77 79
78.PHONY: all lib clean dump-config TAGS tags cscope help doc 80.PHONY: all lib clean dump-config TAGS tags cscope help doc
79 81
@@ -252,8 +254,35 @@ lib-memthrash = -lrt
252obj-test1 = test1.o common.o 254obj-test1 = test1.o common.o
253lib-test1 = -lrt -static 255lib-test1 = -lrt -static
254 256
255obj-mttest = mttest.o 257obj-mc2thrash = mc2thrash.o common.o
256ldf-mttest = -pthread 258lib-mc2thrash = -lrt -static
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
269obj-mc2shm = mc2shm.o common.o
270lib-mc2shm = -lrt -static
271
272obj-mc2memthrash1 = mc2memthrash.o common.o
273lib-mc2memthrash1 = -lrt -static
274
275obj-mc2memthrash2 = mc2memthrash.o common.o
276lib-mc2memthrash2 = -lrt -static
277
278obj-mc2memthrash3 = mc2memthrash.o common.o
279lib-mc2memthrash3 = -lrt -static
280
281obj-mtdag = mtdag.o common.o
282ldf-mtdag = -lrt -pthread -static
283
284obj-mc2bench = mc2bench.o common.o
285lib-mc2bench = -lrt -static
257# ############################################################################## 286# ##############################################################################
258# Build everything that depends on liblitmus. 287# Build everything that depends on liblitmus.
259 288