Blame maemo/build.sh

8e766d
#!/bin/bash
8e766d
8e766d
set -e
8e766d
8e766d
echo "build executables for maemo"
8e766d
8e766d
cd ..
8e766d
BUILD_DIR="maemo"
8e766d
8e766d
function build() {
40c5fe
  local TYPE="$1"
a56481
  shift
40c5fe
  echo ./build.sh "$@" -config "$BUILD_DIR/config.$TYPE.h" -target "$BUILD_DIR/coolkbd.$TYPE"
40c5fe
       ./build.sh "$@" -config "$BUILD_DIR/config.$TYPE.h" -target "$BUILD_DIR/coolkbd.$TYPE"
8e766d
}
8e766d
40c5fe
build dock   "$@"
40c5fe
build bottom "$@"
40c5fe
build top    "$@"
8e766d