tools: add a 'global' compilation target to the tests makefile
[nit.git] / tests / Makefile
1
2 all:
3 ./tests.sh *.nit ../examples/*.nit ../src/nitdoc.nit
4
5 some:
6 ./tests.sh base_compile.nit base_attr.nit base_gen.nit test_gen_inh.nit bench_fib.nit example_objet.nit
7
8 global:
9 ./tests.sh -o --global *.nit ../examples/*.nit ../src/nitdoc.nit
10
11 failed:
12 @[ ! -s errlist ] && echo 'No failed tests to execute' ; true
13 @[ -s errlist ] && ./tests.sh `cat errlist | sort -u` ; true
14
15 store:
16 ./store_save.sh *.nit
17
18 clean:
19 @rm -r -f -- *.bin *.res *.write *.err *.log alt || true