Merge pull request #118 from wryun/separate-emscripten-build-dir

Separate emscripten build directory
This commit is contained in:
joeycastillo
2022-11-22 08:37:33 -06:00
committed by GitHub
5 changed files with 11 additions and 6 deletions

View File

@@ -28,9 +28,9 @@ do
make clean
emmake make FIRMWARE=$VARIANT
mkdir "$sim_dir/$variant/"
mv "build/watch.wasm" "$sim_dir/$variant/"
mv "build/watch.js" "$sim_dir/$variant/"
mv "build/watch.html" "$sim_dir/$variant/index.html"
mv "build-sim/watch.wasm" "$sim_dir/$variant/"
mv "build-sim/watch.js" "$sim_dir/$variant/"
mv "build-sim/watch.html" "$sim_dir/$variant/index.html"
done
echo "Done."