telegabber/Makefile

11 lines
181 B
Makefile
Raw Normal View History

.PHONY: all test
2019-10-22 19:36:54 +03:00
all:
go build -o telegabber
test:
go test -v ./config ./ ./telegram ./xmpp ./xmpp/gateway ./persistence ./telegram/formatter
2019-10-29 04:23:57 +03:00
lint:
$(GOPATH)/bin/golint ./...