2023-08-13 18:46:40 +02:00
|
|
|
.PHONY: package
|
|
|
|
|
2024-10-03 22:52:05 +02:00
|
|
|
export TOPDIR := $(CURDIR)
|
2023-08-13 18:46:40 +02:00
|
|
|
export BASE := $(shell basename $(CURDIR))
|
|
|
|
export OUT := $(TOPDIR)/../../out
|
|
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
|
2023-08-30 20:18:03 +02:00
|
|
|
package: directory BL2CK_1.31.0.zip r4ids.cn_non-3DS_Wood_R4_1.54.zip r4ids.cn_Wood_R4_1.64.zip old extdata
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
directory:
|
|
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
|
2023-08-15 21:17:00 +02:00
|
|
|
include $(COMMON)/BL2CK/R4iTT/Makefile
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
r4ids.cn_non-3DS_Wood_R4_1.54.zip: directory
|
2024-01-15 06:59:35 +01:00
|
|
|
cd $(TOPDIR)/r4ids.cn_non-3DS_Wood_R4_1.54 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
r4ids.cn_Wood_R4_1.64.zip: directory
|
2024-01-15 06:59:35 +01:00
|
|
|
cd $(TOPDIR)/r4ids.cn_Wood_R4_1.64 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
old: directory
|
|
|
|
make -C $@
|
|
|
|
|
|
|
|
extdata: directory
|
|
|
|
cp -r r4ids.cn_FWUpdate_6.2.0 README.txt $(OUT)/$(BASE)
|