mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 17:59:15 +01:00
6cf765bece
- 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
20 lines
425 B
Makefile
20 lines
425 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
export BASE := r4itt.net/$(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../../out
|
|
export COMMON := $(TOPDIR)/../../../common-kernels
|
|
|
|
package: directory BL2CK_1.30.4.zip old extdata
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
include $(COMMON)/BL2CK/R4iTT/Makefile
|
|
|
|
old: directory
|
|
make -C $@
|
|
|
|
extdata: directory
|
|
cp -r r4itt.net_3DS_*_FWUpdate* $(OUT)/$(BASE)
|