diff --git a/Makefile b/Makefile index 88937df..a4db04b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: clean -all: install +all: install publish clean: @if [ -f "ww" ]; then rm ww; fi diff --git a/README.md b/README.md index 0195653..0e31eed 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,21 @@ For the smoothest developer experience, we encouraged you to check that `$GOPATH ## Building from Source ->This section is for people who are hacking on Wetware itself. If you're just using Wetware, you can safely skip this section. +This section is for people who are hacking on Wetware itself. If you're just using Wetware, you don't need to read this. -It is recommended configure your shell to add `$GOPATH/bin` to your `PATH`, if you have not done so already. +Before starting, it is recommended configure your shell to add `$GOPATH/bin` to your `PATH`, if you have not done so already. + +### One-Liner + +You can perform the entire step-by-step build in once command. + +```bash +$ make +``` + + + +### Step-by-Step Start by installing the binary to your `$GOPATH/bin`. diff --git a/examples/hello-world/main.wasm b/examples/hello-world/main.wasm index b6e3bed..7471de1 100755 Binary files a/examples/hello-world/main.wasm and b/examples/hello-world/main.wasm differ diff --git a/system/cmd/nop/main.wasm b/system/cmd/nop/main.wasm index a7d3ecf..fb0cfdf 100755 Binary files a/system/cmd/nop/main.wasm and b/system/cmd/nop/main.wasm differ