2023-08-14 07:54:51 +02:00
|
|
|
.PHONY: package
|
|
|
|
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
|
|
export BASE := $(shell basename $(CURDIR))
|
|
|
|
export OUT := $(TOPDIR)/../../out
|
|
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
|
2024-01-23 04:29:58 +01:00
|
|
|
package: directory BL2CK_1.31.0.zip BL2CK_1.31.0_Amaze3DS.zip BL2CK_1.31.0_EDGEi.zip BL2CK_1.31.0_r4dspro.com.zip
|
2023-08-14 07:54:51 +02:00
|
|
|
|
|
|
|
directory:
|
|
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
|
2023-08-15 21:17:00 +02:00
|
|
|
include $(COMMON)/BL2CK/R4iTT/Makefile
|
|
|
|
include $(COMMON)/BL2CK/Amaze3DS/Makefile
|
|
|
|
include $(COMMON)/BL2CK/EDGEi/Makefile
|
2024-01-23 04:29:58 +01:00
|
|
|
include $(COMMON)/BL2CK/r4dspro.com/Makefile
|