gamnit: add the check rule to the template makefile and remove all
[nit.git] / lib / gamnit / examples / template_flat / Makefile
1 bin/template_flat: $(shell nitls -M src/template_flat.nit -m linux)
2 mkdir -p bin/
3 nitc src/template_flat.nit -m linux -o $@
4
5 android: bin/template_flat.apk
6 bin/template_flat.apk: $(shell nitls -M src/template_flat.nit -m android)
7 mkdir -p bin/
8 nitc src/template_flat.nit -m android -o $@
9
10 check:
11 nitunit .
12
13 clean:
14 rm -rf bin/