blob: 2210ca202098355ff1c6615b4b0797567c8a6a73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
rm -f *.nds *.elf *.gba *.arm9
make clean
make ADDITIONAL_CFLAGS="-DDS81_DISABLE_FAT"
mv ds81.nds ds81-nofat.nds
mv ds81.ds.gba ds81-nofat.ds.gba
rm -f build/main.*
make
./fat_patch.sh
|