aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8886ff9..3489de6 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,7 @@ LITMUS_KERNEL ?= ../litmus-rt
19# Internal configuration. 19# Internal configuration.
20 20
21# compiler flags 21# compiler flags
22flags-debug = -Wall -Wdeclaration-after-statement -g 22flags-debug = -O2 -Wall -Werror -g -Wdeclaration-after-statement
23flags-api = -D_XOPEN_SOURCE=600 -D_GNU_SOURCE 23flags-api = -D_XOPEN_SOURCE=600 -D_GNU_SOURCE
24flags-misc = -fasynchronous-unwind-tables -fnon-call-exceptions 24flags-misc = -fasynchronous-unwind-tables -fnon-call-exceptions
25 25
@@ -72,7 +72,8 @@ AR := ${CROSS_COMPILE}${AR}
72 72
73all = lib ${rt-apps} 73all = lib ${rt-apps}
74rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \ 74rt-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
237obj-dgl = dgl.o common.o 238obj-dgl = dgl.o common.o
238lib-dgl = -lrt -pthread 239lib-dgl = -lrt -pthread
239 240
241obj-uncache = uncache.o
242lib-uncache = -lrt
243
240obj-release_ts = release_ts.o 244obj-release_ts = release_ts.o
241 245
242obj-measure_syscall = null_call.o 246obj-measure_syscall = null_call.o