lf/Makefile
2016-08-13 15:49:04 +03:00

13 lines
122 B
Makefile

all: build
build:
CGO_ENABLED=0 go build -ldflags '-s'
install:
mv lf $(GOPATH)/bin
test:
go test
.PHONY: all test