diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-05 03:22:27 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-05 03:22:27 +0000 |
commit | 201361b4e7e7f595757d121f4fbbe995b325f0f6 (patch) | |
tree | d72953a28b107e0b35888184b56abba1aaf9488c /tools/klee-replay/Makefile | |
parent | 928784d387e55381aa407dc168bcf422dc40a69c (diff) | |
download | klee-201361b4e7e7f595757d121f4fbbe995b325f0f6.tar.gz |
Add klee-replay tool.
- Not yet enabled as part of the build, and not recently tested. - This has also been trimmed down significantly from the version which is able to fail system calls, that functionality was too experimental to be generally useful. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@78148 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/klee-replay/Makefile')
-rw-r--r-- | tools/klee-replay/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tools/klee-replay/Makefile b/tools/klee-replay/Makefile new file mode 100644 index 00000000..fcce0483 --- /dev/null +++ b/tools/klee-replay/Makefile @@ -0,0 +1,19 @@ +#===-- tools/klee-replay/Makefile --------------------------*- Makefile -*--===# +# +# The KLEE Symbolic Virtual Machine +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +#===------------------------------------------------------------------------===# + +LEVEL=../.. +TOOLNAME = klee-replay + +USEDLIBS = kleeBasic.a +LINK_COMPONENTS = +NO_PEDANTIC=1 + +include $(LEVEL)/Makefile.common + +LIBS += -lutil |