mirror of
https://github.com/mpolden/echoip.git
synced 2024-11-10 15:37:24 +01:00
14 lines
120 B
Makefile
14 lines
120 B
Makefile
NAME = ifconfig
|
|
|
|
all: test build
|
|
|
|
fmt:
|
|
gofmt -w=true *.go
|
|
|
|
build:
|
|
@mkdir bin
|
|
go build -o bin/$(NAME)
|
|
|
|
test:
|
|
go test
|