warp/Makefile
david 7d75524a8c Removing IDE files and adding them to .gitignore
Upgrade to Rust 2021

- Fix lints
- Formatting pass
- Add Cargo.lock

Use anyhow to improve error handling

Fix errors during directory removal in Windows

Update dependencies

Switch linux build to musl

Switch to musl

Set version to 0.4.0

Allow using uid instead of mtime

Remove name duplication with runner map

Fixing typo

Documentation Update for Cache Location on macOS
Documentation Update for next version of warp-pack and new url for java
Adding support for aarch64 build and needed apple-darwin build options
Using cargo update to get 'newest' dependencies version
Updating warp-packer recursive
First draft of BUILD.md
Fixing several typos in BUILD.md and adding INSTALL.md
Adding section of changes in README.md
Fixing anchor of new section
Fixing typo in README.md
Adding CHANGELOG.md to project
Adding additional information to CHANGELOG.md
Fixing wrong links
Updating information from origin repository
Cleaning up CHANGELOG.md
Updating CHANGELOG.md
Updating version and authors
Fixing links in CHANGELOG.md
Updating CHANGELOG.md for GitHub
2024-05-18 23:31:32 +02:00

40 lines
1.3 KiB
Makefile

all:
$(MAKE) build
build:
cargo build -p warp-runner --release --target x86_64-unknown-linux-gnu
strip target/x86_64-unknown-linux-gnu/release/warp-runner
cargo build -p warp-runner --release --target aarch64-unknown-linux-gnu
aarch64-linux-gnu-strip target/aarch64-unknown-linux-gnu/release/warp-runner
cargo build -p warp-runner --release --target x86_64-apple-darwin
x86_64-apple-darwin16-strip target/x86_64-apple-darwin/release/warp-runner
cargo build -p warp-runner --release --target x86_64-pc-windows-gnu
strip target/x86_64-pc-windows-gnu/release/warp-runner.exe
cargo build -p warp-packer --release --target x86_64-unknown-linux-gnu
strip target/x86_64-unknown-linux-gnu/release/warp-packer
cargo build -p warp-packer --release --target aarch64-unknown-linux-gnu
aarch64-linux-gnu-strip target/aarch64-unknown-linux-gnu/release/warp-packer
cargo build -p warp-packer --release --target x86_64-apple-darwin
x86_64-apple-darwin16-strip target/x86_64-apple-darwin/release/warp-packer
cargo build -p warp-packer --release --target x86_64-pc-windows-gnu
strip target/x86_64-pc-windows-gnu/release/warp-packer.exe
clean:
cargo clean
check:
$(MAKE) build
$(MAKE) test
test:
cargo test
.PHONY: all build clean check test