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