mirror of
https://github.com/mpolden/echoip.git
synced 2024-11-10 15:37:24 +01:00
19 lines
257 B
Makefile
19 lines
257 B
Makefile
NAME=ifconfigd
|
|
|
|
all: deps test install
|
|
|
|
deps:
|
|
go get -d -v
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
install:
|
|
go install
|
|
|
|
get-geoip-db:
|
|
curl -s http://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz | gunzip > GeoLite2-Country.mmdb
|