mirror of
https://github.com/DarkMatterCore/nxdumptool.git
synced 2024-11-09 20:21:45 +00:00
Add comments to build script (#107)
This commit is contained in:
parent
77fa25e0e0
commit
fcf0fcbedb
1 changed files with 5 additions and 0 deletions
5
build.sh
5
build.sh
|
@ -3,6 +3,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")"
|
||||||
|
|
||||||
archive_filename="nxdumptool-rewrite_poc_$(git rev-parse --short HEAD)"
|
archive_filename="nxdumptool-rewrite_poc_$(git rev-parse --short HEAD)"
|
||||||
|
|
||||||
|
# Clean-up from last build
|
||||||
rm -f ./*.7z
|
rm -f ./*.7z
|
||||||
|
|
||||||
rm -rf ./code_templates/tmp
|
rm -rf ./code_templates/tmp
|
||||||
|
@ -12,6 +13,7 @@ mv ./source/main.cpp ./main.cpp
|
||||||
|
|
||||||
make clean_all
|
make clean_all
|
||||||
|
|
||||||
|
# Build loop
|
||||||
for f in ./code_templates/*.c; do
|
for f in ./code_templates/*.c; do
|
||||||
basename="$(basename "$f")"
|
basename="$(basename "$f")"
|
||||||
filename="${basename%.*}"
|
filename="${basename%.*}"
|
||||||
|
@ -38,12 +40,15 @@ for f in ./code_templates/*.c; do
|
||||||
make BUILD_TYPE="$filename" clean
|
make BUILD_TYPE="$filename" clean
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# Post build clean-up
|
||||||
make clean_all
|
make clean_all
|
||||||
|
|
||||||
|
# Package resulting binaries
|
||||||
cd ./code_templates/tmp
|
cd ./code_templates/tmp
|
||||||
7z a ../../"$archive_filename.7z" */*.nro
|
7z a ../../"$archive_filename.7z" */*.nro
|
||||||
7z a ../../"$archive_filename-Debug_ELFs.7z" */*.elf
|
7z a ../../"$archive_filename-Debug_ELFs.7z" */*.elf
|
||||||
|
|
||||||
|
# Final clean-up
|
||||||
cd ../..
|
cd ../..
|
||||||
rm -f ./source/main.c
|
rm -f ./source/main.c
|
||||||
rm -rf ./code_templates/tmp
|
rm -rf ./code_templates/tmp
|
||||||
|
|
Loading…
Reference in a new issue