shithub: aubio

ref: a2a313fbb3ae9f7cf75ea2292173b0a5e379967e
dir: /scripts/build_emscripten/

View raw version
#! /bin/bash

function checkprog() {
  type $1 >/dev/null 2>&1 || { echo >&2 "$1 required but not found, aborting."; exit 1; }
}

checkprog emcc
checkprog emconfigure
checkprog emmake

# clean
./waf distclean

# configure
emconfigure ./waf configure --with-target-platform emscripten $*

# build
emmake ./waf build