diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 35 |
1 files changed, 32 insertions, 3 deletions
@@ -73,7 +73,9 @@ AR := ${CROSS_COMPILE}${AR} | |||
73 | 73 | ||
74 | all = lib ${rt-apps} | 74 | all = lib ${rt-apps} |
75 | rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \ | 75 | rt-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 | |||
252 | obj-test1 = test1.o common.o | 254 | obj-test1 = test1.o common.o |
253 | lib-test1 = -lrt -static | 255 | lib-test1 = -lrt -static |
254 | 256 | ||
255 | obj-mttest = mttest.o | 257 | obj-mc2thrash = mc2thrash.o common.o |
256 | ldf-mttest = -pthread | 258 | lib-mc2thrash = -lrt -static |
259 | |||
260 | obj-mc2thrash1 = mc2thrash.o common.o | ||
261 | lib-mc2thrash1 = -lrt -static | ||
262 | |||
263 | obj-mc2thrash2 = mc2thrash.o common.o | ||
264 | lib-mc2thrash2 = -lrt -static | ||
265 | |||
266 | obj-mc2thrash3 = mc2thrash.o common.o | ||
267 | lib-mc2thrash3 = -lrt -static | ||
268 | |||
269 | obj-mc2shm = mc2shm.o common.o | ||
270 | lib-mc2shm = -lrt -static | ||
271 | |||
272 | obj-mc2memthrash1 = mc2memthrash.o common.o | ||
273 | lib-mc2memthrash1 = -lrt -static | ||
274 | |||
275 | obj-mc2memthrash2 = mc2memthrash.o common.o | ||
276 | lib-mc2memthrash2 = -lrt -static | ||
277 | |||
278 | obj-mc2memthrash3 = mc2memthrash.o common.o | ||
279 | lib-mc2memthrash3 = -lrt -static | ||
280 | |||
281 | obj-mtdag = mtdag.o common.o | ||
282 | ldf-mtdag = -lrt -pthread -static | ||
283 | |||
284 | obj-mc2bench = mc2bench.o common.o | ||
285 | lib-mc2bench = -lrt -static | ||
257 | # ############################################################################## | 286 | # ############################################################################## |
258 | # Build everything that depends on liblitmus. | 287 | # Build everything that depends on liblitmus. |
259 | 288 | ||