mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 09:49:16 +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.
15 lines
374 B
Makefile
15 lines
374 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
export BASE := EDGEi/$(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../../out
|
|
export COMMON := $(TOPDIR)/../../../common-kernels
|
|
|
|
package: directory EDGEi_Kernel_2.20.zip
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
EDGEi_Kernel_2.20.zip: directory
|
|
cd $(TOPDIR)/EDGEi_Kernel_2.20 && zip -r $(OUT)/$(BASE)/$@ *
|