Update makefile to bulid runtime init on container build

main
Phani 5 years ago
parent a72e702c77
commit 48b2898676

@ -27,12 +27,17 @@ wclean:
@echo "Cleaning wasmception toolchain" @echo "Cleaning wasmception toolchain"
@cd ${SFCC} && make -C wasmception clean && cd ${ROOT} @cd ${SFCC} && make -C wasmception clean && cd ${ROOT}
.PHONY: rtinit
rtinit:
@echo "Building runtime for the first time!"
make -C runtime init
.PHONY: runtime .PHONY: runtime
runtime: runtime:
@echo "Building runtime!" @echo "Building runtime!"
make -C runtime make -C runtime
.PHONY: install .PHONY: install
install: build install: build rtinit
@./install.sh wasmception @./install.sh wasmception

Loading…
Cancel
Save