mtfosbot/Makefile

9 lines
172 B
Makefile
Raw Normal View History

.PHONY: clean build
build:
go-bindata -pkg schema -ignore .git -o module/schema/static.go schema/
GOOS=linux go build -o mtfosbot .
clean:
rm -rf mtfosbot && go clean