Archived
3
0
This repository has been archived on 2025-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zmp24-docs/image/image.mk
2025-03-09 20:00:18 +01:00

18 lines
622 B
Makefile

.PHONY: image
image: dst/image/zmp24 dst/image/Containerfile dst/image/run.sh config.json
cd dst/image && podman build . -t \
"$$(jq -r .image.name ../../config.json):$$(jq -r .image.version ../../config.json)"
dst/image: dst
mkdir dst/image
dst/image/Containerfile: dst/image image/image.dockerfile
ln -sf $$(pwd)/image/image.dockerfile dst/image/Containerfile
dst/image/run.sh: dst/image image/run.sh
ln -f image/run.sh dst/image/run.sh
chmod +x dst/image/run.sh
dst/image/zmp24: dst/image target/$(ARCH)-unknown-linux-musl/release/zmp24
ln -f target/$(ARCH)-unknown-linux-musl/release/zmp24 dst/image/zmp24