From 48b289867614b997fe80f653a9d5a3c3d56933a3 Mon Sep 17 00:00:00 2001 From: Phani Date: Sat, 4 Apr 2020 13:31:04 -0400 Subject: [PATCH] Update makefile to bulid runtime init on container build --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2d5ad3a..f48e699 100644 --- a/Makefile +++ b/Makefile @@ -27,12 +27,17 @@ wclean: @echo "Cleaning wasmception toolchain" @cd ${SFCC} && make -C wasmception clean && cd ${ROOT} +.PHONY: rtinit +rtinit: + @echo "Building runtime for the first time!" + make -C runtime init + .PHONY: runtime runtime: @echo "Building runtime!" make -C runtime .PHONY: install -install: build +install: build rtinit @./install.sh wasmception