2019-10-22 19:55:43 +00:00
|
|
|
.PHONY: all test
|
|
|
|
|
2023-01-18 04:42:10 +00:00
|
|
|
COMMIT := $(shell git rev-parse --short HEAD)
|
|
|
|
|
2019-10-22 16:36:54 +00:00
|
|
|
all:
|
2023-01-18 04:42:10 +00:00
|
|
|
go build -ldflags "-X main.commit=${COMMIT}" -o telegabber
|
2019-10-22 19:55:43 +00:00
|
|
|
|
|
|
|
test:
|
2023-06-03 04:20:03 +00:00
|
|
|
go test -v ./config ./ ./telegram ./xmpp ./xmpp/gateway ./persistence ./telegram/formatter ./badger
|
2019-10-29 01:23:57 +00:00
|
|
|
|
|
|
|
lint:
|
|
|
|
$(GOPATH)/bin/golint ./...
|