flowrlib 0.8.3

The runtime library for executing 'flow' programs compiled with the 'flowc' compiler
Documentation
build: native wasm

native:
	@echo ""
	@echo "------- Starting build of 'flowrlib' native -------------"
	cargo build
	@echo "------- Done     build of 'flowrlib' native -------------"

wasm:
	@echo ""
	@echo "------- Starting build of 'flowrlib' wasm -------------"
	cargo build --target=wasm32-unknown-unknown
	@echo "------- Done     build of 'flowrlib' wasm -------------"

test:
	cargo test

test-wasm:
	cargo build --target=wasm32-unknown-unknown

clean:
	cargo clean