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

18 lines
601 B
Makefile

.PHONY: package
export TOPDIR := $(CURDIR)
export BASE := r4ixds.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4ixds.com_2014-black_2015-2016_Kernel_7.1.0.zip r4ixds.com_2017_Kernel_V8.10b.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4ixds.com_2014-black_2015-2016_Kernel_7.1.0.zip: directory
cd $(TOPDIR)/r4ixds.com_2014-black_2015-2016_Kernel_7.1.0 && zip -r $(OUT)/$(BASE)/$@ *
r4ixds.com_2017_Kernel_V8.10b.zip: directory
cd $(TOPDIR)/r4ixds.com_2017_Kernel_V8.10b && zip -r $(OUT)/$(BASE)/$@ *