rCore-Tutorial-v3/Makefile

9 lines
219 B
Makefile
Raw Normal View History

2021-02-25 16:41:42 +04:00
DOCKER_NAME ?= dinghao188/rcore-tutorial
2021-02-25 16:35:56 +04:00
.PHONY: docker build_docker
docker:
docker run --rm -it --mount type=bind,source=$(shell pwd),destination=/mnt ${DOCKER_NAME}
build_docker:
2021-02-25 18:36:46 +04:00
docker build -t ${DOCKER_NAME} .