diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-05-03 16:46:21 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-05-03 16:46:21 -0400 |
commit | b71e2f3c0796b66d118fd0166ae80c7d9a547740 (patch) | |
tree | e6d5843888e3ba43cbc9b5b705c892b00c88f2f1 /Makefile | |
parent | ff87ca319b0cd76f96f78f0347ad9aaa967bb16e (diff) | |
parent | 7bd1ec8308f63bffda37127d02a178c5fc91dac3 (diff) |
Removed mixed-criticality codewip-color-jlh
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
@@ -12,7 +12,7 @@ host-arch := $(shell uname -m | \ | |||
12 | ARCH ?= ${host-arch} | 12 | ARCH ?= ${host-arch} |
13 | 13 | ||
14 | # LITMUS_KERNEL -- where to find the litmus kernel? | 14 | # LITMUS_KERNEL -- where to find the litmus kernel? |
15 | LITMUS_KERNEL ?= ../litmus-rt | 15 | LITMUS_KERNEL ?= ../backup-litmus-rt |
16 | 16 | ||
17 | 17 | ||
18 | # ############################################################################## | 18 | # ############################################################################## |
@@ -71,8 +71,8 @@ AR := ${CROSS_COMPILE}${AR} | |||
71 | # Targets | 71 | # Targets |
72 | 72 | ||
73 | all = lib ${rt-apps} | 73 | all = lib ${rt-apps} |
74 | rt-apps = cycles base_task rt_launch locktest rtspin rtspin.ovh rtspin.beta release_ts \ | 74 | rt-apps = cycles base_task rt_launch rtspin release_ts measure_syscall \ |
75 | measure_syscall base_mt_task runtests bespin | 75 | base_mt_task runtests colortest colorbench testcounters bespin |
76 | 76 | ||
77 | .PHONY: all lib clean dump-config TAGS tags cscope help | 77 | .PHONY: all lib clean dump-config TAGS tags cscope help |
78 | 78 | ||
@@ -155,7 +155,7 @@ arch/${include-${ARCH}}/include/asm/%.h: \ | |||
155 | cp $< $@ | 155 | cp $< $@ |
156 | 156 | ||
157 | litmus-headers = include/litmus/rt_param.h include/litmus/unistd_32.h \ | 157 | litmus-headers = include/litmus/rt_param.h include/litmus/unistd_32.h \ |
158 | include/litmus/unistd_64.h include/litmus/sched_mc.h include/litmus/color.h | 158 | include/litmus/unistd_64.h include/litmus/color.h |
159 | 159 | ||
160 | unistd-headers = \ | 160 | unistd-headers = \ |
161 | $(foreach file,${unistd-${ARCH}},arch/${include-${ARCH}}/include/asm/$(file)) | 161 | $(foreach file,${unistd-${ARCH}},arch/${include-${ARCH}}/include/asm/$(file)) |
@@ -230,12 +230,21 @@ lib-locktest = -lrt -pthread | |||
230 | obj-measure_syscall = null_call.o | 230 | obj-measure_syscall = null_call.o |
231 | lib-measure_syscall = -lm | 231 | lib-measure_syscall = -lm |
232 | 232 | ||
233 | obj-colortest = colortest.o color.o | ||
234 | lib-colortest = -static | ||
235 | |||
236 | obj-colorbench = colorbench.o color.o perfcounters.o common.o | ||
237 | lib-colorbench = -lpthread -lrt -lgsl -lgslcblas | ||
238 | |||
239 | obj-testcounters = testcounters.o | ||
240 | lib-testcounters = | ||
241 | |||
233 | # ############################################################################## | 242 | # ############################################################################## |
234 | # Build everything that depends on liblitmus. | 243 | # Build everything that depends on liblitmus. |
235 | 244 | ||
236 | .SECONDEXPANSION: | 245 | .SECONDEXPANSION: |
237 | ${rt-apps}: $${obj-$$@} liblitmus.a | 246 | ${rt-apps}: $${obj-$$@} liblitmus.a |
238 | $(CC) -o $@ $(LDFLAGS) ${ldf-$@} $(filter-out liblitmus.a,$+) $(LOADLIBS) $(LDLIBS) ${lib-$@} ${liblitmus-flags} | 247 | $(CC) -o $@ $(LDFLAGS) ${ldf-$@} $(filter-out liblitmus.a,$+) $(LOADLIBS) $(LDLIBS) ${liblitmus-flags} ${lib-$@} |
239 | 248 | ||
240 | # ############################################################################## | 249 | # ############################################################################## |
241 | # Dependency resolution. | 250 | # Dependency resolution. |
@@ -273,7 +282,7 @@ $(error Cannot build without access to the LITMUS^RT kernel source) | |||
273 | endif | 282 | endif |
274 | 283 | ||
275 | kernel-unistd-hdrs := $(foreach file,${unistd-headers},${LITMUS_KERNEL}/$(file)) | 284 | kernel-unistd-hdrs := $(foreach file,${unistd-headers},${LITMUS_KERNEL}/$(file)) |
276 | hdr-ok := $(shell egrep '\#include ["<]litmus/unistd' ${kernel-unistd-hdrs} ) | 285 | hdr-ok := $(shell egrep '\#include .*litmus/unistd' ${kernel-unistd-hdrs} ) |
277 | ifeq ($(strip $(hdr-ok)),) | 286 | ifeq ($(strip $(hdr-ok)),) |
278 | $(info (!!) Could not find LITMUS^RT system calls in ${kernel-unistd-hdrs}.) | 287 | $(info (!!) Could not find LITMUS^RT system calls in ${kernel-unistd-hdrs}.) |
279 | $(error Your kernel headers do not seem to be LITMUS^RT headers) | 288 | $(error Your kernel headers do not seem to be LITMUS^RT headers) |
@@ -290,4 +299,3 @@ $(error Cannot build without access to the architecture-specific files) | |||
290 | endif | 299 | endif |
291 | 300 | ||
292 | endif | 301 | endif |
293 | |||