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-12-27 00:14:25 +01:00
|
|
|
package: directory old r4i-best.com_Green_Kernel_1.4.zip r4i-best.com_R4i-Best_R4i-Gold_Kernel_2.02.zip extdata
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
directory:
|
|
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
|
2023-12-27 00:14:25 +01:00
|
|
|
old: directory
|
|
|
|
make -C $@
|
|
|
|
|
2023-08-13 18:46:40 +02:00
|
|
|
r4i-best.com_Green_Kernel_1.4.zip: directory
|
2024-01-15 06:59:35 +01:00
|
|
|
cd $(TOPDIR)/r4i-best.com_Green_Kernel_1.4 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
r4i-best.com_R4i-Best_R4i-Gold_Kernel_2.02.zip: directory
|
2024-01-15 06:59:35 +01:00
|
|
|
cd $(TOPDIR)/r4i-best.com_R4i-Best_R4i-Gold_Kernel_2.02 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
extdata: directory
|
|
|
|
cp README.txt $(OUT)/$(BASE)
|