From ee016636f7969c4687c905dc02aac98fc099637e Mon Sep 17 00:00:00 2001 From: Tijmen van Nesselrooij Date: Mon, 7 Sep 2020 20:29:35 +0200 Subject: [PATCH] Include binary compilation and execution in check target --- makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makefile b/makefile index 7c1d5e0..3dce55e 100644 --- a/makefile +++ b/makefile @@ -14,6 +14,8 @@ all: ${BINARY} check: ${BINARY} ./$< ./bin/test.wasm -e + ./$< ./bin/helloworld.wasm -c -o ./bin/test.bin + ./$< ./bin/test.bin -e -pb clean: -rm -rf build ./${BINARY}