source:
examples/Makefile
@
efd7ebe
Last change on this file since efd7ebe was 8de54ab, checked in by , 12 years ago | |
---|---|
|
|
File size: 365 bytes |
Line | |
---|---|
1 | |
2 | |
3 | DIRECTORY=example_scripts python_tests scaling_tests creddy_prover_tests passphrase_tests |
4 | .PHONY : runcheck clean |
5 | |
6 | all: runcheck |
7 | |
8 | clean: |
9 | @for i in $(DIRECTORY); do \ |
10 | here=`pwd`; \ |
11 | cd $$i; \ |
12 | make -s clean; \ |
13 | cd $$here; \ |
14 | done; |
15 | |
16 | runcheck: |
17 | make clean |
18 | @for i in $(DIRECTORY); do \ |
19 | here=`pwd`; \ |
20 | cd $$i; \ |
21 | make -s runcheck; \ |
22 | cd $$here; \ |
23 | done; |
24 |
Note: See TracBrowser
for help on using the repository browser.