From 1589fefeb854f1b5629a0c6f9a6d6b05517cef52 Mon Sep 17 00:00:00 2001 From: Aykhan Shahsuvarov Date: Fri, 28 Feb 2025 03:41:33 +0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Added=20Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..abe519c --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +lint: + golangci-lint run + +build: + go build -ldflags "-s -w" -o "./dodo" + +build-all: + rm -rf ./binaries + ./build.sh