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
|
|
|
|
|
2024-01-04 19:32:40 +01:00
|
|
|
package: directory old BL2CK_1.31.0.zip R4_Ultra_AKAIO_1.8.6a.zip extdata
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
directory:
|
|
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
|
2024-01-04 19:32:40 +01:00
|
|
|
old: directory
|
|
|
|
make -C $@
|
|
|
|
|
2023-08-15 21:17:00 +02:00
|
|
|
include $(COMMON)/BL2CK/R4iTT/Makefile
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
R4_Ultra_AKAIO_1.8.6a.zip: directory
|
2024-01-15 06:59:35 +01:00
|
|
|
cd $(TOPDIR)/R4_Ultra_AKAIO_1.8.6a && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
extdata: directory
|
|
|
|
cp -r R4i_Ultra_F* README.txt $(OUT)/$(BASE)
|