mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-25 19:16:58 +01:00
a742b68bee
Run `./build.sh` in `archive` folder. It will loop through all kernels, and copy to `<project-root>/out`.
21 lines
725 B
Makefile
21 lines
725 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
export BASE := r4i3d.com/$(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../../out
|
|
export COMMON := $(TOPDIR)/../../../common-kernels
|
|
|
|
package: directory r4i3d.com_2013_Kernel_1.63.1.zip r4i3d.com_2014-2015_Kernel_1.70.1.zip r4i3d.com_NEW_Kernel_1.38.3.zip
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
r4i3d.com_2013_Kernel_1.63.1.zip: directory
|
|
cd $(TOPDIR)/r4i3d.com_2013_Kernel_1.63.1 && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
r4i3d.com_2014-2015_Kernel_1.70.1.zip: directory
|
|
cd $(TOPDIR)/r4i3d.com_2014-2015_Kernel_1.70.1 && zip -r $(OUT)/$(BASE)/$@ *
|
|
|
|
r4i3d.com_NEW_Kernel_1.38.3.zip: directory
|
|
cd $(TOPDIR)/r4i3d.com_NEW_Kernel_1.38.3 && zip -r $(OUT)/$(BASE)/$@ *
|