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>2014-07-22 01:54:18 -0400
commita2675ecbfb665f5f9de5f541d7d22c6710b4ff97 (patch)
treebfb5fed4e218bb59b4f8d2d525c4815a16c033d5 /Makefile
parent8d323049edd004c25f370468aa30cdf1ba76e735 (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 4742fd2..34c428f 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 resctrl
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
@@ -234,6 +234,9 @@ obj-release_ts = release_ts.o
234obj-measure_syscall = null_call.o 234obj-measure_syscall = null_call.o
235lib-measure_syscall = -lm 235lib-measure_syscall = -lm
236 236
237obj-resctrl = resctrl.o
238
239
237# ############################################################################## 240# ##############################################################################
238# Build everything that depends on liblitmus. 241# Build everything that depends on liblitmus.
239 242