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
|
|
|
|
|
|
|
|
package: directory 3DSLink_DS_V4.0B2.zip 3dslink.com_Blue_Kernel_1.64.zip Boot_Card_Blue_Card_V4.0B1.zip extdata
|
|
|
|
|
|
|
|
directory:
|
|
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
|
|
|
|
3DSLink_DS_V4.0B2.zip: directory
|
2024-01-15 06:59:35 +01:00
|
|
|
cd $(TOPDIR)/3DSLink_DS_V4.0B2 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
Boot_Card_Blue_Card_V4.0B1.zip: directory
|
2024-01-15 06:59:35 +01:00
|
|
|
cd $(TOPDIR)/Boot_Card_Blue_Card_V4.0B1 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
3dslink.com_Blue_Kernel_1.64.zip: directory
|
2024-01-15 06:59:35 +01:00
|
|
|
cd $(TOPDIR)/3dslink.com_Blue_Kernel_1.64 && zip -r $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
extdata: directory
|
|
|
|
cp 3dslinkblue.jpg $(OUT)/$(BASE)
|