summaryrefslogtreecommitdiff
path: root/Makefile
blob: 8c78285e2fb3ee18b520f2e6c44f7dfadc4aa1ed (plain)
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
58
59
60
61
62
63
64
65
66
67
# Copyright (C) 2022-2023  Luke Shumaker <lukeshu@lukeshu.com>
#
# SPDX-License-Identifier: GPL-2.0-or-later

# main

build:
	go build -trimpath -o bin/ ./cmd/...
.PHONY: build

check:
	go test -race ./...
.PHONY: check

lint: tools/bin/golangci-lint
	tools/bin/golangci-lint run ./...
.PHONY: lint

# generate

generate/files  = LICENSE.gpl-2.0.txt
generate/files += LICENSE.gpl-3.0.txt
generate/files += LICENSE.apache-2.0.txt
generate/files += LICENSE.mpl-2.0.txt

generate: generate-clean
	$(MAKE) -C lib/btrfs
	$(MAKE) $(generate/files)
.PHONY: generate

generate-clean:
	$(MAKE) -C lib/btrfs clean
	rm -f $(generate/files)
.PHONY: generate-clean

LICENSE.gpl-2.0.txt:
	curl https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt > $@
LICENSE.gpl-3.0.txt:
	curl https://www.gnu.org/licenses/gpl-3.0.txt > $@
LICENSE.apache-2.0.txt:
	curl https://apache.org/licenses/LICENSE-2.0.txt > $@
LICENSE.mpl-2.0.txt:
	curl https://www.mozilla.org/media/MPL/2.0/index.48a3fe23ed13.txt > $@

# tools

tools/bin/%: tools/src/%/pin.go tools/src/%/go.mod
	cd $(<D) && GOOS= GOARCH= go build -o $(abspath $@) $$(sed -En 's,^import "(.*)".*,\1,p' pin.go)

# go mod tidy

goversion = 1.19

go-mod-tidy:
.PHONY: go-mod-tidy

go-mod-tidy: go-mod-tidy/main
go-mod-tidy/main:
	rm -f go.sum
	go mod tidy -go 1.20 -compat $(goversion)
.PHONY: go-mod-tidy/main

go-mod-tidy: $(patsubst tools/src/%/go.mod,go-mod-tidy/tools/%,$(wildcard tools/src/*/go.mod))
go-mod-tidy/tools/%: tools/src/%/go.mod
	rm -f tools/src/$*/go.sum
	cd tools/src/$* && go mod tidy -go $(goversion) -compat $(goversion)
.PHONY: go-mod-tidy/tools/%