tests: add a 'icode' target to the 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 icode:
12 ./tests_icode.sh icode*.nit
13
14 failed:
15 @[ ! -s errlist ] && echo 'No failed tests to execute' ; true
16 @[ -s errlist ] && ./tests.sh `cat errlist | sort -u` ; true
17
18 store:
19 ./store_save.sh *.nit
20
21 clean:
22 @rm -r -f -- *.bin *.res *.write *.err *.log alt || true