mirror of
https://github.com/Artrios/pokecarde.git
synced 2026-07-06 20:34:15 -05:00
- Improvements to build, which should help find nevpk and rgbds a little easier. - Support for berry cards K007-K012 has been added (original Japanese) and they have received unofficial localizations. - Unofficial Localizations for cards B001 - B048 have now been included. - Cards P001-P004 have now been added (Official English and Japanese) - Cards P005-P008 have now been added (official Japanese) and have also received unofficial localizations. - Cards N001-N008 have now been added (official Japanese) and have also received unofficial localizations. - Unofficial localization for card O001 has been improved to be more in-line with official localizations of the time. tl;dr All Ruby/Sapphire e-Reader cards are now included and exist in their original English/Japanese, and have unofficial localizations if no official translation is available.
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
all: 00-C000-EN.raw verify
|
|
verify:
|
|
md5sum --check eonticket.md5
|
|
|
|
|
|
eonticket-%.tx: eonticket.asm
|
|
python ../scripts/regionalize.py $< $@ $* $*
|
|
eonticket-%.o: eonticket-%.tx
|
|
./rgbasm.exe -o $@ $<
|
|
eonticket-%.gbc: eonticket-%.o
|
|
./rgblink.exe -o $@ $<
|
|
eonticket-%.bin: eonticket-%.gbc
|
|
python ../scripts/stripgbc.py $< $@
|
|
eonticket-%.mev: eonticket-%.bin
|
|
python ../scripts/checksum.py $< $@
|
|
|
|
prologue-%.tx: prologue.asm
|
|
python ../scripts/regionalize.py $< $@ $* $*
|
|
prologue-%.o: prologue-%.tx
|
|
./rgbasm.exe -o $@ $<
|
|
prologue-%.gbc: prologue-%.o
|
|
./rgblink.exe -o $@ $<
|
|
prologue-%.bin: prologue-%.gbc
|
|
python ../scripts/stripgbc.py $< $@
|
|
|
|
00-C000-%.tx: 00-C000.asm eonticket-%.mev prologue-%.bin
|
|
python ../scripts/ereadertext.py $< $@ $*
|
|
00-C000-%.o: 00-C000-%.tx
|
|
./rgbasm.exe -o $@ $<
|
|
00-C000-%.gbc: 00-C000-%.o
|
|
./rgblink.exe -o $@ $<
|
|
00-C000-%.z80: 00-C000-%.gbc
|
|
python ../scripts/stripgbc.py $< $@
|
|
00-C000-%.vpk: 00-C000-%.z80
|
|
./nevpk.exe -c -i $< -o $@
|
|
00-C000-%.raw: 00-C000-%.vpk
|
|
./nedcmake.exe -i $< -o $@ -type 1 -region 1
|
|
|
|
clean:
|
|
rm -f *.tx *.o *.gbc *.z80 *.bin *.mev *.vpk *.raw
|