summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHimanshu Sardana <himanshusardana2005@gmail.com>2026-03-27 00:27:12 +0000
committerHimanshu Sardana <himanshusardana2005@gmail.com>2026-03-27 00:27:12 +0000
commit12c654c18d05586f9672a81a690a30cefcdf3084 (patch)
tree7340fcd8e98676be663da8bdd225b00c4d85151a /Makefile
parent38f75dbac195815710bcfb54dd7c6bfd1afeb224 (diff)
docs: update readme
docs: update readme docs: update makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 4 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index fbb73d6..73666c2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,15 @@
all: run
run:
- go run ./cmd
+ go run .
build:
- go run ./cmd build
+ go build .
build-release:
- echo "Building Kite release"
- go build -ldflags="-s -w" -o kite-release ./cmd
+ go build -ldflags="-s -w" -o kite-release
upx --best --lzma kite-release
- echo "Successfully built release binary"
stat -c %s ./kite-release
serve:
- go run ./cmd serve
+ go run . serve