mirror of
https://github.com/mpolden/echoip.git
synced 2024-11-10 15:37:24 +01:00
16 lines
159 B
Makefile
16 lines
159 B
Makefile
TARGET = ifconfig
|
|
|
|
all: install
|
|
|
|
clean:
|
|
rm -f -- $(TARGET)
|
|
|
|
fmt:
|
|
gofmt -tabs=false -tabwidth=4 -w=true *.go
|
|
|
|
install:
|
|
go build $(TARGET).go
|
|
|
|
test:
|
|
go test
|