summaryrefslogtreecommitdiff
path: root/Makefile
blob: bdce54d86c3d10c7b6a4d553f274a620ba8c0684 (plain)
1
2
3
4
5
6
7
8
9
10
.PHONY: all
all:
	CGO_ENABLED=0 go build -o mfi_homekit main.go

.PHONY: docker
docker:
	cp mfi_homekit docker/mfi_homekit; \
	cd docker; \
	docker build -t docker.crute.me/mfi_homekit:latest .; \
	docker push docker.crute.me/mfi_homekit:latest