blob: 14835bb53d8c892bd5f6591b3d73b0fc958fe59a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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
|