1
0
Fork 0
mirror of https://github.com/DarkMatterCore/nxdumptool.git synced 2024-11-09 20:21:45 +00:00

Update build.sh

This commit is contained in:
Pablo Curiel 2020-11-21 02:13:50 -04:00
parent 6715242fed
commit 2e00977f56

View file

@ -8,6 +8,8 @@ rm -f ./*.tar.bz2
rm -rf ./code_templates/tmp
mkdir ./code_templates/tmp
make clean
for f in ./code_templates/*.c; do
basename="$(basename "$f")"
filename="${basename%.*}"
@ -21,16 +23,18 @@ for f in ./code_templates/*.c; do
rm -f ./source/main.c
cp $f ./source/main.c
make BUILD_TYPE="$filename" clean
make BUILD_TYPE="$filename" -j 12
make BUILD_TYPE="$filename"
rm -f ./build/main.o ./build/main.d
mkdir ./code_templates/tmp/$filename
cp ./$filename.nro ./code_templates/tmp/$filename/nxdumptool-rewrite.nro
#cp ./$filename.elf ./code_templates/tmp/$filename/nxdumptool-rewrite.elf
make BUILD_TYPE="$filename" clean
rm -f ./$filename.*
done
make clean
cd ./code_templates/tmp
tar -cjf ../../$tar_filename *