We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 758ebb3 commit fa7d62aCopy full SHA for fa7d62a
regression/goto-analyzer-taint-ansi-c/Makefile
@@ -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
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