mirror of
https://github.com/mpolden/echoip.git
synced 2024-11-10 15:37:24 +01:00
16 lines
124 B
Makefile
16 lines
124 B
Makefile
NAME=ifconfigd
|
|
|
|
all: deps test install
|
|
|
|
deps:
|
|
go get -d -v
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
install:
|
|
go install
|