|
|
@ -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
|
|
|
|
|
|
|
|
|
|
|
|