mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
12 lines
295 B
Makefile
12 lines
295 B
Makefile
COMPAT_SRC := $(shell find ./src) Cargo.toml Cargo.lock
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
all: compat.tar
|
|
|
|
compat.tar: Dockerfile build
|
|
DOCKER_CLI_EXPERIMENTAL=enabled docker buildx build --tag start9/x_system/compat --platform=linux/arm64 -o type=docker,dest=compat.tar .
|
|
|
|
build: $(COMPAT_SRC)
|
|
./build.sh
|