diff options
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 |
