echoip/Makefile

14 lines
120 B
Makefile
Raw Normal View History

2014-12-22 00:19:29 +01:00
NAME = ifconfig
2012-11-25 14:49:16 +01:00
2014-12-22 00:19:29 +01:00
all: test build
2012-11-25 14:49:16 +01:00
fmt:
2014-11-01 14:36:57 +01:00
gofmt -w=true *.go
2012-11-25 14:49:16 +01:00
2014-12-22 00:19:29 +01:00
build:
@mkdir bin
go build -o bin/$(NAME)
2013-09-08 19:37:41 +02:00
test:
go test