A beginning is a very delicate time
This commit is contained in:
18
Makefile
Normal file
18
Makefile
Normal 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
|
||||
Reference in New Issue
Block a user