echoip/Makefile

21 lines
384 B
Makefile
Raw Normal View History

2016-04-15 17:59:56 +02:00
all: deps test vet install
2014-12-22 16:01:23 +01:00
2015-09-17 20:57:27 +02:00
fmt:
go fmt ./...
2013-09-08 19:37:41 +02:00
test:
2015-09-17 20:57:27 +02:00
go test ./...
2014-12-22 16:53:41 +01:00
2016-04-15 17:59:56 +02:00
vet:
go vet ./...
deps:
go get -d -v ./...
2015-09-17 20:57:27 +02:00
install:
go install
2016-04-17 11:28:47 +02:00
get-geoip-dbs:
curl -s http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz | gunzip > GeoLite2-Country.mmdb
2016-04-17 11:28:47 +02:00
curl -s http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz | gunzip > GeoLite2-City.mmdb