Commit 4339b87a authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #31228 from yuexiao-wang/fix-makefile

Automatic merge from submit-queue Add targets for PHONY in Makefile Add targets for PHONY in Makefile and keep the same style between rules and PHONY Signed-off-by: 's avataryuexiao-wang <wang.yuexiao@zte.com.cn>
parents 98a4a82d 2d17b433
...@@ -35,9 +35,11 @@ docker: ...@@ -35,9 +35,11 @@ docker:
docker build -t clustering-seqdiag . docker build -t clustering-seqdiag .
docker run --rm clustering-seqdiag | tar xvf - docker run --rm clustering-seqdiag | tar xvf -
.PHONY: docker-clean
docker-clean: docker-clean:
docker rmi clustering-seqdiag || true docker rmi clustering-seqdiag || true
docker images -q --filter "dangling=true" | xargs docker rmi docker images -q --filter "dangling=true" | xargs docker rmi
.PHONY: fix-clock-skew
fix-clock-skew: fix-clock-skew:
boot2docker ssh sudo date -u -D "%Y%m%d%H%M.%S" --set "$(shell date -u +%Y%m%d%H%M.%S)" boot2docker ssh sudo date -u -D "%Y%m%d%H%M.%S" --set "$(shell date -u +%Y%m%d%H%M.%S)"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment