chore: Skip wasmception build if present

main
Sean McBride 4 years ago
parent 4ffc0c7b14
commit abed38c544

@ -3,15 +3,23 @@ ROOT=${ROOT:-$(cd "$(dirname ${BASH_SOURCE:-$0})" && pwd)}
.PHONY: build .PHONY: build
build: build:
@echo "Building wasmception toolchain, takes a while." if [[ -x "${COMPILER}/wasmception/dist/bin/clang" ]]; then
@cd ${COMPILER} && make -C wasmception && cd ${ROOT} @echo "Wasmception seems to have been built... Skipping"
else
@echo "Building wasmception toolchain, takes a while."
@cd ${COMPILER} && make -C wasmception && cd ${ROOT}
fi
@echo "Building aWsm compiler (release)" @echo "Building aWsm compiler (release)"
@cd ${COMPILER} && cargo build --release && cd ${ROOT} @cd ${COMPILER} && cargo build --release && cd ${ROOT}
.PHONY: build-dev .PHONY: build-dev
build-dev: build-dev:
@echo "Building wasmception toolchain, takes a while." if [[ -x "${COMPILER}/wasmception/dist/bin/clang" ]]; then
@cd ${COMPILER} && make -C wasmception && cd ${ROOT} @echo "Wasmception seems to have been built... Skipping"
else
@echo "Building wasmception toolchain, takes a while."
@cd ${COMPILER} && make -C wasmception && cd ${ROOT}
fi
@echo "Building aWsm compiler (default==debug)" @echo "Building aWsm compiler (default==debug)"
@cd ${COMPILER} && cargo build && cd ${ROOT} @cd ${COMPILER} && cargo build && cd ${ROOT}

Loading…
Cancel
Save