Skip to content

Commit c6e510a

Browse files
make.sh: Include clean script + minor hack
I decided to throw in the clean script which allows a developer to run make.sh after cloning without needing to run clean.sh. This is very minor but is more convenient for me. I also define the cmake toolchain twice which gets around a strange but that prevents the compile from completing. Before this change you could run make.sh twice to get a completed compilation, but this removes the need for that. I would like to figure out why this is needed, but it's not really high on my priority list.
1 parent 94d5012 commit c6e510a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

make.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#!/bin/sh
2+
./clean.sh &&
23
cd build/ &&
34
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitArm3DS.cmake ../ &&
5+
cmake -DCMAKE_TOOLCHAIN_FILE=../DevkitArm3DS.cmake ../ &&
46
cmake --build . --target CtrBootManager_a9lh

0 commit comments

Comments
 (0)