blob: 4002f4b89ca34f972f9394f311b5a2a059f78b9f (
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
make clean
make
./fat_patch.sh
|