9 lines
172 B
Makefile
9 lines
172 B
Makefile
|
|
.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
|