1
0
Fork 0
forked from External/ergo

fix #782 (bring vendor into the main tree)

This commit is contained in:
Shivaram Lingamneni 2020-02-12 13:19:23 -05:00
parent 702c7b1e7c
commit d0aa7cc860
616 changed files with 359667 additions and 31 deletions

View file

@ -1,24 +1,21 @@
.PHONY: all install build release capdefs deps test
.PHONY: all install build release capdefs test
capdef_file = ./irc/caps/defs.go
all: install
install: deps
install:
go install -v
build: deps
build:
go build -v
release: deps
release:
goreleaser --skip-publish --rm-dist
capdefs:
python3 ./gencapdefs.py > ${capdef_file}
deps:
git submodule update --init
test:
python3 ./gencapdefs.py | diff - ${capdef_file}
cd irc && go test . && go vet .