aboutsummaryrefslogtreecommitdiffhomepage
path: root/runtime/Makefile
diff options
context:
space:
mode:
authorCristian Cadar <c.cadar@imperial.ac.uk>2013-12-22 07:17:25 -0800
committerCristian Cadar <c.cadar@imperial.ac.uk>2013-12-22 07:17:25 -0800
commitc26accf1c3fe572fdcb5e21d74857b836df1efbf (patch)
tree645ceda7642bb3c4acc1e701a8869809b28e1683 /runtime/Makefile
parentc23df4c98173f0733945f3d14009cdd5ffbee36b (diff)
parent2f6e89baf9cd5f5292cd0aa6047144920a564202 (diff)
downloadklee-c26accf1c3fe572fdcb5e21d74857b836df1efbf.tar.gz
Merge pull request #78 from delcypher/fix_klee_install
Fixes klee install. Adds support for passing libc.a files to --with-uclibc.
Diffstat (limited to 'runtime/Makefile')
-rw-r--r--runtime/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/Makefile b/runtime/Makefile
index 24824d08..7eb02d3f 100644
--- a/runtime/Makefile
+++ b/runtime/Makefile
@@ -23,4 +23,8 @@ ifeq ($(ENABLE_POSIX_RUNTIME),1)
PARALLEL_DIRS += POSIX
endif
+ifeq ($(ENABLE_UCLIBC),1)
+PARALLEL_DIRS += klee-uclibc
+endif
+
include $(LEVEL)/Makefile.common