flashcard-archive/archive/EDGE/old/Makefile
lifehackerhansol e8f78c0956
Makefile: use $(CURDIR) directly without $(shell pwd)
This fixes building on macOS.
2024-10-03 13:52:05 -07:00

24 lines
654 B
Makefile

.PHONY: package
export TOPDIR := $(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 $(OUT)/$(BASE)/$@ *
EDGE_OS_1.37.zip: directory
cd $(TOPDIR)/EDGE_OS_1.37 && zip -r $(OUT)/$(BASE)/$@ *
EDGE_OS_1.40.zip: directory
cd $(TOPDIR)/EDGE_OS_1.40 && zip -r $(OUT)/$(BASE)/$@ *
EDGE_OS_1.41.zip: directory
cd $(TOPDIR)/EDGE_OS_1.41 && zip -r $(OUT)/$(BASE)/$@ *