1
0
mirror of https://github.com/mpolden/echoip synced 2025-04-11 22:55:51 +02:00
echoip/Makefile
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