diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -19,7 +19,7 @@ LITMUS_KERNEL ?= ../litmus-rt | |||
19 | # Internal configuration. | 19 | # Internal configuration. |
20 | 20 | ||
21 | # compiler flags | 21 | # compiler flags |
22 | flags-debug = -Wall -Wdeclaration-after-statement -g | 22 | flags-debug = -O2 -Wall -Werror -g -Wdeclaration-after-statement |
23 | flags-api = -D_XOPEN_SOURCE=600 -D_GNU_SOURCE | 23 | flags-api = -D_XOPEN_SOURCE=600 -D_GNU_SOURCE |
24 | flags-misc = -fasynchronous-unwind-tables -fnon-call-exceptions | 24 | flags-misc = -fasynchronous-unwind-tables -fnon-call-exceptions |
25 | 25 | ||
@@ -72,7 +72,8 @@ AR := ${CROSS_COMPILE}${AR} | |||
72 | 72 | ||
73 | all = lib ${rt-apps} | 73 | all = lib ${rt-apps} |
74 | rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \ | 74 | rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \ |
75 | base_mt_task runtests nested locktest ikglptest dgl aux_threads normal_task | 75 | base_mt_task uncache runtests \ |
76 | nested locktest ikglptest dgl aux_threads normal_task | ||
76 | 77 | ||
77 | .PHONY: all lib clean dump-config TAGS tags cscope help | 78 | .PHONY: all lib clean dump-config TAGS tags cscope help |
78 | 79 | ||
@@ -237,6 +238,9 @@ lib-normal_task = -lrt -pthread -lm | |||
237 | obj-dgl = dgl.o common.o | 238 | obj-dgl = dgl.o common.o |
238 | lib-dgl = -lrt -pthread | 239 | lib-dgl = -lrt -pthread |
239 | 240 | ||
241 | obj-uncache = uncache.o | ||
242 | lib-uncache = -lrt | ||
243 | |||
240 | obj-release_ts = release_ts.o | 244 | obj-release_ts = release_ts.o |
241 | 245 | ||
242 | obj-measure_syscall = null_call.o | 246 | obj-measure_syscall = null_call.o |