This commit is contained in:
Matthew Kennedy 2023-02-22 15:29:48 -08:00
parent c674734d2a
commit ff98133f34
5 changed files with 3 additions and 17 deletions

View File

@ -19,7 +19,9 @@ echo "Entering $SCRIPT_NAME with folder $BOARD_DIR and bundle name $BUNDLE_NAME"
COMPILE_SCRIPT="compile_$BUNDLE_NAME.sh"
cd firmware
bash clean.sh
rm -rf .dep
rm -rf build
rm -rf pch/pch.h.gch.sh
cd ..
root_dir=$(pwd)

View File

@ -1,2 +0,0 @@
@echo off
sh.exe compile.sh

View File

@ -1,3 +0,0 @@
echo "Entering simulator/clean.sh"
rm -rf .dep
rm -rf build

View File

@ -1,2 +0,0 @@
@echo off
sh.exe compile.sh

View File

@ -1,9 +0,0 @@
#!/usr/bin/env bash
set -e
rm -f build/rusefi_simulator.exe
make -j$(nproc) -r $@
[ $? -eq 0 ] || { echo "Simulator compilation failed"; exit 1; }
file build/rusefi_simulator
echo "TIMESTAMP $(date "+%D %T.%2N") just compiled rusEFI simulator"