2023-08-13 09:46:40 -07:00
|
|
|
.PHONY: package
|
|
|
|
|
2024-10-03 13:52:05 -07:00
|
|
|
export TOPDIR := $(CURDIR)
|
2023-08-13 09:46:40 -07:00
|
|
|
export BASE := $(shell basename $(CURDIR))
|
|
|
|
export OUT := $(TOPDIR)/../../out
|
|
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
|
2023-12-26 23:14:25 +00: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 09:46:40 -07:00
|
|
|
|
|
|
|
directory:
|
|
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
|
2023-12-26 23:14:25 +00:00
|
|
|
old: directory
|
|
|
|
make -C $@
|
|
|
|
|
2023-08-13 09:46:40 -07:00
|
|
|
r4i-best.com_Green_Kernel_1.4.zip: directory
|
2024-01-14 21:59:35 -08:00
|
|
|
cd $(TOPDIR)/r4i-best.com_Green_Kernel_1.4 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 09:46:40 -07:00
|
|
|
|
|
|
|
r4i-best.com_R4i-Best_R4i-Gold_Kernel_2.02.zip: directory
|
2024-01-14 21:59:35 -08:00
|
|
|
cd $(TOPDIR)/r4i-best.com_R4i-Best_R4i-Gold_Kernel_2.02 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 09:46:40 -07:00
|
|
|
|
|
|
|
extdata: directory
|
|
|
|
cp README.txt $(OUT)/$(BASE)
|