diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-05-03 17:13:07 -0400 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2012-05-03 17:13:07 -0400 |
commit | c8d9dcdb69bc92344098b38a29ae9688465f6ec7 (patch) | |
tree | 04d7afe2b25237afffbd739dca9824476c34eb18 /Makefile | |
parent | b71e2f3c0796b66d118fd0166ae80c7d9a547740 (diff) | |
parent | fe7e981a0e5f555b256d8d88249101e9373a6402 (diff) |
Merge remote-tracking branch 'origin/wip-color' into wip-color
Conflicts:
Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -72,7 +72,7 @@ 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 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 | |||
236 | obj-colorbench = colorbench.o color.o perfcounters.o common.o | 236 | obj-colorbench = colorbench.o color.o perfcounters.o common.o |
237 | lib-colorbench = -lpthread -lrt -lgsl -lgslcblas | 237 | lib-colorbench = -lpthread -lrt -lgsl -lgslcblas |
238 | 238 | ||
239 | obj-singlepage = singlepage.o color.o perfcounters.o common.o | ||
240 | lib-singlepage = | ||
241 | |||
239 | obj-testcounters = testcounters.o | 242 | obj-testcounters = testcounters.o |
240 | lib-testcounters = | 243 | lib-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. |