echoip/Makefile

16 lines
159 B
Makefile
Raw Normal View History

2012-11-25 14:49:16 +01:00
TARGET = ifconfig
all: install
clean:
rm -f -- $(TARGET)
fmt:
2013-09-08 19:37:41 +02:00
gofmt -tabs=false -tabwidth=4 -w=true *.go
2012-11-25 14:49:16 +01:00
install:
go build $(TARGET).go
2013-09-08 19:37:41 +02:00
test:
go test