diff options
| author | Himanshu Sardana <himanshusardana2005@gmail.com> | 2026-03-24 22:54:48 +0000 |
|---|---|---|
| committer | Himanshu Sardana <himanshusardana2005@gmail.com> | 2026-03-24 22:54:48 +0000 |
| commit | 5b936910c7d1a767f2d30cf4ee603ec99b67f0cf (patch) | |
| tree | aa0b03e4209c20a087d4b06b871daddc5eeeacde /Makefile | |
| parent | e22a3138aeca76edfd2bef7bcc6b8fa20469f272 (diff) | |
docs: add makefile
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6378b5d --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +all: run + +run: + go run . + +build: + echo "Building Kite release" + go build -ldflags="-s -w" -o kite-release + upx --best --lzma kite-release + echo "Successfully built release binary" + stat -c %s ./kite-release |
