diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-05 03:45:08 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-05 03:45:08 +0000 |
commit | a0ccc8423c579e131ee5763a53ecfff6bfb33a81 (patch) | |
tree | 86a5b0c911b5901918e10cf9e25966bdbb62e18f /tools/Makefile | |
parent | 201361b4e7e7f595757d121f4fbbe995b325f0f6 (diff) | |
download | klee-a0ccc8423c579e131ee5763a53ecfff6bfb33a81.tar.gz |
Build klee-replay when the POSIX runtime is enabled.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@78149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/Makefile')
-rw-r--r-- | tools/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile index 3fd6f5be..64b50042 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -16,6 +16,11 @@ LEVEL=.. # List all of the subdirectories that we will compile. # PARALLEL_DIRS=klee kleaver ktest-tool gen-random-bout klee-stats -# FIXME: Move qplayer functionality into kleaver + +include $(LEVEL)/Makefile.config + +ifeq ($(ENABLE_POSIX_RUNTIME),1) +PARALLEL_DIRS += klee-replay +endif include $(LEVEL)/Makefile.common |