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 207B

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