aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGlenn Elliott <gelliott@cs.unc.edu>2012-07-16 20:28:56 -0400
committerBjoern Brandenburg <bbb@mpi-sws.org>2012-08-01 02:46:21 -0400
commitc84c35511dcc32262e12b8a4e99b4e678a433371 (patch)
treebe8deabc38d59dd1d077a8dd4c65c89ba1fdfecc /Makefile
parent8afa727c28064c7672f656b889d8049b49370139 (diff)
API Update: Support arbitrary deadlines.
Updated APIs to support arbitrary deadlines. Added macros for implicit deadlines. Note: Had to tweak Makefile to support gcc version >= 4.6 (moved -lrt to the end of the link command).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2109a45..391dc65 100644
--- a/Makefile
+++ b/Makefile
@@ -221,7 +221,7 @@ lib-measure_syscall = -lm
221 221
222.SECONDEXPANSION: 222.SECONDEXPANSION:
223${rt-apps}: $${obj-$$@} liblitmus.a 223${rt-apps}: $${obj-$$@} liblitmus.a
224 $(CC) -o $@ $(LDFLAGS) ${ldf-$@} $(filter-out liblitmus.a,$+) $(LOADLIBS) $(LDLIBS) ${lib-$@} ${liblitmus-flags} 224 $(CC) -o $@ $(LDFLAGS) ${ldf-$@} $(filter-out liblitmus.a,$+) $(LOADLIBS) $(LDLIBS) ${liblitmus-flags} ${lib-$@}
225 225
226# ############################################################################## 226# ##############################################################################
227# Dependency resolution. 227# Dependency resolution.