flashcard-archive/archive/EDGE/old/Makefile

24 lines
683 B
Makefile
Raw Normal View History

2023-08-12 23:43:36 +02:00
.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
2023-08-24 20:30:24 +02:00
cd $(TOPDIR)/EDGE_OS_1.36 && zip -r -X $(OUT)/$(BASE)/$@ *
2023-08-12 23:43:36 +02:00
EDGE_OS_1.37.zip: directory
2023-08-24 20:30:24 +02:00
cd $(TOPDIR)/EDGE_OS_1.37 && zip -r -X $(OUT)/$(BASE)/$@ *
2023-08-12 23:43:36 +02:00
EDGE_OS_1.40.zip: directory
2023-08-24 20:30:24 +02:00
cd $(TOPDIR)/EDGE_OS_1.40.zip && zip -r -X $(OUT)/$(BASE)/$@ *
2023-08-12 23:43:36 +02:00
EDGE_OS_1.41.zip: directory
2023-08-24 20:30:24 +02:00
cd $(TOPDIR)/EDGE_OS_1.41 && zip -r -X $(OUT)/$(BASE)/$@ *