mtfosbot/Makefile

11 lines
254 B
Makefile
Raw Normal View History

.PHONY: clean build
build:
2021-02-22 02:59:31 +00:00
GO111MODULE=off go get -u github.com/go-bindata/go-bindata/...
go-bindata -pkg schema -ignore .git -o module/schema/static.go schema/
2018-12-12 09:00:49 +00:00
GOOS=linux go build -o mtfosbot -ldflags "-s -w" .
clean:
2018-12-12 09:00:49 +00:00
rm -rf mtfosbot && go clean