mirror of
https://github.com/DS-Homebrew/flashcard-archive.git
synced 2024-11-22 17:59:15 +01:00
24 lines
683 B
Makefile
24 lines
683 B
Makefile
.PHONY: package
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
export BASE := EDGE/$(shell basename $(CURDIR))
|
|
export OUT := $(TOPDIR)/../../../out
|
|
export COMMON := $(TOPDIR)/../../../common-kernels
|
|
|
|
package: directory EDGE_OS_1.36.zip EDGE_OS_1.37.zip EDGE_OS_1.40.zip EDGE_OS_1.41.zip
|
|
|
|
directory:
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
EDGE_OS_1.36.zip: directory
|
|
cd $(TOPDIR)/EDGE_OS_1.36 && zip -r -X $(OUT)/$(BASE)/$@ *
|
|
|
|
EDGE_OS_1.37.zip: directory
|
|
cd $(TOPDIR)/EDGE_OS_1.37 && zip -r -X $(OUT)/$(BASE)/$@ *
|
|
|
|
EDGE_OS_1.40.zip: directory
|
|
cd $(TOPDIR)/EDGE_OS_1.40.zip && zip -r -X $(OUT)/$(BASE)/$@ *
|
|
|
|
EDGE_OS_1.41.zip: directory
|
|
cd $(TOPDIR)/EDGE_OS_1.41 && zip -r -X $(OUT)/$(BASE)/$@ *
|