#!/bin/sh

source ../Config.sh

# This is a debug tool: Do not build it for a final firmware
[ "$PP_BUILD_TYPE" = "final" ] && exit 0

pp_build_local() {
    make BUILDFOR=erla install
}

pp_do "$@"
