.PHONY: clean build

build:
	go-bindata -pkg schema -ignore .git -o modules/schema/static.go schema/
	GOOS=linux go build -o mtgbot -ldflags "-s -w" .

clean:
	rm -rf mtgbot && go clean