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