mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 17:59:15 +01:00
25af36da61
Noticed the BL2CK kernels were missing from r4igold.cc's directory. This commit adds them back!
24 lines
766 B
Makefile
24 lines
766 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
export BASE := $(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../out
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
package: directory r4igold.cc_Kernel_2.6.zip r4igold.cc_Wood_BL2CK_1.30.4_Amaze3DS.zip r4igold.cc_3DS_BL2CK_1.30.4.zip extdata
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
r4igold.cc_Wood_BL2CK_1.30.4_Amaze3DS.zip: directory
|
|
cd $(COMMON)/BL2CK/BL2CK_1.30.4_Amaze3DS && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
r4igold.cc_3DS_BL2CK_1.30.4.zip: directory
|
|
cd $(COMMON)/BL2CK/BL2CK_1.30.4 && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
r4igold.cc_Kernel_2.6.zip: directory
|
|
cd $(TOPDIR)/r4igold.cc_Kernel_2.6 && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
extdata: directory
|
|
cp -r r4igold.cc_3DS_FWUpdate* README.md $(OUT)/$(BASE)
|