From 4cad1fcbbe1315e2d7d6171a797db7ce4e806f72 Mon Sep 17 00:00:00 2001 From: antondlr Date: Tue, 23 Apr 2024 22:12:55 +0200 Subject: [PATCH] Add missing lcli targets in makefile (#5633) * Add missing lcli targets to Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 4b2d0f6c5d..4072ab1e6d 100644 --- a/Makefile +++ b/Makefile @@ -82,6 +82,11 @@ build-aarch64: build-aarch64-portable: cross build --bin lighthouse --target aarch64-unknown-linux-gnu --features "portable,$(CROSS_FEATURES)" --profile "$(CROSS_PROFILE)" --locked +build-lcli-x86_64: + cross build --bin lcli --target x86_64-unknown-linux-gnu --features "portable" --profile "$(CROSS_PROFILE)" --locked +build-lcli-aarch64: + cross build --bin lcli --target aarch64-unknown-linux-gnu --features "portable" --profile "$(CROSS_PROFILE)" --locked + # Create a `.tar.gz` containing a binary for a specific target. define tarball_release_binary cp $(1)/lighthouse $(BIN_DIR)/lighthouse