From 3a194f1705b2e56c04fbe868d9edf2c226e77975 Mon Sep 17 00:00:00 2001 From: radhitya Date: Mon, 6 Jul 2026 19:16:57 +0700 Subject: recursive mode --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f9f8242 --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +BINARY = linum +GO = go +MAIN = . +OUTPUT = build/$(BINARY) +LDFLAGS = -ldflags="-s -w -X main.version=$(VERSION)" + +default: + $(GO) build $(LDFLAGS) -o $(OUTPUT) $(MAIN) -- cgit v1.2.3