2020-09-22 16:15:18 +02:00
|
|
|
.PHONY: all install build release capdefs test smoke gofmt irctest
|
2017-06-24 21:41:11 +02:00
|
|
|
|
2020-05-21 17:25:30 +02:00
|
|
|
GIT_COMMIT := $(shell git rev-parse HEAD 2> /dev/null)
|
2021-11-03 07:15:46 +01:00
|
|
|
GIT_TAG := $(shell git tag --points-at HEAD 2> /dev/null | head -n 1)
|
2020-05-20 16:31:05 +02:00
|
|
|
|
2022-12-26 08:27:28 +01:00
|
|
|
# disable linking against native libc / libpthread by default;
|
|
|
|
# this can be overridden by passing CGO_ENABLED=1 to make
|
|
|
|
export CGO_ENABLED ?= 0
|
|
|
|
|
2018-06-26 00:08:15 +02:00
|
|
|
capdef_file = ./irc/caps/defs.go
|
|
|
|
|
2023-02-12 03:35:03 +01:00
|
|
|
all: build
|
2017-06-24 21:41:11 +02:00
|
|
|
|
2020-02-12 19:19:23 +01:00
|
|
|
install:
|
2021-11-03 07:15:46 +01:00
|
|
|
go install -v -ldflags "-X main.commit=$(GIT_COMMIT) -X main.version=$(GIT_TAG)"
|
2020-02-10 02:51:23 +01:00
|
|
|
|
2020-02-12 19:19:23 +01:00
|
|
|
build:
|
2021-11-03 07:15:46 +01:00
|
|
|
go build -v -ldflags "-X main.commit=$(GIT_COMMIT) -X main.version=$(GIT_TAG)"
|
2017-07-26 00:04:23 +02:00
|
|
|
|
2020-02-12 19:19:23 +01:00
|
|
|
release:
|
2018-04-11 02:12:28 +02:00
|
|
|
goreleaser --skip-publish --rm-dist
|
|
|
|
|
2018-06-26 00:08:15 +02:00
|
|
|
capdefs:
|
|
|
|
python3 ./gencapdefs.py > ${capdef_file}
|
|
|
|
|
2017-07-26 00:04:23 +02:00
|
|
|
test:
|
2018-06-26 00:08:15 +02:00
|
|
|
python3 ./gencapdefs.py | diff - ${capdef_file}
|
2022-06-16 20:56:28 +02:00
|
|
|
go test ./...
|
|
|
|
go vet ./...
|
2018-05-04 10:27:43 +02:00
|
|
|
./.check-gofmt.sh
|
2020-03-24 14:56:12 +01:00
|
|
|
|
2023-02-12 03:35:03 +01:00
|
|
|
smoke: install
|
2021-05-25 06:34:38 +02:00
|
|
|
ergo mkcerts --conf ./default.yaml || true
|
|
|
|
ergo run --conf ./default.yaml --smoke
|
2020-06-17 08:14:23 +02:00
|
|
|
|
|
|
|
gofmt:
|
|
|
|
./.check-gofmt.sh --fix
|
2020-09-22 16:15:18 +02:00
|
|
|
|
2023-02-12 03:35:03 +01:00
|
|
|
irctest: install
|
2020-09-22 16:15:18 +02:00
|
|
|
git submodule update --init
|
2021-05-26 22:03:32 +02:00
|
|
|
cd irctest && make ergo
|