2019-05-07 02:18:18 +00:00
|
|
|
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
2019-11-11 23:45:21 +00:00
|
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2019-05-07 02:18:18 +00:00
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#!/bin/sh
|
2019-12-13 07:30:30 +00:00
|
|
|
|
|
|
|
WAMR_DIR=${PWD}/../../..
|
|
|
|
|
|
|
|
if [ -z $KW_BUILD ] || [ -z $KW_OUT_FILE ];then
|
|
|
|
echo "Local Build Env"
|
|
|
|
makewrap="make"
|
|
|
|
else
|
|
|
|
echo "Klocwork Build Env"
|
|
|
|
makewrap="kwinject -o $KW_OUT_FILE make"
|
|
|
|
fi
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
if [ ! -d "lvgl" ]; then
|
|
|
|
git clone https://github.com/littlevgl/lvgl.git --branch v5.3
|
|
|
|
fi
|
2019-12-13 07:30:30 +00:00
|
|
|
$makewrap -f Makefile_wasm_app
|
2019-05-07 02:18:18 +00:00
|
|
|
|