lf/Makefile

13 lines
122 B
Makefile
Raw Normal View History

2016-08-13 12:49:04 +00:00
all: build
build:
CGO_ENABLED=0 go build -ldflags '-s'
install:
mv lf $(GOPATH)/bin
test:
go test
.PHONY: all test