aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2012-05-03 16:46:21 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2012-05-03 16:46:21 -0400
commitb71e2f3c0796b66d118fd0166ae80c7d9a547740 (patch)
treee6d5843888e3ba43cbc9b5b705c892b00c88f2f1 /Makefile
parentff87ca319b0cd76f96f78f0347ad9aaa967bb16e (diff)
parent7bd1ec8308f63bffda37127d02a178c5fc91dac3 (diff)
Removed mixed-criticality codewip-color-jlh
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile22
1 files changed, 15 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 6b1feed..5527862 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ host-arch := $(shell uname -m | \
12ARCH ?= ${host-arch} 12ARCH ?= ${host-arch}
13 13
14# LITMUS_KERNEL -- where to find the litmus kernel? 14# LITMUS_KERNEL -- where to find the litmus kernel?
15LITMUS_KERNEL ?= ../litmus-rt 15LITMUS_KERNEL ?= ../backup-litmus-rt
16 16
17 17
18# ############################################################################## 18# ##############################################################################
@@ -71,8 +71,8 @@ AR := ${CROSS_COMPILE}${AR}
71# Targets 71# Targets
72 72
73all = lib ${rt-apps} 73all = lib ${rt-apps}
74rt-apps = cycles base_task rt_launch locktest rtspin rtspin.ovh rtspin.beta release_ts \ 74rt-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
157litmus-headers = include/litmus/rt_param.h include/litmus/unistd_32.h \ 157litmus-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
160unistd-headers = \ 160unistd-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
230obj-measure_syscall = null_call.o 230obj-measure_syscall = null_call.o
231lib-measure_syscall = -lm 231lib-measure_syscall = -lm
232 232
233obj-colortest = colortest.o color.o
234lib-colortest = -static
235
236obj-colorbench = colorbench.o color.o perfcounters.o common.o
237lib-colorbench = -lpthread -lrt -lgsl -lgslcblas
238
239obj-testcounters = testcounters.o
240lib-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)
273endif 282endif
274 283
275kernel-unistd-hdrs := $(foreach file,${unistd-headers},${LITMUS_KERNEL}/$(file)) 284kernel-unistd-hdrs := $(foreach file,${unistd-headers},${LITMUS_KERNEL}/$(file))
276hdr-ok := $(shell egrep '\#include ["<]litmus/unistd' ${kernel-unistd-hdrs} ) 285hdr-ok := $(shell egrep '\#include .*litmus/unistd' ${kernel-unistd-hdrs} )
277ifeq ($(strip $(hdr-ok)),) 286ifeq ($(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)
290endif 299endif
291 300
292endif 301endif
293