From 3b73e9aa00912b1a42bb9c88a26c5ebe0f58a6dc Mon Sep 17 00:00:00 2001 From: Daniel Saxton Date: Mon, 18 Nov 2024 10:59:13 -0800 Subject: [PATCH] make: add linux build --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f934df3..def0d53 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ tags: - find src -name '*.rs' | xargs ctags + find src -name '*.rs' | xargs ctags + +build-linux: + cargo build --target x86_64-unknown-linux-musl --release .PHONY: tags