aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBjoern Brandenburg <bbb@mpi-sws.org>2014-07-22 01:53:03 -0400
committerBjoern Brandenburg <bbb@mpi-sws.org>2016-03-16 10:33:08 -0400
commit3015c398db2fe6baff8969ef3faf8f6600e3733d (patch)
tree3cff0be2f0f6f773a7632dd068ef54c0af625780 /Makefile
parent626d8bd9648dc794a1d9281644dd314f2946e642 (diff)
Add resctrl, a tool for setting up reservations
resctrl is a new tool intended to configure reservations in reservation-aware plugins. For now, it only supports the partitioned reservations (P-RES) plugin. (While at it, also update .gitignore)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 36bebb3..c5e7edd 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 76 base_mt_task uncache runtests resctl
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
@@ -235,6 +235,9 @@ obj-release_ts = release_ts.o
235obj-measure_syscall = null_call.o 235obj-measure_syscall = null_call.o
236lib-measure_syscall = -lm 236lib-measure_syscall = -lm
237 237
238obj-resctl = resctl.o
239
240
238# ############################################################################## 241# ##############################################################################
239# Build everything that depends on liblitmus. 242# Build everything that depends on liblitmus.
240 243