3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00
ergo/Makefile
2018-05-04 04:28:01 -04:00

20 lines
338 B
Makefile

.PHONY: all build
all: build
build:
goreleaser --snapshot --rm-dist
buildrelease:
goreleaser --skip-publish --rm-dist
deps:
git submodule update --init
test:
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 .
./.check-gofmt.sh