17 lines
179 B
Makefile
17 lines
179 B
Makefile
BIN := bin/heloha-server
|
|
CMD := ./cmd/heloha-server
|
|
|
|
.PHONY: build run test tidy
|
|
|
|
build:
|
|
go build -o $(BIN) $(CMD)
|
|
|
|
run:
|
|
go run $(CMD)
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
tidy:
|
|
go mod tidy
|