mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +00:00
* rename frontend to web and update contributing guide * rename this time * fix build * restructure rust code * update documentation * update descriptions * Update CONTRIBUTING.md Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com> --------- Co-authored-by: Aiden McClelland <me@drbonez.dev> Co-authored-by: Aiden McClelland <3732071+dr-bonez@users.noreply.github.com> Co-authored-by: J H <2364004+Blu-J@users.noreply.github.com>
25 lines
926 B
Makefile
25 lines
926 B
Makefile
COMPAT_SRC := $(shell find ./src) Cargo.toml Cargo.lock
|
|
|
|
.DELETE_ON_ERROR:
|
|
|
|
all: docker-images/aarch64.tar docker-images/x86_64.tar
|
|
|
|
clean:
|
|
cargo clean
|
|
rm -rf docker-images
|
|
|
|
docker-images:
|
|
mkdir docker-images
|
|
|
|
docker-images/aarch64.tar: Dockerfile target/aarch64-unknown-linux-musl/release/compat docker-images
|
|
docker buildx build --build-arg ARCH=aarch64 --tag start9/x_system/compat --platform=linux/arm64 -o type=docker,dest=docker-images/aarch64.tar .
|
|
|
|
docker-images/x86_64.tar: Dockerfile target/x86_64-unknown-linux-musl/release/compat docker-images
|
|
docker buildx build --build-arg ARCH=x86_64 --tag start9/x_system/compat --platform=linux/amd64 -o type=docker,dest=docker-images/x86_64.tar .
|
|
|
|
target/aarch64-unknown-linux-musl/release/compat: $(COMPAT_SRC) ../../core/Cargo.lock
|
|
ARCH=aarch64 ./build.sh
|
|
|
|
target/x86_64-unknown-linux-musl/release/compat: $(COMPAT_SRC) ../../core/Cargo.lock
|
|
ARCH=x86_64 ./build.sh
|