BINARY="build/iot_service"
VERSION=1.0.0
BASH_PATH=D:\Programs\Git\bin\bash.exe
export GOARCH=amd64
export GOOS=linux

clear:
	$(RM) ${BINARY}

build:
	@go build -o ${BINARY} ./

push-test:build
	${BASH_PATH} ./push.sh
.PHONY: build push-test