build: correct Makefile to build tinygo executable correctly when build directory does not exist, such as after running 'make clean'

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2019-02-19 09:43:12 +01:00
committed by Ayke
parent 856e5fa179
commit 2d5bc836f5
+1 -1
View File
@@ -108,7 +108,7 @@ gen-device-stm32:
go fmt ./src/device/stm32
# Build the Go compiler.
tinygo:
build/tinygo:
@mkdir -p build
go build -o build/tinygo .