flashcard-archive/archive/BL2CK/Makefile
lifehackerhansol 6cf765bece
Rework BL2CK common, consolidate common files
- Have individual makefiles for different boot files
  - R4iTT: ARM9 entry 0x02000800
  - Amaze3DS: ARM9 entry 0x02000000
  - EDGEi: Same as R4iTT, but renamed to `dsedgei.dat`
- Include each makefile from individual folders, copy needed things and
  zip
2023-08-15 12:17:00 -07:00

16 lines
431 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 BL2CK_1.30.4.zip BL2CK_1.30.4_Amaze3DS.zip BL2CK_1.30.4_EDGEi.zip
directory:
mkdir -p $(OUT)/$(BASE)
include $(COMMON)/BL2CK/R4iTT/Makefile
include $(COMMON)/BL2CK/Amaze3DS/Makefile
include $(COMMON)/BL2CK/EDGEi/Makefile