You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile 155B

12345678910111213
  1. .PHONY: all build
  2. all: build
  3. build:
  4. goreleaser --snapshot --rm-dist
  5. deps:
  6. git submodule update --init
  7. test:
  8. cd irc && go test .
  9. cd irc && go vet .