Skip to content

Commit fa7d62a

Browse files
author
Daniel Kroening
committed
Makefile for goto-analyzer-taint-ansi-c
1 parent 758ebb3 commit fa7d62a

File tree

1 file changed

+19
-0
lines changed
  • regression/goto-analyzer-taint-ansi-c

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
default: tests.log
2+
3+
test:
4+
@../test.pl -p -c ../../../src/goto-analyzer/goto-analyzer
5+
6+
tests.log: ../test.pl
7+
@../test.pl -p -c ../../../src/goto-analyzer/goto-analyzer
8+
9+
show:
10+
@for dir in *; do \
11+
if [ -d "$$dir" ]; then \
12+
vim -o "$$dir/*.java" "$$dir/*.out"; \
13+
fi; \
14+
done;
15+
16+
clean:
17+
find -name '*.out' -execdir $(RM) '{}' \;
18+
find -name '*.gb' -execdir $(RM) '{}' \;
19+
$(RM) tests.log

0 commit comments

Comments
 (0)