mtfosbot/Makefile

10 lines
190 B
Makefile
Raw Normal View History

.PHONY: clean build
build:
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