shithub: aubio

ref: 05774ba36f7f7a8f85389f9222f95f9e4f7b02e9
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