mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 17:59:15 +01:00
e8f78c0956
This fixes building on macOS.
18 lines
698 B
Makefile
18 lines
698 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(CURDIR)
|
|
export BASE := r4i-sdhc.hk/$(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../../out
|
|
export COMMON := $(TOPDIR)/../../../common-kernels
|
|
|
|
package: directory r4i-sdhc.hk_Unlimited_Upgradable_FWUpdate_3DS4.2_DSi1.4.4.zip r4i-sdhc.hk_Unlimited_Upgradable_Kernel_4.2.0.9A.zip
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
r4i-sdhc.hk_Unlimited_Upgradable_FWUpdate_3DS4.2_DSi1.4.4.zip: directory
|
|
cd $(TOPDIR)/r4i-sdhc.hk_Unlimited_Upgradable_FWUpdate_3DS4.2_DSi1.4.4 && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
r4i-sdhc.hk_Unlimited_Upgradable_Kernel_4.2.0.9A.zip: directory
|
|
cd $(TOPDIR)/r4i-sdhc.hk_Unlimited_Upgradable_Kernel_4.2.0.9A && zip -r $(OUT)/$(BASE)/$@ *
|