Skip to content

Commit 61bb5e7

Browse files
committed
chore: bump version to v2.0.0
1 parent b14edc7 commit 61bb5e7

1 file changed

Lines changed: 8 additions & 12 deletions

File tree

Makefile

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -485,18 +485,14 @@ build-windows-x86_64: ## Build for Windows x86_64
485485
@CROSS_LOG=info cross build --release --target x86_64-pc-windows-gnu
486486
@echo -e "$(GREEN)✓ Build complete: target/x86_64-pc-windows-gnu/release/$(NC)"
487487

488-
build-all-platforms: ## Build for all supported platforms (in parallel)
489-
@echo -e "$(CYAN)Building for all platforms in parallel...$(NC)"
490-
@echo -e "$(YELLOW)Running 5 cross-compilation builds simultaneously...$(NC)"
491-
@( \
492-
(echo -e "$(BLUE)[1/5] Starting Linux x86_64 build...$(NC)" && CROSS_LOG=info cross build --release --target x86_64-unknown-linux-gnu && echo -e "$(GREEN)✓ [1/5] Linux x86_64 complete$(NC)") & \
493-
(echo -e "$(BLUE)[2/5] Starting Linux ARM64 build...$(NC)" && CROSS_LOG=info cross build --release --target aarch64-unknown-linux-gnu && echo -e "$(GREEN)✓ [2/5] Linux ARM64 complete$(NC)") & \
494-
(echo -e "$(BLUE)[3/5] Starting macOS x86_64 build...$(NC)" && CROSS_LOG=info cross build --release --target x86_64-apple-darwin && echo -e "$(GREEN)✓ [3/5] macOS x86_64 complete$(NC)") & \
495-
(echo -e "$(BLUE)[4/5] Starting macOS ARM64 build (native)...$(NC)" && rustup target add aarch64-apple-darwin 2>/dev/null; cargo build --release --target aarch64-apple-darwin && echo -e "$(GREEN)✓ [4/5] macOS ARM64 complete$(NC)") & \
496-
(echo -e "$(BLUE)[5/5] Starting Windows x86_64 build...$(NC)" && CROSS_LOG=info cross build --release --target x86_64-pc-windows-gnu && echo -e "$(GREEN)✓ [5/5] Windows x86_64 complete$(NC)") & \
497-
wait \
498-
)
499-
@echo -e "$(GREEN)✓ All 5 platform builds complete!$(NC)"
488+
build-all-platforms: ## Build for all supported platforms
489+
@echo -e "$(CYAN)Building for all platforms...$(NC)"
490+
@$(MAKE) build-linux-x86_64
491+
@$(MAKE) build-linux-aarch64
492+
@$(MAKE) build-macos-x86_64
493+
@$(MAKE) build-macos-aarch64
494+
@$(MAKE) build-windows-x86_64
495+
@echo -e "$(GREEN)✓ All platform builds complete!$(NC)"
500496

501497
##@ Docker (if applicable)
502498
docker-build: ## Build Docker image

0 commit comments

Comments
 (0)