aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1f75f7608e1210c86a39cc23cd50f4e8b5f51690 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
.PHONY: all test

all:
	go build -o telegabber

test:
	go test -v ./config ./ ./telegram ./xmpp ./xmpp/gateway ./persistence ./telegram/formatter

lint:
	$(GOPATH)/bin/golint ./...