This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-07-31 19:10:32 +02:00

15 lines
220 B
Makefile

HUI := ./cmd/hui
BUILD_FLAGS := "-v"
LD_FLAGS := -ldflags="-s -w"
default: run
build:
@go build $(BUILD_FLAGS) $(LD_FLAGS) $(HUI)
update:
@go get -u ./... && go mod tidy
run:
@go run $(LD_FLAGS) $(HUI)