This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
hui/makefile
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)