diff options
Diffstat (limited to 'makeSummerSun')
-rwxr-xr-x | makeSummerSun | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/makeSummerSun b/makeSummerSun index 4927ec4..a57f9b6 100755 --- a/makeSummerSun +++ b/makeSummerSun @@ -1,10 +1,9 @@ #!/bin/sh -rm -r ~/.wine remove_files() { - rm "~/Dropbox/NEWERsmbw/Summer\ Sun/System$1.bin" - rm "~/Dropbox/NEWERsmbw/Summer\ Sun/DLCode$1.bin" - rm "~/Dropbox/NEWERsmbw/Summer\ Sun/DLRelocs$1.bin" + rm "SumSource/System$1.bin" + rm "SumSource/DLCode$1.bin" + rm "SumSource/DLRelocs$1.bin" } remove_files EU_1 @@ -12,9 +11,11 @@ remove_files EU_2 remove_files US_1 remove_files US_2 remove_files JP_1 +remove_files JP_2 -python tools/mapfile_tool.py -python tools/kamek.py SummerSun.yaml --no-rels --use-mw --use-wine --gcc-type=/usr/local/devkitPRO/devkitPPC/bin/powerpc-eabi --mw-path=tools +python2 tools/mapfile_tool.py +python2 tools/kamek.py SummerSun.yaml --no-rels --use-mw --use-wine --gcc-type=/opt/wiidev/bin/powerpc-elf --mw-path=tools --fast-hack +#python tools/kamek.py SummerSun.yaml --no-rels --use-mw --use-wine --gcc-type=/usr/local/devkitPRO/devkitPPC/bin/powerpc-eabi --mw-path=tools if [ "$?" = "0" ]; then echo "compile successful" else @@ -22,9 +23,9 @@ else fi copy_files() { - cp NewerASM/n_$1_loader.bin "~/Dropbox/NEWERsmbw/Summer\ Sun/System$2.bin" - cp NewerASM/n_$1_dlcode.bin "~/Dropbox/NEWERsmbw/Summer\ Sun/DLCode$2.bin" - cp NewerASM/n_$1_dlrelocs.bin "~/Dropbox/NEWERsmbw/Summer\ Sun/DLRelocs$2.bin" + cp NewerASM/n_$1_loader.bin "SumSource/System$2.bin" + cp NewerASM/n_$1_dlcode.bin "SumSource/DLCode$2.bin" + cp NewerASM/n_$1_dlrelocs.bin "SumSource/DLRelocs$2.bin" } copy_files pal EU_1 @@ -32,6 +33,7 @@ copy_files pal2 EU_2 copy_files ntsc US_1 copy_files ntsc2 US_2 copy_files jpn JP_1 +copy_files jpn2 JP_2 echo Built all! |