From b4eea6684cece86cd820c73260701a6084479d45 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Mon, 17 Jun 2024 12:12:11 +1000 Subject: [PATCH] Fix makefile targets --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0186a94..71f8a1d 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ build-x86_64: cross build --bin eleel --target x86_64-unknown-linux-gnu --profile release --locked -build-x86_64: - cross build --bin eleel --target x86_64-unknown-linux-gnu --profile release --locked +build-aarch64: + cross build --bin eleel --target aarch64-unknown-linux-gnu --profile release --locked + +.PHONY: build-x86_64 build-aarch64