Files
echoip/Makefile
Martin Polden cd49f9dc52 Add some tests
2013-11-16 22:15:46 +01:00

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