mirror of
https://github.com/gwenhael-le-moine/x49gp.git
synced 2024-12-25 21:58:49 +01:00
21 lines
596 B
Makefile
21 lines
596 B
Makefile
.PHONY: get-roms mrproper
|
|
|
|
all: bootloaders official newrpl
|
|
|
|
mrproper:
|
|
rm -fr ./hp-arm-models-bootloader ./hp4950v215 ./newrpl
|
|
|
|
bootloaders:
|
|
wget https://www.hpcalc.org/hp49/pc/rom/hp-arm-models-bootloader.zip
|
|
unzip -j hp-arm-models-bootloader.zip -d hp-arm-models-bootloader
|
|
rm hp-arm-models-bootloader.zip
|
|
|
|
official:
|
|
wget https://www.hpcalc.org/hp49/pc/rom/hp4950v215.zip
|
|
unzip -j hp4950v215.zip -d hp4950v215
|
|
rm hp4950v215.zip
|
|
|
|
newrpl:
|
|
mkdir -p newrpl-latest
|
|
wget https://hpgcc3.org/downloads/newrplfw.bin -O newrpl-latest/newrplfw.bin
|
|
echo "newrplfw.bin" > newrpl-latest/update.scp
|