diff options
| author | Himanshu Sardana <himanshusardana2005@gmail.com> | 2026-03-25 09:45:52 +0000 |
|---|---|---|
| committer | Himanshu Sardana <himanshusardana2005@gmail.com> | 2026-03-25 09:45:52 +0000 |
| commit | af806b047446203aa714ae23b880e17bcf715294 (patch) | |
| tree | 2fbd18537b72258d6dcde45b0041618b8cf4e774 /Makefile | |
| parent | 8056adbc8fd1ec8e4ac165c79f678de3f270e896 (diff) | |
feat: add build <theme> command
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,14 +1,17 @@ all: run run: - go run . + go run ./cmd build: + go run ./cmd build + +build-release: echo "Building Kite release" - go build -ldflags="-s -w" -o kite-release + go build -ldflags="-s -w" -o kite-release ./cmd upx --best --lzma kite-release echo "Successfully built release binary" stat -c %s ./kite-release serve: - go run main.go serve + go run ./cmd serve |
