mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 01:39:17 +01:00
481591f1ac
EDGEi is an Acekard 2i clone that boots from `dsedgei.dat`. The default kernel is BL2CK, and the original kernel is preserved in the `old` directory.
17 lines
339 B
Makefile
17 lines
339 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_EDGEi.zip old
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
include $(COMMON)/BL2CK/EDGEi/Makefile
|
|
|
|
old: directory
|
|
make -C $@
|