3
0
mirror of https://github.com/ergochat/ergo.git synced 2025-02-23 00:50:39 +01:00
ergo/Makefile

15 lines
175 B
Makefile
Raw Normal View History

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