From a0a3b02860be22628f7335463d747e54b1d6107e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexis=20Laferri=C3=A8re?= Date: Sat, 6 May 2017 09:49:19 -0400 Subject: [PATCH] gamnit: add the check rule to the template makefile and remove all MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Alexis Laferrière --- lib/gamnit/examples/template_flat/Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/gamnit/examples/template_flat/Makefile b/lib/gamnit/examples/template_flat/Makefile index 25628f2..12cb2ed 100644 --- a/lib/gamnit/examples/template_flat/Makefile +++ b/lib/gamnit/examples/template_flat/Makefile @@ -1,5 +1,3 @@ -all: bin/template_flat bin/template_flat.apk - bin/template_flat: $(shell nitls -M src/template_flat.nit -m linux) mkdir -p bin/ nitc src/template_flat.nit -m linux -o $@ @@ -9,5 +7,8 @@ bin/template_flat.apk: $(shell nitls -M src/template_flat.nit -m android) mkdir -p bin/ nitc src/template_flat.nit -m android -o $@ +check: + nitunit . + clean: rm -rf bin/ -- 1.7.9.5