echoip/Makefile
Martin Polden 26f53cea7e Fmt
2014-11-01 14:36:57 +01:00

16 lines
135 B
Makefile

TARGET = ifconfig
all: install
clean:
rm -f -- $(TARGET)
fmt:
gofmt -w=true *.go
install:
go build $(TARGET).go
test:
go test