2023-08-13 18:46:40 +02:00
|
|
|
.PHONY: package
|
|
|
|
|
|
|
|
export TOPDIR := $(shell pwd $(CURDIR))
|
|
|
|
export BASE := $(shell basename $(CURDIR))
|
|
|
|
export OUT := $(TOPDIR)/../../out
|
|
|
|
export COMMON := $(TOPDIR)/../../common-kernels
|
|
|
|
|
2023-08-12 23:43:36 +02:00
|
|
|
package: directory EDGE_OS_2.3.zip iEDGE_OS_2.3.zip old extdata
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
directory:
|
|
|
|
mkdir -p $(OUT)/$(BASE)
|
|
|
|
|
|
|
|
EDGE_OS_2.3.zip: directory
|
2023-08-24 20:30:24 +02:00
|
|
|
cd $(TOPDIR)/EDGE_OS_2.3 && zip -r -X $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
|
|
|
iEDGE_OS_2.3.zip: directory
|
2023-08-24 20:30:24 +02:00
|
|
|
cd $(TOPDIR)/iEDGE_OS_2.3 && zip -r -X $(OUT)/$(BASE)/$@ *
|
2023-08-13 18:46:40 +02:00
|
|
|
|
2023-08-12 23:43:36 +02:00
|
|
|
old: directory
|
|
|
|
make -C $@
|
|
|
|
|
2023-08-13 18:46:40 +02:00
|
|
|
extdata: directory
|
|
|
|
cp README.txt $(OUT)/$(BASE)
|