ergo/Makefile

20 lines
338 B
Makefile
Raw Normal View History

.PHONY: all build
2017-06-24 21:41:11 +02:00
all: build
2017-06-24 21:41:11 +02:00
2018-01-07 03:21:44 +01:00
build:
goreleaser --snapshot --rm-dist
buildrelease:
goreleaser --skip-publish --rm-dist
2018-01-07 04:20:05 +01:00
deps:
git submodule update --init
test:
2018-04-23 00:47:10 +02:00
cd irc && go test . && go vet .
cd irc/isupport && go test . && go vet .
cd irc/modes && go test . && go vet .
cd irc/utils && go test . && go vet .
2018-05-04 10:27:43 +02:00
./.check-gofmt.sh