aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2012-05-03 17:13:07 -0400
committerJonathan Herman <hermanjl@cs.unc.edu>2012-05-03 17:13:07 -0400
commitc8d9dcdb69bc92344098b38a29ae9688465f6ec7 (patch)
tree04d7afe2b25237afffbd739dca9824476c34eb18 /Makefile
parentb71e2f3c0796b66d118fd0166ae80c7d9a547740 (diff)
parentfe7e981a0e5f555b256d8d88249101e9373a6402 (diff)
Merge remote-tracking branch 'origin/wip-color' into wip-color
Conflicts: Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5527862..b4600fc 100644
--- a/Makefile
+++ b/Makefile
@@ -72,7 +72,7 @@ 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 colortest colorbench testcounters bespin 75 base_mt_task runtests colortest colorbench testcounters singlepage
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
@@ -236,6 +236,9 @@ lib-colortest = -static
236obj-colorbench = colorbench.o color.o perfcounters.o common.o 236obj-colorbench = colorbench.o color.o perfcounters.o common.o
237lib-colorbench = -lpthread -lrt -lgsl -lgslcblas 237lib-colorbench = -lpthread -lrt -lgsl -lgslcblas
238 238
239obj-singlepage = singlepage.o color.o perfcounters.o common.o
240lib-singlepage =
241
239obj-testcounters = testcounters.o 242obj-testcounters = testcounters.o
240lib-testcounters = 243lib-testcounters =
241 244
@@ -244,7 +247,7 @@ lib-testcounters =
244 247
245.SECONDEXPANSION: 248.SECONDEXPANSION:
246${rt-apps}: $${obj-$$@} liblitmus.a 249${rt-apps}: $${obj-$$@} liblitmus.a
247 $(CC) -o $@ $(LDFLAGS) ${ldf-$@} $(filter-out liblitmus.a,$+) $(LOADLIBS) $(LDLIBS) ${liblitmus-flags} ${lib-$@} 250 $(CC) -o $@ $(LDFLAGS) ${ldf-$@} $(filter-out liblitmus.a,$+) $(LOADLIBS) $(LDLIBS) ${lib-$@} ${liblitmus-flags}
248 251
249# ############################################################################## 252# ##############################################################################
250# Dependency resolution. 253# Dependency resolution.