diff options
author | Bjoern Brandenburg <bbb@mpi-sws.org> | 2014-07-22 01:53:03 -0400 |
---|---|---|
committer | Bjoern Brandenburg <bbb@mpi-sws.org> | 2014-07-22 01:54:18 -0400 |
commit | a2675ecbfb665f5f9de5f541d7d22c6710b4ff97 (patch) | |
tree | bfb5fed4e218bb59b4f8d2d525c4815a16c033d5 /Makefile | |
parent | 8d323049edd004c25f370468aa30cdf1ba76e735 (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-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -73,7 +73,7 @@ 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 | 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 | |||
234 | obj-measure_syscall = null_call.o | 234 | obj-measure_syscall = null_call.o |
235 | lib-measure_syscall = -lm | 235 | lib-measure_syscall = -lm |
236 | 236 | ||
237 | obj-resctrl = resctrl.o | ||
238 | |||
239 | |||
237 | # ############################################################################## | 240 | # ############################################################################## |
238 | # Build everything that depends on liblitmus. | 241 | # Build everything that depends on liblitmus. |
239 | 242 | ||