mirror of
https://dev.narayana.im/narayana/telegabber.git
synced 2026-08-05 20:17:08 +00:00
10 lines
139 B
Makefile
10 lines
139 B
Makefile
.PHONY: all test
|
|
|
|
all:
|
|
go build -o telegabber
|
|
|
|
test:
|
|
go test -v ./config ./ ./telegram ./xmpp/gateway
|
|
|
|
lint:
|
|
$(GOPATH)/bin/golint ./...
|