flashcard-archive/archive/r4isdhc.com/old/Makefile
lifehackerhansol 5fa351a3a0
treewide: use deterministic-zip
https://github.com/timo-reymann/deterministic-zip

This solves a logistics issue; zip files always include the modified
timestamp of a file. This doesn't sound bad until you realize that
GitHub Actions always re-clones the entire repository, and the
timestamp is guaranteed to be different.

Because of this, every time we run our Actions workflow, the zip will
have a different checksum, causing git to re-commit *every single file*
to the frontend repository, causing long workflow times due to the
sheer size of each commit.

deterministic-zip hopefully solves this issue by forcing the modified
timestamp to one hardcoded in its binary, so here is to hoping we don't
abuse our git repo any further.
2024-01-14 21:59:35 -08:00

30 lines
1.3 KiB
Makefile

.PHONY: package
export TOPDIR := $(shell pwd $(CURDIR))
export BASE := r4isdhc.com/$(shell basename $(CURDIR))
export OUT := $(TOPDIR)/../../../out
export COMMON := $(TOPDIR)/../../../common-kernels
package: directory r4isdhc.com_Dual-Core_Kernel_1.38.zip r4isdhc.com_RTS_black_Kernel_3.2.zip r4isdhc.com_2014-2023_DEMON_4.0b.zip r4isdhc.com_Christmas_Edition_Limited_SDHC_Kernel_1.17B.zip r4isdhc.com_Silver_RTS_Lite_Kernel_1.30.zip r4isdhc.com_Upgrade_V1.4_Kernel_2.0.zip
directory:
mkdir -p $(OUT)/$(BASE)
r4isdhc.com_Dual-Core_Kernel_1.38.zip: directory
cd $(TOPDIR)/r4isdhc.com_Dual-Core_Kernel_1.38 && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.com_RTS_black_Kernel_3.2.zip: directory
cd $(TOPDIR)/r4isdhc.com_RTS_black_Kernel_3.2 && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.com_2014-2023_DEMON_4.0b.zip: directory
cd $(TOPDIR)/r4isdhc.com_2014-2023_DEMON_4.0b && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.com_Christmas_Edition_Limited_SDHC_Kernel_1.17B.zip: directory
cd $(TOPDIR)/r4isdhc.com_Christmas_Edition_Limited_SDHC_Kernel_1.17B && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.com_Silver_RTS_Lite_Kernel_1.30.zip: directory
cd $(TOPDIR)/r4isdhc.com_Silver_RTS_Lite_Kernel_1.30 && zip -r $(OUT)/$(BASE)/$@ *
r4isdhc.com_Upgrade_V1.4_Kernel_2.0.zip: directory
cd $(TOPDIR)/r4isdhc.com_Upgrade_V1.4_Kernel_2.0 && zip -r $(OUT)/$(BASE)/$@ *