DIST := skygear-migrate

.PHONY: build
build:
	go build -o $(DIST)
	chmod +x $(DIST)

.PHONY: clean
clean:
	-rm $(DIST)
