source:
examples/Makefile
@
4e10a0f
Last change on this file since 4e10a0f was 4e10a0f, checked in by , 12 years ago | |
---|---|
|
|
File size: 426 bytes |
Rev | Line | |
---|---|---|
[461541a] | 1 | |
2 | ||
[4e10a0f] | 3 | DIRECTORY=creddy_tests creddy_prover_tests example_scripts python_tests scaling_tests |
4 | ||
[461541a] | 5 | .PHONY : runcheck clean |
6 | ||
7 | all: runcheck | |
8 | ||
9 | clean: | |
10 | @printf "\n ==> make CLEAN \n" | |
11 | @for i in $(DIRECTORY); do \ | |
12 | here=`pwd`; \ | |
13 | cd $$i; \ | |
14 | make -s clean; \ | |
15 | cd $$here; \ | |
16 | done; | |
17 | ||
18 | runcheck: | |
19 | @make -s clean | |
20 | @printf "\n ==> make TESTS \n" | |
21 | @for i in $(DIRECTORY); do \ | |
22 | here=`pwd`; \ | |
23 | cd $$i; \ | |
24 | make -s runcheck; \ | |
25 | cd $$here; \ | |
26 | done; | |
27 |
Note: See TracBrowser
for help on using the repository browser.