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

15 lines
175 B
Makefile
Raw Normal View History

2018-01-07 03:21:44 +01:00
.PHONY: all clean build
2017-06-24 21:41:11 +02:00
2018-01-07 03:21:44 +01:00
all: clean build
2017-06-24 21:41:11 +02:00
clean:
rm -rf $(BUILD)
mkdir -p $(BUILD)
2018-01-07 03:21:44 +01:00
build:
goreleaser --snapshot --rm-dist
test:
cd irc && go test .
2017-10-04 21:34:46 +02:00
cd irc && go vet .