-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
57 lines (41 loc) · 1.3 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
GO_CMD=go
GO_BUILD=$(GO_CMD) build
GO_CLEAN=$(GO_CMD) clean
GO_TEST=$(GO_CMD) test
GO_MOD=$(GO_CMD) mod
all: test lin win mac dist
deps:
${GO_CMD} tidy
lin:
GOOS=linux GOARCH=amd64 $(GO_BUILD) -o build/linux64/steamid main.go
win:
GOOS=windows GOARCH=amd64 $(GO_BUILD) -o build/win64/steamid.exe main.go
mac:
GOOS=darwin GOARCH=amd64 $(GO_BUILD) -o build/macos64/steamid main.go
dist:
zip -j steamid-`git describe --abbrev=0`-win64.zip build/win64/steamid.exe LICENSE.md
zip -j steamid-`git describe --abbrev=0`-linux64.zip build/linux64/steamid LICENSE.md
zip -j steamid-`git describe --abbrev=0`-macos64.zip build/macos64/steamid LICENSE.md
run:
$(GO_BUILD) -o $(BINARY_NAME) -v .
./$(BINARY_NAME)
test:
$(GO_TEST) -v ./...
fmt:
#gci write . --skip-generated -s standard -s default
gofumpt -l -w .
check: fmt lint_golangci static
lint_golangci:
@golangci-lint run --timeout 3m
static:
@staticcheck -go 1.20 ./...
check_deps:
go install github.com/daixiang0/[email protected]
go install mvdan.cc/[email protected]
go install github.com/golangci/golangci-lint/cmd/[email protected]
go install honnef.co/go/tools/cmd/[email protected]
go install github.com/goreleaser/[email protected]
dev_db:
docker compose -f docker-compose-dev.yml up --force-recreate -V postgres
update:
${GO_CMD} get -u ./...