A beginning is a very delicate time

This commit is contained in:
2021-10-17 22:32:05 -07:00
commit 0101f0c6da
6 changed files with 297 additions and 0 deletions

18
Makefile Normal file
View File

@@ -0,0 +1,18 @@
all: klee
clean:
rm -f drawSquare.bc drawSquare
klee: drawSquare.bc drawSquare
klee drawSquare.bc
for ktest in klee-last/*.ktest; do \
KTEST_FILE="$$ktest" ./drawSquare || true; \
done
drawSquare.bc: drawSquare.c
clang -emit-llvm -c -g -o $@ $(CFLAGS) $^
drawSquare: drawSquare.c
clang -Os -lkleeRuntest -o $@ $(CFLAGS) $^
.PHONY: all clean klee